Home
last modified time | relevance | path

Searched refs:x (Results 201 – 225 of 997) sorted by relevance

12345678910>>...40

/PHP-5.3/Zend/tests/
H A Dns_017.phpt7 function strlen($x) {
11 $x = "strlen";
12 echo $x("Hello"),"\n";
H A Dbug48428.phpt6 function x() { throw new Exception("ERROR"); }
7 x(x());
H A Dns_016.phpt7 function strlen($x) {
11 $x = "test\\ns1\\strlen";
12 echo $x("Hello"),"\n";
H A Dcall_user_func_005.phpt7 public static function __callstatic($x, $y) {
8 var_dump($x,$y);
13 return foo::x(function &($a=1,$b) { });
22 %string|unicode%(1) "x"
H A Dbug31177-2.phpt10 $x = new foo();
12 $y=$x->foo(1);
14 var_dump($x);
H A Dbug37144.phpt6 $x = new stdClass();
7 $x->bar = array(1);
8 return $x;
H A Dunset_cv09.phpt5 $x = "ok\n";
7 echo $x;
13 Notice: Undefined variable: x in %sunset_cv09.php on line %d
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dencode.c125 unsigned char x; in sqlite_encode_binary() local
153 x = in[i] - e; in sqlite_encode_binary()
154 if( x==0 || x==1 || x=='\''){ in sqlite_encode_binary()
156 x++; in sqlite_encode_binary()
158 out[j++] = x; in sqlite_encode_binary()
/PHP-5.3/ext/reflection/tests/
H A D024.phpt13 $x = new C1();
14 $x->z = 4;
15 $x->p3 = 5;
17 $obj = new ReflectionObject($x);
/PHP-5.3/ext/gd/libgd/
H A Dgd2time.c17 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h); in main()
46 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdparttopng.c15 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h); in main()
36 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdft.c635 x = pen_x + col;
638 if ((x > im->cx2) || (x < im->cx1)) {
689 x = pen_x + col;
692 if (x >= im->sx || x < 0) {
787 int xb = x, yb = y;
929 penf.x = 0;
941 penf.x = 0;
946 xb = x + x1;
1038 pen.x += delta.x;
1039 penf.x += delta.x;
[all …]
/PHP-5.3/ext/xmlrpc/tests/
H A Dbug50282.phpt8 class One { var $x = 10; }
18 ["x"]=>
29 <name>x</name>
41 ["x"]=>
/PHP-5.3/ext/spl/tests/
H A Dbug46051.phpt6 $x = new splfileinfo(__FILE__);
9 $x->openFile(NULL, NULL, NULL);
12 var_dump($x->getPathName());
/PHP-5.3/ext/gd/tests/
H A Dbug43073.phpt19 $x = 100;
24 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF');
27 $temp = $cos_t * $x + $sin_t * $y;
28 $y = $cos_t * $y - $sin_t * $x;
29 $x = $temp;
H A Dbug43073_1.phpt19 $x = 100;
24 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF');
27 $temp = $cos_t * $x + $sin_t * $y;
28 $y = $cos_t * $y - $sin_t * $x;
29 $x = $temp;
/PHP-5.3/ext/intl/tests/
H A Dlocale_get_script.phpt47 'de-CH-x-phonebk',
48 'az-Arab-x-AZE-derbend',
53 'x-whatever',
54 'qaa-Qaaa-QM-x-southern',
60 'zh-CN-a-myExt-x-private',
108 de-CH-x-phonebk: script=''
109 az-Arab-x-AZE-derbend: script='Arab'
112 x-whatever: script=''
113 qaa-Qaaa-QM-x-southern: script='Qaaa'
117 zh-CN-a-myExt-x-private: script=''
/PHP-5.3/ext/wddx/tests/
H A Dbug48562.phpt14 $a['x'] = 'foo';
15 $a['x'] = &$a;
19 $a['x'] = 'foo';
20 $a['x'] = $a;
/PHP-5.3/ext/pcre/tests/
H A Dmatch_flags2.phpt6 var_dump(preg_match('/x(.)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE));
9 var_dump(preg_match('/(.)x/', 'fjszxax', $match, PREG_OFFSET_CAPTURE, 4));
12 var_dump(preg_match('/(?P<capt1>.)(x)(?P<letsmix>\S+)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE));
77 string(1) "x"
/PHP-5.3/ext/soap/tests/
H A Dtransport001.phpt7 function Add($x,$y) {
8 return $x+$y;
29 $x = new LocalSoapClient(NULL,array('location'=>'test://',
31 var_dump($x->Add(3,4));
/PHP-5.3/ext/standard/tests/file/
H A D007_variation24.phpt2 Test fopen and fclose() functions - usage variations - "x+b" mode
17 /* Test fopen() and fclose(): Opening the file in "x+b" mode,
20 checking for the warning msg when trying to open an existing file in "x+b" mode,
27 echo "*** Test fopen() & fclose() functions: with 'x+b' mode ***\n";
28 $file_handle = fopen($file, "x+b"); //opening the non-existing file in "x+b" mode, file will be cr…
39 $file_handle = fopen($file, "x+b"); //Opening the existing data file in "x+b" mode to check for th…
46 *** Test fopen() & fclose() functions: with 'x+b' mode ***
H A D007_variation16.phpt2 Test fopen and fclose() functions - usage variations - "x+t" mode
17 /* Test fopen() and fclose(): Opening the file in "x+t" mode,
20 checking for the warning msg when trying to open an existing file in "x+t" mode,
27 echo "*** Test fopen() & fclose() functions: with 'x+t' mode ***\n";
28 $file_handle = fopen($file, "x+t"); //opening the non-existing file in "x+t" mode, file will be cr…
39 $file_handle = fopen($file, "x+t"); //Opening the existing data file in "x+t" mode to check for th…
46 *** Test fopen() & fclose() functions: with 'x+t' mode ***
H A Dfscanf_variation35.phpt34 $hexa_formats = array( "%x", "%hx", "%lx", "%Lx", " %x", "%x ", "% x", "\t%x", "\n%x", "%4x", "%30x
/PHP-5.3/ext/intl/dateformat/
H A Ddateformat.c40 #define DATEFORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in dateformat_register_constants() argument
41 …EFORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_… in dateformat_register_constants() argument
44 …ATTER_EXPOSE_UCAL_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_… in dateformat_register_constants() argument
/PHP-5.3/ext/hash/
H A Dhash_haval.c139 #define ROTR(x,n) (((x) >> (n)) | ((x) << (32 - (n)))) argument
147 php_hash_uint32 x[32]; in PHP_3HAVALTransform() local
150 Decode(x, block, 128); in PHP_3HAVALTransform()
157 …R(F1(E[M1[i]],E[M0[i]],E[M3[i]],E[M5[i]],E[M6[i]],E[M2[i]],E[M4[i]]),7) + ROTR(E[M7[i]],11) + x[i]; in PHP_3HAVALTransform()
172 memset((unsigned char*) x, 0, sizeof(x)); in PHP_3HAVALTransform()
181 php_hash_uint32 x[32]; in PHP_4HAVALTransform() local
184 Decode(x, block, 128); in PHP_4HAVALTransform()
209 memset((unsigned char*) x, 0, sizeof(x)); in PHP_4HAVALTransform()
218 php_hash_uint32 x[32]; in PHP_5HAVALTransform() local
221 Decode(x, block, 128); in PHP_5HAVALTransform()
[all …]

Completed in 41 milliseconds

12345678910>>...40