Home
last modified time | relevance | path

Searched refs:obj (Results 151 – 175 of 502) sorted by relevance

12345678910>>...21

/PHP-7.4/Zend/tests/
H A Dlist_destructuring_to_special_variables.phpt27 $obj = new Obj;
28 list($obj->foo, $obj->bar) = ['foo', 'bar'];
29 var_dump($obj->values);
H A Dbug38220.phpt6 public $obj;
9 echo "func1(): {$this->obj->i}\n";
13 echo "close(): {$this->obj->i}\n";
28 $drv->obj = $this;
36 // $drv->obj = null;
H A Dbug69989_3.phpt10 $obj = new stdClass;
11 $obj->gen = gen1($obj);
H A Dbug70262.phpt13 $obj = new Stdclass;
14 $obj->arr = $array; // make the refcount == 3;
15 return $obj;
H A Dbug65969.phpt5 $obj = new stdClass;
6 list($a,$b) = $obj->prop = [1,2];
H A Dbug68163.phpt6 $obj = (object) ['foo' => 'bar'];
9 var_dump($obj->$foo);
H A Dbug39825.phpt6 $obj = (object)$array;
7 foreach ($obj as $name => $value) {
/PHP-7.4/ext/reflection/tests/
H A DReflectionClass_getModifierNames_basic.phpt33 $obj = new ReflectionClass($class);
34 var_dump($obj->getName(), Reflection::getModifierNames($obj->getModifiers()));
38 $obj = new ReflectionClass($class);
39 foreach($obj->getMethods() as $method) {
40 …var_dump($obj->getName() . "::" . $method->getName(), Reflection::getModifierNames($method->getMod…
H A Dbug64239.phpt16 $obj = new ReflectionClass("B");
17 print_r($obj->getMethods());
18 print_r(($method = $obj->getMethod("Bmethod")));
H A DReflectionExtension_isPersistant.phpt5 $obj = new ReflectionExtension('reflection');
6 var_dump($obj->isPersistent());
H A DReflectionExtension_isTemporary.phpt5 $obj = new ReflectionExtension('reflection');
6 var_dump($obj->isTemporary());
/PHP-7.4/Zend/
H A Dzend_interfaces.h42 #define zend_call_method_with_0_params(obj, obj_ce, fn_proxy, function_name, retval) \ argument
43 …zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 0, NULL, N…
45 #define zend_call_method_with_1_params(obj, obj_ce, fn_proxy, function_name, retval, arg1) \ argument
46 …zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 1, arg1, N…
48 #define zend_call_method_with_2_params(obj, obj_ce, fn_proxy, function_name, retval, arg1, arg2) \ argument
49 …zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 2, arg1, a…
H A Dzend_closures.h37 ZEND_API zend_function *zend_get_closure_invoke_method(zend_object *obj);
38 ZEND_API const zend_function *zend_get_closure_method_def(zval *obj);
39 ZEND_API zval* zend_get_closure_this_ptr(zval *obj);
H A Dzend_gc.c397 obj->ce->name->val, obj->handle); in gc_trace_ref()
707 ZVAL_OBJ(&tmp, obj); in gc_scan_black()
827 ZVAL_OBJ(&tmp, obj); in gc_mark_grey()
1536 GC_ADDREF(obj); in zend_gc_collect_cycles()
1537 obj->handlers->dtor_obj(obj); in zend_gc_collect_cycles()
1538 GC_DELREF(obj); in zend_gc_collect_cycles()
1561 EG(objects_store).object_buckets[obj->handle] = SET_OBJ_INVALID(obj); in zend_gc_collect_cycles()
1565 current->ref = GC_MAKE_GARBAGE(((char*)obj) - obj->handlers->offset); in zend_gc_collect_cycles()
1568 GC_ADDREF(obj); in zend_gc_collect_cycles()
1569 obj->handlers->free_obj(obj); in zend_gc_collect_cycles()
[all …]
/PHP-7.4/ext/xml/tests/
H A Dxml002.phpt52 $obj = new myclass;
54 xml_set_element_handler($xml_parser, array($obj,"startElement"),
55 array($obj, "endElement"));
56 xml_set_character_data_handler($xml_parser, array($obj, "characterData"));
57 xml_set_processing_instruction_handler($xml_parser, array($obj, "PIHandler"));
58 xml_set_default_handler($xml_parser, array($obj, "defaultHandler"));
60 array($obj, "externalEntityRefHandler"));
/PHP-7.4/ext/dom/
H A Ddocument.c461 if (obj->document) { in dom_document_strict_error_checking_read()
473 if (obj->document) { in dom_document_strict_error_checking_write()
488 if (obj->document) { in dom_document_format_output_read()
499 if (obj->document) { in dom_document_format_output_write()
513 if (obj->document) { in dom_document_validate_on_parse_read()
524 if (obj->document) { in dom_document_validate_on_parse_write()
538 if (obj->document) { in dom_document_resolve_externals_read()
549 if (obj->document) { in dom_document_resolve_externals_write()
563 if (obj->document) { in dom_document_preserve_whitespace_read()
574 if (obj->document) { in dom_document_preserve_whitespace_write()
[all …]
H A Dtypeinfo.c47 int dom_typeinfo_type_name_read(dom_object *obj, zval *retval) in dom_typeinfo_type_name_read() argument
60 int dom_typeinfo_type_namespace_read(dom_object *obj, zval *retval) in dom_typeinfo_type_namespace_read() argument
/PHP-7.4/Zend/tests/generators/
H A Dnested_method_calls.phpt18 function gen($obj) {
19 $obj->foo($obj->foo(yield));
/PHP-7.4/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h62 #define CDNO_FETCH_VERIFY(obj, zv) do { \ argument
67 obj = (php_com_dotnet_object*)Z_OBJ_P(zv); \
78 void php_com_object_enable_event_sink(php_com_dotnet_object *obj, int enable);
102 HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member,
104 HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, char *name,
106 int php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid,
108 int php_com_do_invoke(php_com_dotnet_object *obj, char *name, size_t namelen,
110 int php_com_do_invoke_byref(php_com_dotnet_object *obj, zend_internal_function *f,
175 ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, i…
/PHP-7.4/tests/classes/
H A Dclass_stdclass.phpt6 $obj = new stdClass;
8 echo get_class($obj)."\n";
/PHP-7.4/ext/session/tests/
H A Dbug71972.phpt20 $_SESSION['obj'.$num] = new stdClass();
21 $_SESSION['obj'.$num]->test = new stdClass();//NOTE: No bug if try commenting out this too.
22 $_SESSION['obj'.$num]->obj1 = $_SESSION['obj1'];
/PHP-7.4/ext/spl/tests/
H A DSplFileObject_fpassthru_basic.phpt5 $obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
6 $obj->fpassthru();
H A DSplFileObject_getCsvControl_basic_001.phpt5 $obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
6 var_dump($obj->getCsvControl());
H A DSplFileObject_fscanf_basic.phpt5 $obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
6 var_dump($obj->fscanf('%s'));
/PHP-7.4/Zend/tests/object_types/
H A Dtype_hint_reflection.phpt7 public function a(object $obj);
11 public function a(object $obj) {}
14 function a(object $obj) {}

Completed in 40 milliseconds

12345678910>>...21