Home
last modified time | relevance | path

Searched refs:obj (Results 126 – 150 of 474) sorted by relevance

12345678910>>...19

/PHP-7.0/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h66 #define CDNO_FETCH_VERIFY(obj, zv) do { \ argument
71 obj = (php_com_dotnet_object*)Z_OBJ_P(zv); \
83 void php_com_object_enable_event_sink(php_com_dotnet_object *obj, int enable);
105 HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member,
107 HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, char *name,
109 int php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid,
111 int php_com_do_invoke(php_com_dotnet_object *obj, char *name, size_t namelen,
113 int php_com_do_invoke_byref(php_com_dotnet_object *obj, zend_internal_function *f,
178 ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, i…
/PHP-7.0/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.0/Zend/
H A Dzend_interfaces.h43 #define zend_call_method_with_0_params(obj, obj_ce, fn_proxy, function_name, retval) \ argument
44 …zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 0, NULL, N…
46 #define zend_call_method_with_1_params(obj, obj_ce, fn_proxy, function_name, retval, arg1) \ argument
47 …zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 1, arg1, N…
49 #define zend_call_method_with_2_params(obj, obj_ce, fn_proxy, function_name, retval, arg1, arg2) \ argument
50 …zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 2, arg1, a…
/PHP-7.0/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.0/ext/spl/tests/
H A Dbug62672.phpt27 $obj = new ObjB(new ArrayObject());
29 var_dump($obj == unserialize(serialize($obj)));
H A Diterator_068.phpt24 $obj = new TestIteratorIterator(new Test);
25 $obj->foo();
26 unset($obj);
/PHP-7.0/ext/standard/tests/strings/
H A Dbug26817.phpt20 $obj = new test();
21 $obj->foo();
22 var_dump(http_build_query($obj));
/PHP-7.0/Zend/tests/
H A Dbug67938.phpt20 $obj = new Test;
21 $obj->foo();
22 $obj->bar([]);
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 Dlist_destructuring_to_special_variables.phpt27 $obj = new Obj;
28 list($obj->foo, $obj->bar) = ['foo', 'bar'];
29 var_dump($obj->values);
H A Dclass_constant_to_reference_cached.phpt17 $obj = new Test;
18 $obj->readConst();
19 unset($obj);
/PHP-7.0/Zend/tests/traits/
H A Dbug64070.phpt30 $obj = new first_class();
31 $obj->first_function();
32 $obj->second_function();
/PHP-7.0/tests/classes/
H A Dfactory_and_singleton_007.phpt13 $obj = new test;
14 $clone = clone $obj;
15 $obj = NULL;
H A Dfactory_and_singleton_008.phpt13 $obj = new test;
14 $clone = clone $obj;
15 $obj = NULL;
H A Dclone_003.phpt28 $obj = new test;
29 $obj->p4 = 'A';
30 $copy = clone $obj;
32 print_r($obj);
H A Diterators_004.phpt12 $obj = new c1();
14 foreach($obj as $w) {
48 $obj = new c2();
50 foreach($obj as $v => $w) {
H A Dprivate_007b.phpt22 $obj = new Foo();
23 $obj->pub();
24 $obj->priv();
H A Dclass_stdclass.phpt6 $obj = new stdClass;
8 echo get_class($obj)."\n";
/PHP-7.0/ext/standard/tests/general_functions/
H A Dvar_export_error2.phpt11 @$obj->p =& $obj;
12 var_export($obj, true);
/PHP-7.0/Zend/tests/generators/
H A Dnested_method_calls.phpt18 function gen($obj) {
19 $obj->foo($obj->foo(yield));
/PHP-7.0/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.0/ext/dom/
H A Dnode.c206 nodep = dom_object_get_node(obj); in dom_node_node_name_read()
288 xmlNode *nodep = dom_object_get_node(obj); in dom_node_node_value_read()
327 xmlNode *nodep = dom_object_get_node(obj); in dom_node_node_value_write()
371 nodep = dom_object_get_node(obj); in dom_node_node_type_read()
399 nodep = dom_object_get_node(obj); in dom_node_parent_node_read()
455 nodep = dom_object_get_node(obj); in dom_node_first_child_read()
486 nodep = dom_object_get_node(obj); in dom_node_last_child_read()
502 php_dom_create_object(last, retval, obj); in dom_node_last_child_read()
517 nodep = dom_object_get_node(obj); in dom_node_previous_sibling_read()
545 nodep = dom_object_get_node(obj); in dom_node_next_sibling_read()
[all …]

Completed in 25 milliseconds

12345678910>>...19