Home
last modified time | relevance | path

Searched refs:property (Results 251 – 275 of 295) sorted by relevance

1...<<1112

/PHP-5.5/ext/oci8/tests/
H A Dlob_020.phpt117 Warning: oci_lob_erase(): Unable to find descriptor property in %s on line %d
/PHP-5.5/ext/spl/tests/
H A DarrayObject_magicMethods1.phpt2 SPL: ArrayObject: ensure a wrapped object's magic methods for property access are not invoked when …
H A DarrayObject_magicMethods3.phpt2 SPL: ArrayObject: ensure a wrapped object's magic methods for property access are not invoked when …
H A DarrayObject_magicMethods4.phpt2 SPL: ArrayObject: ensure the magic methods for property access of a subclass of ArrayObject are not…
H A DarrayObject_magicMethods5.phpt2 SPL: ArrayObject: ensure the magic methods for property access of a subclass of ArrayObject ARE inv…
H A DarrayObject_magicMethods6.phpt2 SPL: ArrayObject: ensure the magic methods for property access of a subclass of ArrayObject are not…
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput114 are all themselves checked in other tests. Unicode, including property support,
H A Dtestoutput161 /-- This set of tests is run only with the 8-bit library when Unicode property
H A Dtestinput61 /-- This set of tests is for Unicode property support. It is compatible with
641 /Check property support in non-UTF-8 mode/
745 /The next two tests are for property support in non-UTF-8 mode/
1347 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
1392 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
1439 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
1465 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
H A Dtestoutput61 /-- This set of tests is for Unicode property support. It is compatible with
1095 /Check property support in non-UTF-8 mode/
1275 /The next two tests are for property support in non-UTF-8 mode/
2179 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
2180 0: Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
2267 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
2268 0: Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
2357 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
2407 Cf-property:\x{ad}\x{600}\x{601}\x{602}\x{603}\x{604}\x{6dd}\x{70f}
H A Dtestinput151 /-- This set of tests is for UTF-8 support but not Unicode property support,
H A Dtestinput71 /-- These tests for Unicode property support test PCRE's API and show some of
697 /-- This property is a PCRE special --/
H A Dtestinput142 UTF-8 or Unicode property support. The file starts with all the tests of
/PHP-5.5/ext/com_dotnet/
H A Dcom_saproxy.c285 static void saproxy_object_set(zval **property, zval *value TSRMLS_DC)
289 static zval *saproxy_object_get(zval *property TSRMLS_DC)
H A Dcom_handlers.c187 static void com_object_set(zval **property, zval *value TSRMLS_DC)
192 static zval *com_object_get(zval *property TSRMLS_DC)
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c3809 zval *property; in ZEND_METHOD() local
3824 MAKE_STD_ZVAL(property); in ZEND_METHOD()
3825 ZVAL_STRINGL(property, name, name_len, 1); in ZEND_METHOD()
3827 zval_ptr_dtor(&property); in ZEND_METHOD()
3830 zval_ptr_dtor(&property); in ZEND_METHOD()
3910 zval *property; in _addproperty() local
3920 ALLOC_ZVAL(property); in _addproperty()
3922 add_next_index_zval(retval, property); in _addproperty()
3931 zval *property; in _adddynproperty() local
3948 MAKE_STD_ZVAL(property); in _adddynproperty()
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A DHACKING295 Match by Unicode property
299 character by testing its Unicode property (the \p and \P escape sequences).
300 Each is followed by two units that encode the desired property as a type and a
307 three units: OP_PROP or OP_NOTPROP, and then the desired property type and
346 XCL_PROP a Unicode property (type, value) follows
347 XCL_NOTPROP a Unicode property (type, value) follows
H A DREADME251 form of a property table); only the basic two-letter properties such as Lu
760 mode with Unicode property support, respectively.
764 change) and when Unicode property support is enabled.
773 for general cases, UTF-8/16/32 support, and Unicode property support,
894 ucp.h header for Unicode property handling
/PHP-5.5/Zend/
H A Dzend_builtin_functions.c1172 char *property; in ZEND_FUNCTION() local
1179 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs", &object, &property, &property_len) == F… in ZEND_FUNCTION()
1199 h = zend_get_hash_value(property, property_len+1); in ZEND_FUNCTION()
1200 …if (zend_hash_quick_find(&ce->properties_info, property, property_len+1, h, (void **) &property_in… in ZEND_FUNCTION()
1205 ZVAL_STRINGL(&property_z, property, property_len, 0); in ZEND_FUNCTION()
H A DZEND_CHANGES538 meaning of each property. As the code shows it is possible to read
739 * Method calls and property accesses can be overloaded
803 with respect to property visibility.
816 // using the property
H A Dzend_compile.c5300 zval *property; in zend_do_declare_property() local
5321 ALLOC_ZVAL(property); in zend_do_declare_property()
5324 *property = value->u.constant; in zend_do_declare_property()
5326 INIT_PZVAL(property); in zend_do_declare_property()
5327 Z_TYPE_P(property) = IS_NULL; in zend_do_declare_property()
5344 zval *property; in zend_do_declare_class_constant() local
5357 ALLOC_ZVAL(property); in zend_do_declare_class_constant()
5358 *property = value->u.constant; in zend_do_declare_class_constant()
5368 FREE_ZVAL(property); in zend_do_declare_class_constant()
5399 SET_NODE(opline_ptr->op2, property); in zend_do_fetch_property()
[all …]
H A Dzend_API.h305 …property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type …
306 …perty_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type,…
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_get_warnings.phpt105 /* Yes, I really want to check if the object property is empty */
/PHP-5.5/
H A DCODING_STANDARDS44 that PHP holds the length property of each string, and that it
46 a way so that they'll take advantage of the length property, both
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt2463 47 unknown property name after \P or \p
4803 Unicode property support
5332 \p{xx} a character with the xx property
5333 \P{xx} a character without the xx property
5443 does not support the Cs property.
5501 property.
5830 it is compiled with Unicode property support.
5934 the Zs property.
7726 \p{xx} a character with the xx property
7727 \P{xx} a character without the xx property
[all …]

Completed in 116 milliseconds

1...<<1112