Home
last modified time | relevance | path

Searched refs:list (Results 201 – 225 of 314) sorted by path

12345678910>>...13

/PHP-7.4/ext/simplexml/
H A Dsimplexml.c961 static inline zend_string *sxe_xmlNodeListGetString(xmlDocPtr doc, xmlNodePtr list, int inLine) /* … in sxe_xmlNodeListGetString() argument
963 xmlChar *tmp = xmlNodeListGetString(doc, list, inLine); in sxe_xmlNodeListGetString()
/PHP-7.4/ext/skeleton/
H A Dconfig.m4.in41 dnl else # search default path list
/PHP-7.4/ext/soap/
H A Dphp_encoding.c2970 smart_str list = {0}; in to_xml_list() local
2976 if (list.s && ZSTR_LEN(list.s) != 0) { in to_xml_list()
2986 smart_str_0(&list); in to_xml_list()
2987 if (list.s) { in to_xml_list()
2988 xmlNodeSetContentLen(ret, BAD_CAST(ZSTR_VAL(list.s)), ZSTR_LEN(list.s)); in to_xml_list()
2992 smart_str_free(&list); in to_xml_list()
2996 smart_str list = {0}; in to_xml_list() local
3018 if (list.s && ZSTR_LEN(list.s) != 0) { in to_xml_list()
3030 smart_str_0(&list); in to_xml_list()
3031 if (list.s) { in to_xml_list()
[all …]
/PHP-7.4/ext/soap/tests/
H A Dbug69137.phpt20 list ($proxyHost, $proxyPort) = explode(':', str_replace('http://', '', $_ENV['http_proxy']));
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug42359.phpt15 [0] => list listItem {anonymous1}
18 [3] => list listItem2 {enumItem}
/PHP-7.4/ext/soap/tests/schema/
H A Dschema009.phpt2 SOAP XML Schema 9: simpleType/list (as string)
10 <list itemType="token"/>
H A Dschema010.phpt2 SOAP XML Schema 10: simpleType/list (as array)
10 <list itemType="token"/>
H A Dschema011.phpt2 SOAP XML Schema 11: simpleType/list (inline type) (as string)
10 <list>
14 </list>
H A Dschema012.phpt2 SOAP XML Schema 12: simpleType/list (inline type) (as array)
10 <list>
14 </list>
H A Dschema017.phpt2 SOAP XML Schema 17: union with list
17 <list itemType="int"/>
H A Dschema018.phpt2 SOAP XML Schema 18: union with list
15 <list itemType="int"/>
H A Dschema019.phpt2 SOAP XML Schema 19: union with list
15 <list itemType="int"/>
H A Dschema020.phpt2 SOAP XML Schema 20: union with list
17 <list itemType="int"/>
H A Dschema021.phpt2 SOAP XML Schema 21: list of unions
10 <list>
14 </list>
H A Dschema022.phpt2 SOAP XML Schema 22: list of unions
12 <list>
16 </list>
/PHP-7.4/ext/soap/tests/soap12/
H A DT61.phpt28 …><env:Text>SOAP-ERROR: Encoding: '*' may only be first arraySize value in list</env:Text></env:Rea…
/PHP-7.4/ext/sockets/tests/
H A Dsocket_strerror.phpt31 string(22) "Argument list too long"
/PHP-7.4/ext/sodium/tests/
H A Dphp_password_verify.phpt11 list(, $algo) = explode('$', $hash, 3);
/PHP-7.4/ext/spl/
H A Dphp_spl.c867 efree(*list); in spl_build_class_list_string()
868 *list = res; in spl_build_class_list_string()
875 zval list, *zv; in PHP_MINFO_FUNCTION() local
881 array_init(&list); in PHP_MINFO_FUNCTION()
882 SPL_LIST_CLASSES(&list, 0, 1, ZEND_ACC_INTERFACE) in PHP_MINFO_FUNCTION()
884 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(&list), zv) { in PHP_MINFO_FUNCTION()
887 zend_array_destroy(Z_ARR(list)); in PHP_MINFO_FUNCTION()
891 array_init(&list); in PHP_MINFO_FUNCTION()
892 SPL_LIST_CLASSES(&list, 0, -1, ZEND_ACC_INTERFACE) in PHP_MINFO_FUNCTION()
894 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(&list), zv) { in PHP_MINFO_FUNCTION()
[all …]
H A Dspl_functions.c78 void spl_add_class_name(zval *list, zend_class_entry *pce, int allow, int ce_flags) in spl_add_class_name() argument
83 if ((tmp = zend_hash_find(Z_ARRVAL_P(list), pce->name)) == NULL) { in spl_add_class_name()
86 zend_hash_add(Z_ARRVAL_P(list), pce->name, &t); in spl_add_class_name()
93 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_interfaces() argument
100 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags); in spl_add_interfaces()
107 void spl_add_traits(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_traits() argument
116 spl_add_class_name(list, trait, allow, ce_flags); in spl_add_traits()
123 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags) in spl_add_classes() argument
128 spl_add_class_name(list, pce, allow, ce_flags); in spl_add_classes()
130 spl_add_interfaces(list, pce, allow, ce_flags); in spl_add_classes()
[all …]
H A Dspl_functions.h61 void spl_add_class_name(zval * list, zend_class_entry * pce, int allow, int ce_flags);
62 void spl_add_interfaces(zval * list, zend_class_entry * pce, int allow, int ce_flags);
63 void spl_add_traits(zval * list, zend_class_entry * pce, int allow, int ce_flags);
64 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags);
/PHP-7.4/ext/spl/tests/
H A DRecursiveDirectoryIterator_getSubPath_basic.phpt17 $list = [];
19 $list[] = $it->getSubPath();
22 asort($list);
23 foreach ($list as $item) {
H A DRecursiveDirectoryIterator_getSubPathname_basic.phpt19 $list = [];
22 $list[] = $it->getSubPathname();
25 asort($list);
26 foreach ($list as $item) {
H A DSplDoublyLinkedList_current.phpt7 $list = new SplDoublyLinkedList();
8 var_dump($list->current());
H A DSplDoublyLinkedList_current_empty.phpt8 $list = new SplDoublyLinkedList();
9 var_dump($list->current());

Completed in 81 milliseconds

12345678910>>...13