Home
last modified time | relevance | path

Searched refs:type (Results 226 – 250 of 1876) sorted by relevance

12345678910>>...76

/PHP-5.5/ext/soap/tests/schema/
H A Dschema078.phpt11 <element name="int1" type="int"/>
12 <element name="int2" type="int" form="qualified"/>
13 <element name="int3" type="int" form="unqualified"/>
18 test_schema($schema,'type="tns:testType"',(object)array("int1"=>1.1,"int2"=>2.2,"int3"=>3.3), "rpc"…
H A Dschema068.phpt10 <attribute name="str" type="string"/>
11 <attribute name="int" type="int" fixed="5"/>
14 test_schema($schema,'type="tns:testType"',(object)array("str"=>"str","int"=>4));
H A Dschema042.phpt2 SOAP XML Schema 42: Extension of simple type
12 <attribute name="int" type="int"/>
17 test_schema($schema,'type="tns:testType"',(object)array("_"=>123.5,"int"=>123.5));
22 …hemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType" int=…
H A Dschema044.phpt2 SOAP XML Schema 44: Restriction of simple type
12 <attribute name="int" type="int"/>
17 test_schema($schema,'type="tns:testType"',(object)array("_"=>123.5,"int"=>123.5));
22 …hemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType" int=…
H A Dschema065.phpt10 <attribute name="str" type="string"/>
11 <attribute name="int" type="int" default="5"/>
14 test_schema($schema,'type="tns:testType"',(object)array("str"=>"str"));
19 …oap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam str="str" xsi:type="ns1:testType"/></n…
H A Dschema066.phpt10 <attribute name="str" type="string"/>
11 <attribute name="int" type="int" fixed="5"/>
14 test_schema($schema,'type="tns:testType"',(object)array("str"=>"str"));
19 …oap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam str="str" xsi:type="ns1:testType"/></n…
H A Dschema067.phpt10 <attribute name="str" type="string"/>
11 <attribute name="int" type="int" fixed="5"/>
14 test_schema($schema,'type="tns:testType"',(object)array("str"=>"str","int"=>5));
19 …soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam str="str" int="5" xsi:type="ns1:testType"/></n…
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug30994.phpt19 <system xsi:type="xsd:string">XXX</system>
20 <function xsi:type="xsd:string">TASKTEST</function>
28 <tns:Item id="id2" xsi:type="tns:Item">
29 <key xsi:type="xsd:string">ABCabc123</key>
30 <val xsi:type="xsd:string">123456</val>
47 …soap.org/soap/encoding/"><SOAP-ENV:Body><ns1:bassCallResponse><return xsi:type="xsd:string">ok</re…
/PHP-5.5/ext/soap/tests/interop/Round2/Base/
H A Dr2_base_006w.phpt18 …AP-ENC:arrayType="xsd:string[2]" xsi:type="ns2:ArrayOfstring"><item xsi:type="xsd:string">good</it…
20 …AP-ENC:arrayType="xsd:string[2]" xsi:type="ns2:ArrayOfstring"><item xsi:type="xsd:string">good</it…
H A Dr2_base_006p.phpt16 …SOAP-ENC:arrayType="xsd:string[2]" xsi:type="SOAP-ENC:Array"><item xsi:type="xsd:string">good</ite…
18 …AP-ENC:arrayType="xsd:string[2]" xsi:type="ns2:ArrayOfstring"><item xsi:type="xsd:string">good</it…
/PHP-5.5/ext/oci8/tests/
H A Dbug42134.phpt65 Warning: oci_new_collection(): OCI-22303: type ""."ABC" not found in %s on line %d
71 string(34) "OCI-22303: type ""."ABC" not found"
78 Warning: oci_new_collection(): OCI-22303: type ""."DEF" not found in %s on line %d
84 string(34) "OCI-22303: type ""."DEF" not found"
91 Warning: oci_new_collection(): OCI-22303: type ""."GHI" not found in %s on line %d
97 string(34) "OCI-22303: type ""."GHI" not found"
/PHP-5.5/ext/standard/
H A Dphp_smart_str.h168 #define smart_str_append_generic_ex(dest, num, type, vartype, func) do { \ argument
172 smart_str_appendl_ex((dest), __t, __b + sizeof(__b) - 1 - __t, (type)); \
175 #define smart_str_append_unsigned_ex(dest, num, type) \ argument
176 smart_str_append_generic_ex((dest), (num), (type), unsigned long, _unsigned)
178 #define smart_str_append_long_ex(dest, num, type) \ argument
179 smart_str_append_generic_ex((dest), (num), (type), unsigned long, _long)
181 #define smart_str_append_off_t_ex(dest, num, type) \ argument
182 smart_str_append_generic_ex((dest), (num), (type), off_t, _long)
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_constructor_error1.phpt17 echo "\nWrong type of argument (bool):\n";
23 echo "\nWrong type of argument (int):\n";
29 echo "\nWrong type of argument (bool, string):\n";
35 echo "\nWrong type of argument (string, bool):\n";
67 Wrong type of argument (bool):
72 Wrong type of argument (int):
77 Wrong type of argument (bool, string):
82 Wrong type of argument (string, bool):
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitLir.c1332 CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_CALL3); in check_sljit_emit_jump()
1333 CHECK_ARGUMENT((type & 0xff) < SLJIT_JUMP || !(type & SLJIT_INT_OP)); in check_sljit_emit_jump()
1339 JUMP_PREFIX(type), jump_names[type & 0xff]); in check_sljit_emit_jump()
1357 (type & SLJIT_INT_OP) ? "i_" : "", jump_names[type & 0xff]); in check_sljit_emit_cmp()
1381 (type & SLJIT_SINGLE_OP) ? "s_" : "d_", jump_names[type & 0xff]); in check_sljit_emit_fcmp()
1399 CHECK_ARGUMENT(type >= SLJIT_JUMP && type <= SLJIT_CALL3); in check_sljit_emit_ijump()
1416 sljit_si type) in check_sljit_emit_op_flags() argument
1632 type = condition | (type & (SLJIT_INT_OP | SLJIT_REWRITABLE_JUMP)); in sljit_emit_cmp()
1922 SLJIT_UNUSED_ARG(type); in sljit_emit_jump()
1932 SLJIT_UNUSED_ARG(type); in sljit_emit_cmp()
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc_private.h89 XMLRPC_VALUE_TYPE type; /* data type of this value */ member
124 XMLRPC_VECTOR_TYPE type; /* vector type */ member
164 const char* type_to_str(XMLRPC_VALUE_TYPE type, XMLRPC_VECTOR_TYPE vtype);
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_newline.c76 PRIV(is_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, in PRIV()
92 if (type == NLTYPE_ANYCRLF) switch(c) in PRIV()
151 PRIV(was_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR startptr, int *lenptr, in PRIV()
169 if (type == NLTYPE_ANYCRLF) switch(c) in PRIV()
/PHP-5.5/ext/xml/tests/
H A Dxml_parser_create_ns_variation1.phpt179 resource(%d) of type (xml)
182 resource(%d) of type (xml)
190 resource(%d) of type (xml)
198 resource(%d) of type (xml)
201 resource(%d) of type (xml)
204 resource(%d) of type (xml)
217 resource(%d) of type (xml)
220 resource(%d) of type (xml)
223 resource(%d) of type (xml)
241 resource(%d) of type (xml)
[all …]
H A Dxml_parser_create_variation1.phpt179 resource(%d) of type (xml)
182 resource(%d) of type (xml)
190 resource(%d) of type (xml)
198 resource(%d) of type (xml)
201 resource(%d) of type (xml)
204 resource(%d) of type (xml)
217 resource(%d) of type (xml)
220 resource(%d) of type (xml)
223 resource(%d) of type (xml)
241 resource(%d) of type (xml)
[all …]
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_cleanup.h8 int fpm_cleanup_add(int type, void (*cleanup)(int, void *), void *);
9 void fpm_cleanups_run(int type);
/PHP-5.5/ext/odbc/tests/
H A Dodbc_columnprivileges_001.phpt23 resource(%d) of type (odbc result)
25 resource(%d) of type (odbc result)
27 resource(%d) of type (odbc result)
H A Dodbc_columns_001.phpt23 resource(%d) of type (odbc result)
25 resource(%d) of type (odbc result)
27 resource(%d) of type (odbc result)
H A Dodbc_tables_001.phpt24 resource(%d) of type (odbc result)
26 resource(%d) of type (odbc result)
28 resource(%d) of type (odbc result)
/PHP-5.5/ext/openssl/tests/
H A D007.phpt37 resource(%d) of type (OpenSSL X.509)
38 resource(%d) of type (Unknown)
39 resource(%d) of type (OpenSSL X.509)
40 resource(%d) of type (Unknown)
47 resource(%d) of type (OpenSSL X.509)
48 resource(%d) of type (Unknown)
/PHP-5.5/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_simple_rpcenc_003w.phpt18 …aram SOAP-ENC:arrayType="xsd:int[2]" xsi:type="ns2:ArrayOfInt"><item xsi:type="xsd:int">34</item><…
20 …art5 SOAP-ENC:arrayType="xsd:int[2]" xsi:type="ns1:ArrayOfInt"><item xsi:type="xsd:int">34</item><…
/PHP-5.5/ext/soap/tests/
H A Dtypemap002.phpt18 <dotest2 xsi:type=\"xsd:string\">???</dotest2>
25 …i="http://www.w3.org/2001/XMLSchema-instance"><a xsi:type="xsd:string">'.$book->a.'!</a><b xsi:typ…
57 …ttp://www.w3.org/2001/XMLSchema-instance" xsi:type="ns1:book"><a xsi:type="xsd:string">foo!</a><b …

Completed in 35 milliseconds

12345678910>>...76