Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 6944) sorted by last modified time

12345678910>>...278

/php-src/ext/phar/tests/
H A Dphar_buildfromiterator5.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return is_object(current($this->a));
35 reset($this->a);
41 var_dump($phar->buildFromIterator(new myIterator(array('a' => new stdClass))));
52 Iterator myIterator returned an invalid value (must return a string, a stream, or an SplFileInfo ob…
/php-src/ext/phar/tests/tar/
H A Dphar_buildfromiterator5.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return (bool) current($this->a);
35 reset($this->a);
41 var_dump($phar->buildFromIterator(new myIterator(array('a' => new stdClass))));
52 Iterator myIterator returned an invalid value (must return a string, a stream, or an SplFileInfo ob…
/php-src/ext/phar/tests/zip/
H A Dphar_buildfromiterator5.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return is_object(current($this->a));
35 reset($this->a);
41 var_dump($phar->buildFromIterator(new myIterator(array('a' => new stdClass))));
52 Iterator myIterator returned an invalid value (must return a string, a stream, or an SplFileInfo ob…
/php-src/ext/soap/
H A Dphp_sdl.c326 #define SAFE_STR(a) ((a)?((const char *)a):"") argument
/php-src/
H A DUPGRADING26 if the last path component contained a period. In that case, a 404 error was
38 . Some DOM methods previously returned false or a PHP_ERR DOMException if a new
92 As a consequence, this means {,3} is now recognized as a quantifier instead
95 for a full changelog.
129 . Get methods called, or casting to a string on a SimpleXMLElement will no
131 For example, casting an element to a string within a foreach loop would
139 . SoapClient::$httpurl is now a Soap\Url object rather than a resource.
142 . SoapClient::$sdl is now a Soap\Sdl object rather than a resource.
178 a TypeError instead of a ValueError.
284 to resolve a type with a specific namespace to a specific class.
[all …]
H A DEXTENSIONS7 Odd Fixes: It has a maintainer but they don't have time to do
12 it has been replaced by a better system and you
H A DNEWS85 . resourcebundle_get(), ResourceBundle::get(), and accessing offsets on a
89 - ValueError if the integer index does not fit in a signed 32 bit integer
90 . ResourceBundle::get() now has a tentative return type of:
108 . Fixed bug GH-10599 (Apache crash on Windows when using a self-referencing
109 anonymous function inside a class with an active mysqli connection).
114 . If JIT is enabled, PHP will now exit with a fatal error on startup in case
206 . Fixed bug GH-12208 (SimpleXML infinite loop when a cast is used inside a
227 . Mitigate #51561 (SoapServer with a extented class and using sessions,
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc2373 …/* l = LOAD(_, a) ... v = BINOP(l, _) ... STORE(l, a, v) => SKIP ... SKIP_MEM_BINOP ... MEM_BINOP …
2386 …/* l = LOAD(_, a) ... v = BINOP(_, l) ... STORE(l, a, v) => SKIP ... SKIP_MEM_BINOP ... MEM_BINOP …
2397 /* l = LOAD(_, a) ... v = INC(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_INC */
2407 /* l = LOAD(_, a) ... v = DEC(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_DEC */
2417 /* l = LOAD(_, a) ... v = MUL_PWR2(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_MUL_PWR2 */
2427 /* l = LOAD(_, a) ... v = DIV_PWR2(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_DIV_PWR2 */
2437 /* l = LOAD(_, a) ... v = MOD_PWR2(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_MOD_PWR2 */
2447 … /* l = LOAD(_, a) ... v = SHIFT(l, _) ... STORE(l, a, v) => SKIP ... SKIP_SHIFT ... MEM_SHIFT */
2457 …/* l = LOAD(_, a) ... v = SHIFT(l, CONST) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_SHIFT_CONST …
2467 /* l = LOAD(_, a) ... v = OP(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_OP */
[all …]
H A Dir_private.h62 #define IR_MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
63 #define IR_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
658 a->size = size; in ir_array_init()
664 a->refs = NULL; in ir_array_free()
665 a->size = 0; in ir_array_free()
670 return a->size; in ir_array_size()
675 return (i < a->size) ? a->refs[i] : IR_UNUSED; in ir_array_get()
681 return a->refs[i]; in ir_array_at()
689 a->refs[i] = val; in ir_array_set()
695 a->refs[i] = val; in ir_array_set_unchecked()
[all …]
H A Dir_ra.c963 if (live_lists->len >= live_lists->a.size) { in ir_live_out_push()
964 ir_array_grow(&live_lists->a, live_lists->a.size + 1024); in ir_live_out_push()
1064 if (live_lists->len >= live_lists->a.size) { in ir_compute_live_sets()
1065 ir_array_grow(&live_lists->a, live_lists->a.size + 1024); in ir_compute_live_sets()
2178 ir_ref a, b, c; in ir_gen_dessa_moves() local
2181 a = pred[b]; in ir_gen_dessa_moves()
2182 c = loc[a]; in ir_gen_dessa_moves()
2185 loc[a] = b; in ir_gen_dessa_moves()
2187 if (a == c && pred[a]) { in ir_gen_dessa_moves()
2188 ir_bitset_incl(ready, a); in ir_gen_dessa_moves()
H A Dir_sccp.c28 IR_ALWAYS_INLINE ir_ref ir_sccp_identity(ir_insn *_values, ir_ref a) in ir_sccp_identity() argument
30 if (a > 0 && _values[a].op == IR_COPY) { in ir_sccp_identity()
31 a = _values[a].op1; in ir_sccp_identity()
32 IR_ASSERT(a < 0 || _values[a].op != IR_COPY); /* this may be a copy of symbolic constant */ in ir_sccp_identity()
34 return a; in ir_sccp_identity()
307 static bool ir_sccp_is_true(ir_ctx *ctx, ir_insn *_values, ir_ref a) in ir_sccp_is_true() argument
309 ir_insn *v = IR_IS_CONST_REF(a) ? &ctx->ir_base[a] : &_values[a]; in ir_sccp_is_true()
314 static bool ir_sccp_is_equal(ir_ctx *ctx, ir_insn *_values, ir_ref a, ir_ref b) in ir_sccp_is_equal() argument
316 ir_insn *v1 = IR_IS_CONST_REF(a) ? &ctx->ir_base[a] : &_values[a]; in ir_sccp_is_equal()
H A Dir_aarch64.dasc3986 /* op3 is used as a flag that the value is already stored in memory.
4495 /* Generate a table jmp or a sequence of calls */
/php-src/Zend/tests/
H A Dgh14009_001.phpt34 $a = new A();
35 $a->test(new B());
36 $a->test(new C());
H A Dinterface_constructor_prototype_002.phpt5 uses prototype to verify LSP, but misses A::__construct() which has a stricter
/php-src/ext/standard/
H A Dimage.c177 if (php_stream_read(stream, (char *) a, sizeof(a)) != sizeof(a)) { in php_handle_swc()
183 if (uncompress(b, &len, a, sizeof(a)) != Z_OK) { in php_handle_swc()
251 if (php_stream_read(stream, (char*)a, sizeof(a)) != sizeof(a)) in php_handle_swf()
337 unsigned char a[2]; in php_read2() local
340 if((php_stream_read(stream, (char *) a, sizeof(a))) < sizeof(a)) return 0; in php_read2()
342 return (((unsigned short)a[0]) << 8) + ((unsigned short)a[1]); in php_read2()
350 int a=0, marker; in php_next_marker() local
366 a = 1; in php_next_marker()
372 a++; in php_next_marker()
374 if (a < 2) in php_next_marker()
[all …]
H A Darray.c95 if (Z_EXTRA(a->val) > Z_EXTRA(b->val)) { in stable_sort_fallback()
118 RETURN_STABLE_SORT(a, b, php_array_##name##_unstable_i(a, b)); \
124 RETURN_STABLE_SORT(a, b, php_array_reverse_##name##_unstable(a, b)); \
249 RETURN_STABLE_SORT(a, b, php_array_key_compare_string_natural_general(a, b, 1)); in php_array_key_compare_string_natural_case()
255 RETURN_STABLE_SORT(a, b, php_array_key_compare_string_natural_general(b, a, 1)); in php_array_reverse_key_compare_string_natural_case()
261 RETURN_STABLE_SORT(a, b, php_array_key_compare_string_natural_general(a, b, 0)); in php_array_key_compare_string_natural()
267 RETURN_STABLE_SORT(a, b, php_array_key_compare_string_natural_general(b, a, 0)); in php_array_reverse_key_compare_string_natural()
867 RETURN_STABLE_SORT(a, b, php_array_user_compare_unstable(a, b)); in php_array_user_compare()
1002 RETURN_STABLE_SORT(a, b, php_array_user_key_compare_unstable(a, b)); in php_array_user_key_compare()
5044 ZVAL_COPY_VALUE(&args[0], a);
[all …]
/php-src/ext/soap/tests/bugs/
H A Dbug73237.phpt2 Bug #73237 "Any" data missing when result includes a struct
H A Dsegfault_assertion_props.phpt15 <a xsi:type="xsd:string">Hello</a>
24 public $a = [self::class . 'a'];
37 ["a"]=>
H A Dbug51561.phpt2 Bug #51561 (SoapServer with a extended class and using sessions, lost the setPersistence())
19 …// Necessary such that it works from a development directory in which case extension_dir might not…
/php-src/ext/soap/tests/
H A Dclassmap002.phpt15 <a xsi:type="xsd:string">Blaat</a>
24 public $a="a";
41 ["a"]=>
H A Dclassmap005.phpt15 <a xsi:type="xsd:string">Blaat</a>
24 public $a="a";
29 public $a="a";
45 ["a"]=>
/php-src/.github/
H A DCODEOWNERS2 # or interested parties over a particular area of the php-src source code.
3 # While requesting a review from someone does not obligate that person to
4 # review a pull request, these reviewers might have valuable knowledge of
5 # the problem area and could aid in deciding whether a pull request is ready
/php-src/ext/spl/tests/
H A DSplObjectStorage_seek.phpt10 $a = new Test("a");
17 $storage[$a] = 1;
90 string(1) "a"
111 string(1) "a"
127 string(1) "a"
/php-src/ext/simplexml/tests/
H A DgetDocNamespaces_no_internal_declaration.phpt12 <a/>
14 <c xmlns:a="urn:a" xmlns="urn:c"/>
36 string(5) "urn:a"
37 ["a"]=>
38 string(5) "urn:a"
44 string(5) "urn:a"
45 ["a"]=>
46 string(5) "urn:a"
52 string(5) "urn:a"
53 ["a"]=>
[all …]
/php-src/ext/bcmath/libbcmath/src/
H A Dbcmath.h74 #define MAX(a, b) ((a)>(b)?(a):(b)) argument
75 #define MIN(a, b) ((a)>(b)?(b):(a)) argument

Completed in 130 milliseconds

12345678910>>...278