Home
last modified time | relevance | path

Searched refs:obj (Results 176 – 200 of 614) sorted by last modified time

12345678910>>...25

/php-src/ext/pdo/tests/
H A Dbug_52098.phpt49 $obj = new MyStatement;
50 echo $obj->lucky();
/php-src/ext/xmlwriter/
H A Dphp_xmlwriter.c38 ze_xmlwriter_object *obj = Z_XMLWRITER_P(object); \
39 ptr = obj->ptr; \
/php-src/ext/opcache/jit/
H A DMakefile.frag.w3217 $(BUILD_DIR)\ext\opcache\jit\ir\ir_ra.obj: \
22 $(BUILD_DIR)\ext\opcache\jit\ir\ir_emit.obj: \
28 $(BUILD_DIR)\ext\opcache\jit\ir\ir.obj: \
34 $(BUILD_DIR)\ext\opcache\jit\zend_jit.obj: \
/php-src/ext/xml/tests/
H A Dset_handler_errors.phpt11 $obj = new stdClass();
13 xml_set_processing_instruction_handler($obj, null);
43 xml_set_object($parser, $obj);
H A Dxml_set_element_handler_errors.phpt12 $obj = new stdClass();
14 xml_set_element_handler($obj, null, null);
62 xml_set_object($parser, $obj);
69 xml_set_object($parser, $obj);
/php-src/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt77 /* creating new object $obj */
78 $obj = new contains_object_class();
79 $obj1 = & $obj; //object $obj1 references object $obj
80 $obj2 = & $obj;
90 $obj,
91 $obj->class_object1,
92 $obj->class_object2,
93 $obj->no_member_class_object,
104 $obj = $int_var; //$obj is lost, $obj1,$obj2,$obj3,$obj4 = 500
351 ["obj"]=>
[all …]
/php-src/ext/intl/tests/
H A Dbug62915-2.phpt28 $obj = $rc->newInstanceArgs($subclass::$ARGS);
29 $clone = clone $obj;
/php-src/Zend/tests/
H A Dbug65969.phpt5 $obj = new stdClass;
6 list($a,$b) = $obj->prop = [1,2];
H A Darginfo_zpp_mismatch.phpt70 $obj = $rc->newInstanceWithoutConstructor();
76 test([$obj, $method]);
H A Darginfo_zpp_mismatch_strict.phpt72 $obj = $rc->newInstanceWithoutConstructor();
78 test([$obj, $method]);
H A Dgh11244-004.phpt6 $obj = (object)[1,2,3];
8 foreach ($obj as $p => $v) {
10 $clone = clone $obj;
11 $ref = &$obj->$p;
/php-src/Zend/tests/weakrefs/
H A Dgh10043-001.phpt12 $obj = new Value('a');
13 $map[$obj] = $obj;
19 $obj = null;
H A Dgh10043-002.phpt12 $obj = new Value('a');
13 $map[$obj] = [$obj];
19 $obj = null;
H A Dgh10043-003.phpt12 $obj = new Value('a');
13 $map[$obj] = [$obj, $map];
22 // $obj is first in the root buffer
23 $obj = null;
H A Dgh10043-004.phpt12 $obj = new Value('a');
13 $map[$obj] = [$map, $obj];
24 $obj = null;
H A Dgh10043-005.phpt12 $obj = new Value('a');
13 $value = [$obj];
14 $map[$obj] = $value;
15 $obj = null;
H A Dgh10043-006.phpt12 $obj = new Value('a');
13 $map[$obj] = $obj;
17 $obj2 = $obj;
18 $obj = null;
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます8135 # executable (RISC System/6000 V3.1) or obj module (./ibm6000)
8154 !:ext o/obj/lib
8156 #!:ext cof/o/obj/lib
18103 0 beshort 0x01df executable (RISC System/6000 V3.1) or obj module
18106 #0 beshort 0x0103 executable (RT Version 2) or obj module
32887 >>4096 string >0 \b, obj.layout: '%s'
32888 >>4096 string <0 \b, obj.layout: NULL
40762 !:ext obj/o/a
H A Dmagic8135 # executable (RISC System/6000 V3.1) or obj module (./ibm6000)
8154 !:ext o/obj/lib
8156 #!:ext cof/o/obj/lib
18103 0 beshort 0x01df executable (RISC System/6000 V3.1) or obj module
18106 #0 beshort 0x0103 executable (RT Version 2) or obj module
32887 >>4096 string >0 \b, obj.layout: '%s'
32888 >>4096 string <0 \b, obj.layout: NULL
40762 !:ext obj/o/a
/php-src/Zend/
H A Dzend_objects_API.h45 #define OBJ_RELEASE(obj) zend_object_release(obj) argument
69 GC_ADD_FLAGS(obj, IS_OBJ_DESTRUCTOR_CALLED); in zend_object_store_ctor_failed()
76 if (GC_DELREF(obj) == 0) { in END_EXTERN_C()
77 zend_objects_store_del(obj); in END_EXTERN_C()
78 } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) { in END_EXTERN_C()
79 gc_possible_root((zend_refcounted*)obj); in END_EXTERN_C()
94 void *obj = emalloc(obj_size + zend_object_properties_size(ce)); in zend_object_alloc() local
95 memset(obj, 0, obj_size - sizeof(zend_object)); in zend_object_alloc()
96 return obj; in zend_object_alloc()
101 zend_property_info **table = obj->ce->properties_info_table; in zend_get_property_info_for_slot()
[all …]
H A Dzend_object_handlers.h155 typedef zend_result (*zend_object_get_closure_t)(zend_object *obj, zend_class_entry **ce_ptr, zend_…
227 ZEND_API zend_result zend_std_get_closure(zend_object *obj, zend_class_entry **ce_ptr, zend_functio…
250 ZEND_API HashTable *zend_std_get_properties_for(zend_object *obj, zend_prop_purpose purpose);
254 ZEND_API HashTable *zend_get_properties_for(zval *obj, zend_prop_purpose purpose);
/php-src/ext/json/
H A Djson_encoder.c126 zend_object *obj = Z_OBJ_P(val); in php_json_encode_array() local
127 zend_class_entry *ce = obj->ce; in php_json_encode_array()
132 if (GC_IS_RECURSIVE(obj)) { in php_json_encode_array()
138 PHP_JSON_HASH_PROTECT_RECURSION(obj); in php_json_encode_array()
153 prop = OBJ_PROP(obj, prop_info->offset); in php_json_encode_array()
180 PHP_JSON_HASH_UNPROTECT_RECURSION(obj); in php_json_encode_array()
185 PHP_JSON_HASH_UNPROTECT_RECURSION(obj); in php_json_encode_array()
534 zend_object *obj = Z_OBJ_P(val); in php_json_encode_serializable_object() local
535 uint32_t *guard = zend_get_recursion_guard(obj); in php_json_encode_serializable_object()
/php-src/ext/zend_test/tests/
H A Dinternal_dnf_arguments.phpt21 $obj = new \ArrayIterator([]);
22 $result = zend_test_internal_dnf_arguments($obj);
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_095.phpt11 $obj = new _ZendTestClass;
12 var_dump($obj->intProp);
14 $obj->intProp = "foobar";
18 $obj->intProp = 456;
21 $obj->classProp = $obj;
26 var_dump($obj);
33 $obj = new Test;
34 var_dump($obj->intProp);
40 $obj->intProp = 456;
43 $obj->classProp = $obj;
[all …]
/php-src/ext/spl/tests/
H A Dbug81992b.phpt8 private SplFixedArray $obj,
13 $this->obj->setSize($this->desiredSize);
14 echo "Destroyed, size is now still ", $this->obj->getSize(), "\n";
27 $obj = new SplFixedArray(5);
28 $obj[0] = str_repeat("A", 10);
29 $obj[1] = new DestructorLogger(1);
30 $obj[2] = str_repeat('B', 10);
31 $obj[3] = new InvalidDestructor($desiredSize, $obj);
32 $obj[4] = new DestructorLogger(4);
33 $obj->setSize(2);
[all …]

Completed in 232 milliseconds

12345678910>>...25