Home
last modified time | relevance | path

Searched refs:obj (Results 101 – 125 of 390) sorted by relevance

12345678910>>...16

/PHP-5.5/ext/dom/
H A Dxml_common.h56 PHP_DOM_EXPORT dom_object *php_dom_object_get_data(xmlNodePtr obj);
57 PHP_DOM_EXPORT zval *php_dom_create_object(xmlNodePtr obj, int *found, zval* return_value, dom_obje…
58 PHP_DOM_EXPORT xmlNodePtr dom_object_get_node(dom_object *obj);
81 #define DOM_RET_OBJ(obj, ret, domobject) \ argument
82 if (!php_dom_create_object(obj, ret, return_value, domobject TSRMLS_CC)) { \
H A Ddocument.c533 if (obj->document) { in dom_document_strict_error_checking_read()
554 if (obj->document) { in dom_document_strict_error_checking_write()
576 if (obj->document) { in dom_document_format_output_read()
597 if (obj->document) { in dom_document_format_output_write()
618 if (obj->document) { in dom_document_validate_on_parse_read()
639 if (obj->document) { in dom_document_validate_on_parse_write()
660 if (obj->document) { in dom_document_resolve_externals_read()
681 if (obj->document) { in dom_document_resolve_externals_write()
702 if (obj->document) { in dom_document_preserve_whitespace_read()
723 if (obj->document) { in dom_document_preserve_whitespace_write()
[all …]
H A Dphp_dom.c259 if (obj && obj->ptr != NULL) { in dom_object_get_node()
270 if (obj && obj->_private != NULL) { in php_dom_object_get_data()
308 dom_object *obj; in dom_get_property_ptr_ptr() local
342 dom_object *obj; in dom_read_property() local
388 dom_object *obj; in dom_write_property() local
423 dom_object *obj; in dom_property_exists() local
598 obj = &EG(objects_store).object_buckets[handle].bucket.obj; in dom_objects_store_clone_obj()
604 obj->clone(obj->object, &new_object TSRMLS_CC); in dom_objects_store_clone_obj()
606 …retval.handle = zend_objects_store_put(new_object, obj->dtor, obj->free_storage, obj->clone TSRMLS… in dom_objects_store_clone_obj()
1329 if (!obj) { in php_dom_create_object()
[all …]
/PHP-5.5/Zend/tests/
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 Dbug65969.phpt5 $obj = new stdClass;
6 list($a,$b) = $obj->prop = [1,2];
/PHP-5.5/ext/standard/tests/strings/
H A Dbug26817.phpt20 $obj = new test();
21 $obj->foo();
22 var_dump(http_build_query($obj));
/PHP-5.5/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);
H A Dobserver_004.phpt70 ["obj"]=>
80 ["obj"]=>
102 ["obj"]=>
112 ["obj"]=>
H A DSplFileObject_fpassthru_basic.phpt5 $obj = New SplFileObject(dirname(__FILE__).'/SplFileObject_testinput.csv');
6 $obj->fpassthru();
/PHP-5.5/Zend/tests/traits/
H A Dbug64070.phpt30 $obj = new first_class();
31 $obj->first_function();
32 $obj->second_function();
/PHP-5.5/ext/json/tests/
H A Djson_encode_basic.phpt29 $obj = new sample();
30 $obj->MyInt = 99;
31 $obj->MyFloat = 123.45;
32 $obj->MyBool = true;
33 $obj->MyNull = null;
34 $obj->MyString = "Hello World";
86 /*27*/ $obj
/PHP-5.5/ext/standard/tests/general_functions/
H A Dvar_export_error2.phpt11 @$obj->p =& $obj;
12 var_export($obj, true);
/PHP-5.5/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h63 #define CDNO_FETCH_VERIFY(obj, zv) do { \ argument
68 obj = (php_com_dotnet_object*)zend_object_store_get_object(zv TSRMLS_CC); \
80 void php_com_object_enable_event_sink(php_com_dotnet_object *obj, int enable TSRMLS_DC);
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, int namelen,
110 int php_com_do_invoke_byref(php_com_dotnet_object *obj, char *name, int namelen,
175 ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, i…
/PHP-5.5/tests/classes/
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-5.5/ext/reflection/tests/
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-5.5/Zend/tests/generators/
H A Dnested_method_calls.phpt18 function gen($obj) {
19 $obj->foo($obj->foo(yield));
/PHP-5.5/ext/xsl/
H A Dphp_xsl.h72 void php_xsl_set_object(zval *wrapper, void *obj TSRMLS_DC);
74 zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, zval *return_value…
84 #define XSL_DOMOBJ_NEW(zval, obj, ret) \ argument
85 if (NULL == (zval = php_xsl_create_object(obj, ret, zval, return_value TSRMLS_CC))) { \
/PHP-5.5/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt7 private $obj;
10 function __construct($obj) {
12 $this->obj = $obj;
19 $more = $this->num < $this->obj->max;
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug70219.phpt5 class obj implements Serializable {
17 $exploit = 'a:2:{i:0;C:3:"obj":'.strlen($inner).':{'.$inner.'}i:1;R:4;}';
31 object(obj)#%d (1) {

Completed in 32 milliseconds

12345678910>>...16