Home
last modified time | relevance | path

Searched refs:type (Results 101 – 125 of 2079) sorted by relevance

12345678910>>...84

/PHP-7.4/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_rpcenc_003w.phpt34type="ns2:ExtendedStruct"><floatMessage xsi:type="xsd:float">12.345</floatMessage><shortMessage xs…
36type="ns1:ExtendedStruct"><floatMessage xsi:type="xsd:float">12.345</floatMessage><shortMessage xs…
H A Dr4_groupH_simple_rpcenc_010w.phpt19type="xsd:int">3</whichFault><param1 xsi:type="xsd:string">Hello World</param1><param2 xsi:type="x…
21 …xsd:string[3]" xsi:type="ns1:ArrayOfString"><item xsi:type="xsd:string">one</item><item xsi:type="…
H A Dr4_groupH_complex_rpcenc_005w.phpt34type="xsd:int">2</whichFault><param1 xsi:type="ns2:SOAPStruct"><varString xsi:type="xsd:string">ar…
36 …ng><detail><ns2:part2 xsi:type="ns1:BaseStruct"><floatMessage xsi:type="xsd:float">12.345</floatMe…
/PHP-7.4/ext/standard/
H A Ddl.c103 PHPAPI int php_load_extension(char *filename, int type, int start_now) in php_load_extension() argument
113 if (type == MODULE_PERSISTENT) { in php_load_extension()
119 if (type == MODULE_TEMPORARY) { in php_load_extension()
128 if (type == MODULE_TEMPORARY) { in php_load_extension()
223 module_entry->type = type; in php_load_extension()
232 if ((type == MODULE_TEMPORARY || start_now) && zend_startup_module_ex(module_entry) == FAILURE) { in php_load_extension()
237 if ((type == MODULE_TEMPORARY || start_now) && module_entry->request_startup_func) { in php_load_extension()
238 if (module_entry->request_startup_func(type, module_entry->module_number) == FAILURE) { in php_load_extension()
250 PHPAPI void php_dl(char *file, int type, zval *return_value, int start_now) in php_dl() argument
253 if (php_load_extension(file, type, start_now) == FAILURE) { in php_dl()
[all …]
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_parser.y84 $$.type = FILE_PARAM;
89 $$.type = NUMERIC_FILE_PARAM;
94 $$.type = FILE_PARAM;
104 $$.type = NUMERIC_FILE_PARAM;
114 $$.type = METHOD_PARAM;
119 $$.type = NUMERIC_METHOD_PARAM;
131 $$.type = COND_PARAM;
151 $$.type = EVAL_PARAM;
156 $$.type = SHELL_PARAM;
161 $$.type = RUN_PARAM;
[all …]
/PHP-7.4/ext/snmp/tests/
H A Dsnmp2_set.phpt60 echo "Multiple OID, single type & value\n";
94 echo "Multiple OID, 1st wrong type\n";
100 echo "Multiple OID, 2nd wrong type\n";
155 Warning: snmp2_set(): Could not add variable: OID='%s' type='q' value='%i': Bad variable type ("q")…
174 Multiple OID, single type & value
181 Multiple OID, single type, multiple value
201 Multiple OID, 1st wrong type
207 Multiple OID, 2nd wrong type
219 Multiple OID & type, singe value in array
239 Warning: snmp2_set(): Could not add variable: OID='%s' type='q' value='%s': Bad variable type ("q")…
[all …]
H A Dsnmpset.phpt60 echo "Multiple OID, single type & value\n";
94 echo "Multiple OID, 1st wrong type\n";
100 echo "Multiple OID, 2nd wrong type\n";
155 Warning: snmpset(): Could not add variable: OID='%s' type='q' value='%i': Bad variable type ("q") i…
174 Multiple OID, single type & value
181 Multiple OID, single type, multiple value
201 Multiple OID, 1st wrong type
207 Multiple OID, 2nd wrong type
219 Multiple OID & type, singe value in array
239 Warning: snmpset(): Could not add variable: OID='%s' type='q' value='%s': Bad variable type ("q") i…
[all …]
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitLir.c1603 jump_names[type & 0xff], JUMP_POSTFIX(type)); in check_sljit_emit_jump()
1679 jump_names[type & 0xff], (type & SLJIT_I32_OP) ? "32" : ""); in check_sljit_emit_cmp()
1704 jump_names[type & 0xff], (type & SLJIT_F32_OP) ? ".f32" : ".f64"); in check_sljit_emit_fcmp()
1723 CHECK_ARGUMENT(type >= SLJIT_JUMP && type <= SLJIT_FAST_CALL); in check_sljit_emit_ijump()
1743 CHECK_ARGUMENT(type == SLJIT_CALL || type == SLJIT_CALL_CDECL); in check_sljit_emit_icall()
1798 sljit_s32 type) in check_sljit_emit_op_flags() argument
1859 jump_names[type & 0xff], JUMP_POSTFIX(type)); in check_sljit_emit_cmov()
1875 …CHECK_ARGUMENT(!(type & SLJIT_I32_OP) || ((type & 0xff) != SLJIT_MOV && (type & 0xff) != SLJIT_MOV… in check_sljit_emit_mem()
1876 CHECK_ARGUMENT((type & SLJIT_MEM_PRE) || (type & SLJIT_MEM_POST)); in check_sljit_emit_mem()
1910 CHECK_ARGUMENT((type & SLJIT_MEM_PRE) || (type & SLJIT_MEM_POST)); in check_sljit_emit_fmem()
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Darray_search_variation2.phpt34 /* loop to do loose and strict type check of elements in
36 checking PHP type comparison tables
39 foreach($array_type as $type) {
41 //loose type checking
42 var_dump( array_search($type,$misc_array ) );
43 //strict type checking
44 var_dump( array_search($type,$misc_array,true) );
45 //loose type checking
46 var_dump( array_search($type,$misc_array,false) );
H A Din_array_variation2.phpt34 /* loop to do loose and strict type check of elements in
36 checking PHP type comparison tables
39 foreach($array_type as $type) {
41 //loose type checking
42 var_dump( in_array($type,$misc_array ) );
43 //strict type checking
44 var_dump( in_array($type,$misc_array,true) );
45 //loose type checking
46 var_dump( in_array($type,$misc_array,false) );
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dxml_to_soap.c109 type = XMLRPC_GetValueTypeEasy(xIter); in get_array_soap_type()
118 type = xmlrpc_type_none; in get_array_soap_type()
125 switch (type) { in get_array_soap_type()
253 type = el->name; in xml_element_to_SOAP_REQUEST_worker()
267 type = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
338 type = parent_array->kids_type; in xml_element_to_SOAP_REQUEST_worker()
340 if (!type || !strcmp(type, TOKEN_STRING)) { in xml_element_to_SOAP_REQUEST_worker()
350 !strcmp(type, TOKEN_FLOAT)) { in xml_element_to_SOAP_REQUEST_worker()
371 if (!type || !strcmp(type, TOKEN_STRUCT)) { in xml_element_to_SOAP_REQUEST_worker()
441 switch (type) { in SOAP_to_xml_element_worker()
[all …]
/PHP-7.4/ext/soap/tests/schema/
H A Dschema036.phpt11 <element name="int" type="int"/>
15 <element name="int" type="int"/>
22 test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"testType2"=>array("int"=>123.…
27 …<ns1:test><testParam xsi:type="ns1:testType"><int xsi:type="xsd:int">123</int><testType2 xsi:type=…
H A Dschema049.phpt2 SOAP XML Schema 49: Restriction of complex type (2)
11 <element name="int" type="int"/>
12 <element name="int2" type="int"/>
19 <element name="int2" type="int"/>
25 test_schema($schema,'type="tns:testType"',(object)array("_"=>123.5,"int"=>123.5,"int2"=>123.5));
30 …rg/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType"><int2 xsi:type="xsd…
H A Dschema085.phpt2 SOAP XML Schema 85: Extension of complex type (elements order)
11 <element name="int" type="int"/>
18 <element name="int2" type="int"/>
33 test_schema($schema,'type="tns:testType"',new B());
38 …g/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType"><int xsi:type="xsd:int">1</int><in…
/PHP-7.4/ext/xml/tests/
H A Dbug50576.phpt67 [type] => open
81 [type] => open
90 [type] => complete
100 [type] => cdata
107 [type] => close
116 [type] => cdata
123 [type] => close
/PHP-7.4/tests/output/
H A Dob_013.phpt41 [type] => 1
53 [type] => 0
64 [type] => 1
75 [type] => 1
86 [type] => 1
97 [type] => 1
/PHP-7.4/sapi/cli/tests/
H A D022.phpt2 STDIN/OUT/ERR stream type
43 resource(%d) of type (stream)
44 resource(%d) of type (process)
45 resource(%d) of type (stream)
46 resource(%d) of type (stream)
47 resource(%d) of type (stream)
/PHP-7.4/
H A D.gdbinit95 set $type = $zvalue->u1.v.type
127 printf "unknown type %d", $type
163 set $type = $zvalue->u1.v.type
166 if $type > 5 && $type < 12
170 if $type == 0
173 if $type == 1
176 if $type == 2
179 if $type == 3
182 if $type == 4
185 if $type == 5
[all …]
/PHP-7.4/ext/soap/
H A Dphp_encoding.c604 if (type && type->map && Z_TYPE(type->map->to_xml) != IS_UNDEF) { in to_xml_user()
632 if (type && type->map && Z_TYPE(type->map->to_zval) != IS_UNDEF) { in to_zval_user()
2549 if (type->sdl_type && type->sdl_type->elements && in to_zval_array()
3170 if (type->encode && enc != &type->encode->details) { in sdl_guess_convert_zval()
3184 (type->encode->details.type == IS_ARRAY || in sdl_guess_convert_zval()
3185 type->encode->details.type == SOAP_ENC_ARRAY)) { in sdl_guess_convert_zval()
3234 if (type->encode && enc != &type->encode->details) { in sdl_guess_convert_xml()
3250 (type->encode->details.type == IS_ARRAY || in sdl_guess_convert_xml()
3251 type->encode->details.type == SOAP_ENC_ARRAY)) { in sdl_guess_convert_xml()
3316 set_ns_and_type_ex(node, type->ns, type->type_str); in set_ns_and_type()
[all …]
/PHP-7.4/ext/standard/tests/strings/
H A Dbug53319.phpt6 $str = '<br /><br />USD<input type="text"/><br/>CDN<br><input type="text" />';
14 string(47) "USD<input type="text"/>CDN<input type="text" />"
/PHP-7.4/ext/standard/tests/streams/
H A Dbug53427.phpt18 resource(%d) of type (stream)
20 resource(%d) of type (stream)
24 resource(%d) of type (stream)
26 resource(%d) of type (stream)
/PHP-7.4/ext/reflection/tests/
H A DReflectionNamedType.phpt15 $type = $function->getParameters()[0]->getType();
18 var_dump($type->getName());
19 var_dump((string) $type);
24 $type = $function->getParameters()[0]->getType();
27 var_dump($type->getName());
28 var_dump((string) $type);
/PHP-7.4/ext/enchant/tests/
H A Dbug13181.phpt55 resource(%d) of type (enchant_dict)
56 resource(%d) of type (enchant_dict)
57 resource(%d) of type (enchant_broker)
58 resource(%d) of type (enchant_broker)
59 resource(%d) of type (enchant_dict)
60 resource(%d) of type (enchant_dict)
/PHP-7.4/ext/soap/tests/soap12/
H A DT41.phpt15 <inputStruct xsi:type="ns1:SOAPStruct"
17 <varInt xsi:type="xsd:int">42</varInt>
18 <varFloat xsi:type="xsd:float">0.005</varFloat>
19 <varString xsi:type="xsd:string">hello world</varString>
29 …turn xsi:type="ns2:SOAPStruct"><varString xsi:type="xsd:string">hello world</varString><varInt xsi…
/PHP-7.4/ext/standard/tests/general_functions/
H A Dtype.phpt48 foreach ($types as $type) {
51 var_dump(settype($var, $type));
163 string(42) "settype(): Cannot convert to resource type"
173 string(42) "settype(): Cannot convert to resource type"
176 string(42) "settype(): Cannot convert to resource type"
203 resource(%d) of type (Unknown)
206 resource(%d) of type (stream)
260 resource(%d) of type (Unknown)
265 resource(%d) of type (stream)
319 resource(%d) of type (Unknown)
[all …]

Completed in 57 milliseconds

12345678910>>...84