Home
last modified time | relevance | path

Searched refs:arg2 (Results 26 – 50 of 140) sorted by relevance

123456

/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_basic6.phpt18 $arg2 = 2e3;
28 var_dump( sprintf($format2, $arg1, $arg2) );
31 var_dump( sprintf($format3, $arg1, $arg2, $arg3) );
H A Dsprintf_basic7.phpt25 $arg2 = -1234567;
35 var_dump( sprintf($format2, $arg1, $arg2) );
38 var_dump( sprintf($format3, $arg1, $arg2, $arg3) );
H A Dsprintf_basic7_64bit.phpt21 $arg2 = -1234567;
31 var_dump( sprintf($format2, $arg1, $arg2) );
34 var_dump( sprintf($format3, $arg1, $arg2, $arg3) );
H A Dsprintf_basic8.phpt24 $arg2 = -0347;
34 var_dump( sprintf($format2, $arg1, $arg2) );
37 var_dump( sprintf($format3, $arg1, $arg2, $arg3) );
H A Dsprintf_basic8_64bit.phpt20 $arg2 = -0347;
30 var_dump( sprintf($format2, $arg1, $arg2) );
33 var_dump( sprintf($format3, $arg1, $arg2, $arg3) );
H A Dvprintf_basic3.phpt23 $arg2 = array(11.11,22.22);
34 $result = vprintf($format2,$arg2);
38 $result = vprintf($format22,$arg2);
H A Dvprintf_basic9.phpt23 $arg2 = array(11,132);
33 $result = vprintf($format2,$arg2);
36 $result = vprintf($format22,$arg2);
H A Dvfprintf_basic3.phpt23 $arg2 = array(11.11,22.22);
37 vfprintf($fp,$format2,$arg2);
40 vfprintf($fp,$format22,$arg2);
H A Dprintf_basic2.phpt19 $arg2 = 222;
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic4.phpt19 $arg2 = FALSE;
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic5.phpt19 $arg2 = 66;
33 $result = printf($format2, $arg1, $arg2);
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic6.phpt18 $arg2 = 2e3;
32 $result = printf($format2, $arg1, $arg2);
37 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dvfprintf_basic9.phpt23 $arg2 = array(11,132);
36 vfprintf($fp, $format2, $arg2);
38 vfprintf($fp, $format22, $arg2);
H A Dprintf_basic8.phpt24 $arg2 = -0347;
38 $result = printf($format2, $arg1, $arg2);
43 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic7.phpt25 $arg2 = -1234567;
39 $result = printf($format2, $arg1, $arg2);
44 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dvsprintf_basic8.phpt18 $arg2 = array(021,0347);
22 var_dump( vsprintf($format2,$arg2) );
H A Dvsprintf_basic2.phpt22 $arg2 = array(111,222);
26 var_dump( vsprintf($format2,$arg2) );
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeARM_T2_32.c527 reg = (flags & ARG2_IMM) ? arg1 : arg2; in emit_op_imm()
528 imm = (flags & ARG2_IMM) ? arg2 : arg1; in emit_op_imm()
668 FAIL_IF(load_immediate(compiler, TMP_REG2, arg2)); in emit_op_imm()
669 arg2 = TMP_REG2; in emit_op_imm()
688 if (dst == arg2) in emit_op_imm()
694 if (IS_2_LO_REGS(dst, arg2)) in emit_op_imm()
700 if (IS_2_LO_REGS(dst, arg2)) in emit_op_imm()
706 if (IS_2_LO_REGS(dst, arg2)) in emit_op_imm()
712 if (IS_2_LO_REGS(dst, arg2)) in emit_op_imm()
722 FAIL_IF(push_inst32(compiler, CLZ | RN4(arg2) | RD4(dst) | RM4(arg2))); in emit_op_imm()
[all …]
/PHP-5.5/ext/soap/tests/interop/Round4/GroupI/
H A Dr4_groupI_xsd_012w.phpt10 $client->echoStringMultiOccurs(array("inputStringMultiOccurs"=>array("arg1","arg2","arg3")));
18 …curs><ns1:inputStringMultiOccurs><ns1:string>arg1</ns1:string><ns1:string>arg2</ns1:string><ns1:st…
20 …s1:echoStringMultiOccursResponse><ns1:return>arg1</ns1:return><ns1:return>arg2</ns1:return><ns1:re…
/PHP-5.5/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_simple_doclit_013w.phpt12 "param2" => "arg2"));
20 …ns1:whichFault>2</ns1:whichFault><ns1:param1>arg1</ns1:param1><ns1:param2>arg2</ns1:param2></ns1:e…
22 … response to 'echoMultipleFaults3'.</faultstring><detail><ns1:String2Part>arg2</ns1:String2Part></…
/PHP-5.5/ext/pgsql/tests/
H A D22pg_fetch_object.phpt12 function __construct($arg1, $arg2) {
13 echo __METHOD__ . "($arg1,$arg2)\n";
/PHP-5.5/tests/classes/
H A Dmethod_override_optional_arg_001.phpt14 function foo($arg1 = 2, $arg2 = 3) {
16 var_dump($arg2);
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_invoke_basic.phpt54 var_dump($methodWithArgs->invoke($testClassInstance, 1, "arg2"));
55 var_dump($methodWithArgs->invoke($testClassInstance, 1, "arg2", 3));
87 Called methodWithArgs(1, arg2)
89 Called methodWithArgs(1, arg2)
/PHP-5.5/ext/standard/tests/file/
H A Duserstreams_006.phpt16 function stream_set_option($option, $arg1, $arg2) {
17 echo "option: ", $option, ", ", $arg1, ", ", $arg2, "\n";
/PHP-5.5/ext/intl/locale/
H A Dlocale_class.c47 ZEND_ARG_INFO( 0, arg2 )
52 ZEND_ARG_INFO( 0, arg2 )
58 ZEND_ARG_INFO( 0, arg2 )

Completed in 96 milliseconds

123456