Home
last modified time | relevance | path

Searched refs:ref (Results 151 – 175 of 377) sorted by relevance

12345678910>>...16

/php-src/ext/dom/tests/
H A DDOMEntityReference_predefined_free.phpt7 $ref = new DOMEntityReference("amp");
8 var_dump($ref);
/php-src/ext/opcache/jit/ir/
H A Dir_private.h885 if (ref == IR_TRUE) { in ir_ref_is_true()
887 } else if (ref == IR_FALSE) { in ir_ref_is_true()
1142 #define IR_LIVE_POS_FROM_REF(ref) ((ref) * IR_SUB_REFS_COUNT) argument
1144 #define IR_START_LIVE_POS_FROM_REF(ref) ((ref) * IR_SUB_REFS_COUNT) argument
1145 #define IR_LOAD_LIVE_POS_FROM_REF(ref) ((ref) * IR_SUB_REFS_COUNT + IR_LOAD_SUB_REF) argument
1146 #define IR_USE_LIVE_POS_FROM_REF(ref) ((ref) * IR_SUB_REFS_COUNT + IR_USE_SUB_REF) argument
1147 #define IR_DEF_LIVE_POS_FROM_REF(ref) ((ref) * IR_SUB_REFS_COUNT + IR_DEF_SUB_REF) argument
1148 #define IR_SAVE_LIVE_POS_FROM_REF(ref) ((ref) * IR_SUB_REFS_COUNT + IR_SAVE_SUB_REF) argument
1149 #define IR_END_LIVE_POS_FROM_REF(ref) ((ref) * IR_SUB_REFS_COUNT + IR_SUB_REFS_COUNT) argument
1317 int8_t *regs = ctx->regs[ref]; in ir_set_alocated_reg()
[all …]
/php-src/ext/reflection/
H A Dphp_reflection.c185 return ref->prop ? ref->prop->flags : ZEND_ACC_PUBLIC; in prop_get_flags()
2574 ref->fptr = fptr; in ZEND_METHOD()
2576 intern->ptr = ref; in ZEND_METHOD()
4055 ref->attributes, 0, ref->ce, ZEND_ATTRIBUTE_TARGET_CLASS_CONST, in ZEND_METHOD()
4073 zend_constant *ref; in ZEND_METHOD() local
5628 _property_string(&str, ref->prop, ZSTR_VAL(ref->unmangled_name), ""); in ZEND_METHOD()
5879 ce = ref->prop ? ref->prop->ce : intern->ce; in ZEND_METHOD()
5894 if (ref->prop && ref->prop->doc_comment) { in ZEND_METHOD()
5942 if (!ref->prop || !ZEND_TYPE_IS_SET(ref->prop->type)) { in ZEND_METHOD()
5962 RETVAL_BOOL(ref->prop && ZEND_TYPE_IS_SET(ref->prop->type)); in ZEND_METHOD()
[all …]
/php-src/ext/spl/tests/
H A Dfixedarray_002.phpt56 $ref = "value4";
57 $ref2 =&$ref;
58 $a[4] = $ref;
59 $ref = "value5";
H A Ddit_002.phpt17 $ref = new ReflectionClass($class);
18 $obj = $ref->newInstance('glob://*');
/php-src/ext/soap/
H A Dphp_schema.c1084 if (ref) { in schema_group()
1521 if (ref) { in schema_element()
1754 if (ref) { in schema_attribute()
1994 } else if (ref) { in schema_attributeGroup()
2080 if ((tmp = zend_hash_str_find_ptr(ht, ref, strlen(ref))) != NULL) { in schema_find_by_ref()
2083 ref = strrchr(ref, ':'); in schema_find_by_ref()
2084 if (ref) { in schema_find_by_ref()
2136 efree(attr->ref); in schema_attribute_fixup()
2524 if (attr->ref) { in delete_attribute()
2550 if (attr->ref) { in delete_attribute_persistent()
[all …]
/php-src/Zend/tests/readonly_props/
H A Dcache_slot.phpt22 $ref =& $this->prop3;
23 $ref = new stdClass;
81 $ref =& $this->prop3;
82 $ref = new stdClass;
H A Dreadonly_modification.phpt17 function byRef(&$ref) {}
42 $ref =& $test->prop;
47 $test->prop =& $ref;
/php-src/ext/standard/tests/serialize/
H A Dserialization_arrays_004.phpt27 echo "\n\n--- 1,2 ref container:\n";
34 echo "\n\n--- 1,2,3 ref container:\n";
95 --- 1,2 ref container:
153 --- 1,2,3 ref container:
H A Dserialization_arrays_003.phpt44 echo "\n\n--- 1,2 ref external:\n";
52 echo "\n\n--- 1,2,3 ref external:\n";
195 --- 1,2 ref external:
239 --- 1,2,3 ref external:
/php-src/tests/lang/
H A DforeachLoop.009.phpt10 $ref=&$refedArray;
18 $ref=&$refedArray;
26 $ref=&$refedArray;
40 $ref=&$refedArray;
H A DpassByReference_003.phpt10 function passbyRef(&$ref) {
12 var_dump($ref);
/php-src/ext/soap/tests/
H A Dbug71996.phpt15 $ref = array("foo");
16 $data = array(&$ref);
19 $ref = array("def" => "foo");
20 $data = array("abc" => &$ref);
/php-src/sapi/phpdbg/
H A Dphpdbg_watch.c352 watch->ref = NULL;
430 if (watch->ref != NULL) {
438 coll->ref.type = WATCH_ON_REFCOUNTED;
440 coll->ref.coll = coll;
443 phpdbg_watch_backup_data(&coll->ref);
473 if (watch->ref != NULL) {
482 coll->ref.coll = coll;
483 phpdbg_update_watch_ref(&coll->ref);
486 phpdbg_watch_backup_data(&coll->ref);
492 } else if (watch->ref) {
[all …]
/php-src/ext/reflection/tests/
H A Dbug81611.phpt23 $ref = new \ReflectionClass(Foo::class);
26 $params = $ref->getMethod($method)->getParameters();
/php-src/Zend/tests/named_params/
H A Dvariadic.phpt15 foreach ($refs as &$ref) $ref++;
/php-src/Zend/tests/arg_unpack/
H A Dtraversable_with_by_ref_parameters.phpt6 function test($val1, $val2, $val3, &$ref) {
7 $ref = 42;
/php-src/ext/soap/tests/schema/
H A Dschema073.phpt2 SOAP XML Schema 73: SOAP 1.1 Array (document style, element with type ref)
14 <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="int[]"/>
H A Dschema058.phpt13 <attribute ref="enc12:itemType" wsdl:itemType="int"/>
14 <attribute ref="enc12:arraySize" wsdl:arraySize="*"/>
H A Dschema060.phpt13 <attribute ref="enc12:itemType" wsdl:itemType="int"/>
14 <attribute ref="enc12:arraySize" wsdl:arraySize="* 1"/>
/php-src/Zend/tests/arrow_functions/
H A D006.phpt9 $ref =& $id($var);
10 $ref++;
/php-src/ext/soap/tests/soap12/
H A Dsoap12-test.inc111 function echoResolvedRef($ref) {
112 return $ref->RelativeReference->base.$ref->RelativeReference->href;
/php-src/ext/ldap/tests/
H A Dldap_count_references_basic.phpt15 "ref" => "cn=userA,$base",
20 "ref" => "cn=userB,$base",
/php-src/ext/intl/tests/
H A Dresourcebundle_arrayaccess.phpt28 $ref = &$offset;
29 var_dump($r[$ref]);
/php-src/Zend/tests/list/
H A Dlist_reference_008.phpt31 $ref =& $a;
35 var_dump($ref);

Completed in 72 milliseconds

12345678910>>...16