Home
last modified time | relevance | path

Searched refs:type (Results 76 – 100 of 1715) sorted by relevance

12345678910>>...69

/PHP-5.3/ext/gmp/tests/
H A D009.phpt44 resource(%d) of type (GMP integer)
49 resource(%d) of type (GMP integer)
53 Warning: gmp_strval(): Unable to convert variable to GMP - wrong type in %s on line %d
55 resource(%d) of type (GMP integer)
57 resource(%d) of type (GMP integer)
59 resource(%d) of type (GMP integer)
61 resource(%d) of type (GMP integer)
63 resource(%d) of type (GMP integer)
65 resource(%d) of type (GMP integer)
71 Warning: gmp_div_q(): Unable to convert variable to GMP - wrong type in %s on line %d
/PHP-5.3/Zend/
H A Dzend_highlight.c100 token.type = 0; in zend_highlight()
124 token.type = 0; in zend_highlight()
128 if (token.type == 0) { in zend_highlight()
148 if (token.type == IS_STRING) { in zend_highlight()
164 token.type = 0; in zend_highlight()
180 token.type = 0; in zend_strip()
191 token.type = 0; in zend_strip()
203 token.type = 0; in zend_strip()
211 if (token.type == IS_STRING) { in zend_strip()
226 prev_space = token.type = 0; in zend_strip()
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug47049.phpt19type="ns1:host"><uuid xsi:type="xsd:string">foo</uuid></host><software_list xsi:type="ns1:software…
/PHP-5.3/ext/soap/tests/schema/
H A Dschema034.phpt9 <element name="testType2" type="tns:testType2"/>
12 <element name="int" type="int"/>
17 <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 Dschema035.phpt2 SOAP XML Schema 35: Nested complex types (element ref + anonymous type)
12 <element name="int" type="int"/>
18 <element name="int" type="int"/>
23 test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"testType2"=>array("int"=>123.…
28 …<ns1:test><testParam xsi:type="ns1:testType"><int xsi:type="xsd:int">123</int><testType2 xsi:type=…
H A Dschema050.phpt2 SOAP XML Schema 50: Array in complex type (maxOccurs > 1, one value)
11 <element name="int" type="int"/>
12 <element name="int2" type="int" maxOccurs="unbounded"/>
16 test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"int2"=>123.5));
21 …/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType"><int xsi:type="xsd:int">123</int><i…
H A Dschema052.phpt2 SOAP XML Schema 52: Array in complex type (maxOccurs > 1, array with one value)
11 <element name="int" type="int"/>
12 <element name="int2" type="int" maxOccurs="unbounded"/>
16 test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"int2"=>array(123.5)));
21 …/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType"><int xsi:type="xsd:int">123</int><i…
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-5.3/ext/xmlrpc/libxmlrpc/
H A Dxml_to_soap.c114 type = XMLRPC_GetValueTypeEasy(xIter); in get_array_soap_type()
123 type = xmlrpc_type_none; in get_array_soap_type()
130 switch (type) { in get_array_soap_type()
258 type = el->name; in xml_element_to_SOAP_REQUEST_worker()
272 type = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
343 type = parent_array->kids_type; in xml_element_to_SOAP_REQUEST_worker()
345 if (!type || !strcmp(type, TOKEN_STRING)) { in xml_element_to_SOAP_REQUEST_worker()
355 !strcmp(type, TOKEN_FLOAT)) { in xml_element_to_SOAP_REQUEST_worker()
376 if (!type || !strcmp(type, TOKEN_STRUCT)) { in xml_element_to_SOAP_REQUEST_worker()
446 switch (type) { in SOAP_to_xml_element_worker()
[all …]
H A Dxml_to_dandarpc.c72 const char* type = NULL; in xml_element_to_DANDARPC_REQUEST_worker() local
80 type = attr_iter->val; in xml_element_to_DANDARPC_REQUEST_worker()
90 if(!type || !strcmp(type, ATTR_STRING)) { in xml_element_to_DANDARPC_REQUEST_worker()
93 else if(!strcmp(type, ATTR_INT)) { in xml_element_to_DANDARPC_REQUEST_worker()
96 else if(!strcmp(type, ATTR_BOOLEAN)) { in xml_element_to_DANDARPC_REQUEST_worker()
99 else if(!strcmp(type, ATTR_DOUBLE)) { in xml_element_to_DANDARPC_REQUEST_worker()
105 else if(!strcmp(type, ATTR_BASE64)) { in xml_element_to_DANDARPC_REQUEST_worker()
115 if(!type || !strcmp(type, ATTR_MIXED)) { in xml_element_to_DANDARPC_REQUEST_worker()
118 else if(!strcmp(type, ATTR_ARRAY)) { in xml_element_to_DANDARPC_REQUEST_worker()
121 else if(!strcmp(type, ATTR_STRUCT)) { in xml_element_to_DANDARPC_REQUEST_worker()
[all …]
/PHP-5.3/ext/standard/
H A Ddl.c105 PHPAPI int php_load_extension(char *filename, int type, int start_now TSRMLS_DC) /* {{{ */ in php_load_extension() argument
114 if (type == MODULE_PERSISTENT) { in php_load_extension()
120 if (type == MODULE_TEMPORARY) { in php_load_extension()
129 if (type == MODULE_TEMPORARY) { in php_load_extension()
196 unsigned char type; in php_load_extension() member
236 module_entry->type = type; in php_load_extension()
250 if ((type == MODULE_TEMPORARY || start_now) && module_entry->request_startup_func) { in php_load_extension()
251 if (module_entry->request_startup_func(type, module_entry->module_number TSRMLS_CC) == FAILURE) { in php_load_extension()
263 PHPAPI void php_dl(char *file, int type, zval *return_value, int start_now TSRMLS_DC) in php_dl() argument
266 if (php_load_extension(file, type, start_now TSRMLS_CC) == FAILURE) { in php_dl()
[all …]
/PHP-5.3/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="…
/PHP-5.3/ext/soap/
H A Dphp_encoding.c629 if (type && type->map && type->map->to_xml) { in to_xml_user()
660 if (type && type->map && type->map->to_zval) { in to_zval_user()
2708 if (type->sdl_type && type->sdl_type->elements && in to_zval_array()
3343 if (type->encode && enc != &type->encode->details) { in sdl_guess_convert_zval()
3357 (type->encode->details.type == IS_ARRAY || in sdl_guess_convert_zval()
3358 type->encode->details.type == SOAP_ENC_ARRAY)) { in sdl_guess_convert_zval()
3407 if (type->encode && enc != &type->encode->details) { in sdl_guess_convert_xml()
3423 (type->encode->details.type == IS_ARRAY || in sdl_guess_convert_xml()
3424 type->encode->details.type == SOAP_ENC_ARRAY)) { in sdl_guess_convert_xml()
3489 set_ns_and_type_ex(node, type->ns, type->type_str); in set_ns_and_type()
[all …]
/PHP-5.3/scripts/dev/generate-phpt/src/testcase/
H A DgtErrorTestCase.php16 * @param string $type
19 public static function getInstance($optionalSections, $type = 'function') { argument
21 if($type == 'function') {
24 if($type =='method') {
/PHP-5.3/ext/standard/tests/general_functions/
H A Dtype.phpt48 foreach ($types as $type) {
50 var_dump(settype($var, $type));
66 string(12) "unknown type"
159 string(42) "settype(): Cannot convert to resource type"
169 string(42) "settype(): Cannot convert to resource type"
199 resource(%d) of type (Unknown)
202 resource(%d) of type (stream)
256 resource(%d) of type (Unknown)
261 resource(%d) of type (stream)
315 resource(%d) of type (Unknown)
[all …]
/PHP-5.3/ext/fileinfo/tests/
H A Dfinfo_open_basic.phpt35 resource(%d) of type (file_info)
36 resource(%d) of type (file_info)
37 resource(%d) of type (file_info)
38 resource(%d) of type (file_info)
39 resource(%d) of type (file_info)
40 resource(%d) of type (file_info)
41 resource(%d) of type (file_info)
/PHP-5.3/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-5.3/tests/output/
H A Dob_013.phpt41 [type] => 1
53 [type] => 1
64 [type] => 1
75 [type] => 1
86 [type] => 1
97 [type] => 1
/PHP-5.3/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-5.3/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-5.3/ext/date/lib/
H A Dparse_tz.c128 if (!tz->type) { in read_types()
136 tz->type[i].isdst = buffer[j + 4]; in read_types()
177 tz->type[i].isstdcnt = buffer[i]; in read_types()
191 tz->type[i].isgmtcnt = buffer[i]; in read_types()
233 (long int) tz->type[0].offset, in timelib_dump_tzinfo()
234 tz->type[0].isdst, in timelib_dump_tzinfo()
235 tz->type[0].abbr_idx, in timelib_dump_tzinfo()
237 tz->type[0].isstdcnt, in timelib_dump_tzinfo()
238 tz->type[0].isgmtcnt in timelib_dump_tzinfo()
344 return &(tz->type[0]); in fetch_timezone_offset()
[all …]

Completed in 57 milliseconds

12345678910>>...69