Home
last modified time | relevance | path

Searched refs:x (Results 226 – 250 of 1349) sorted by relevance

12345678910>>...54

/PHP-7.1/ext/gd/libgd/
H A Dgd_color.c20 int x,y; in gdImageColorMatch() local
39 for (x=0; x<im1->sx; x++) { in gdImageColorMatch()
41 color = im2->pixels[y][x]; in gdImageColorMatch()
42 rgb = im1->tpixels[y][x]; in gdImageColorMatch()
H A Dgd_gd2.c271 int x, y, ylo, yhi, xlo, xhi; in gdImageCreateFromGd2Ctx() local
344 for (x = xlo; x < xhi; x++) { in gdImageCreateFromGd2Ctx()
358 im->pixels[y][x] = ch; in gdImageCreateFromGd2Ctx()
362 for (x = xlo; x < xhi; x++) { in gdImageCreateFromGd2Ctx()
437 int x, y, ylo, yhi, xlo, xhi; in gdImageCreateFromGd2PartCtx() local
579 for (x = xlo; x < xhi; x++) { in gdImageCreateFromGd2PartCtx()
603 …if ((x >= srcx) && (x < (srcx + w)) && (x < fsx) && (x >= 0) && (y >= srcy) && (y < (srcy + h)) &&… in gdImageCreateFromGd2PartCtx()
760 for (x = xlo; x < xhi; x++) { in _gdImageGd2()
773 for (x = xlo; x < xhi; x++) { in _gdImageGd2()
810 for (x = 0; x < chunkNum; x++) { in _gdImageGd2()
[all …]
/PHP-7.1/ext/gmp/tests/
H A D002.phpt7 function fact($x) {
8 if($x <= 1)
11 return gmp_mul($x,fact($x-1));
/PHP-7.1/ext/intl/tests/
H A Dspoofchecker_003.phpt10 $x = new Spoofchecker();
13 $x->setAllowedLocales('en_US');
14 var_dump($x->isSuspicious($korean));
18 $x->setAllowedLocales('en_US, ko_KR');
19 var_dump($x->isSuspicious($korean));
/PHP-7.1/ext/fileinfo/tests/
H A Dmagic465 >>>0x08 ulelong x (0x%x)
2792 >>4 ubyte x id=0x%x
3814 >32 leshort x Version:0x%x
3819 >32 leshort x Version:0x%x
3824 >32 leshort x Version:0x%x
5467 >>>0 ubyte x (0x%x)
7654 >>4 ubyte x : ID=0x%x
8495 >32 lelong x CRC 0x%x,
14452 >>>>&0 leshort x 0x%x
14466 >>>>&0 leshort x 0x%x)
[all …]
H A Dmagic私はガラスを食べられます465 >>>0x08 ulelong x (0x%x)
2792 >>4 ubyte x id=0x%x
3814 >32 leshort x Version:0x%x
3819 >32 leshort x Version:0x%x
3824 >32 leshort x Version:0x%x
5467 >>>0 ubyte x (0x%x)
7654 >>4 ubyte x : ID=0x%x
8495 >32 lelong x CRC 0x%x,
14452 >>>>&0 leshort x 0x%x
14466 >>>>&0 leshort x 0x%x)
[all …]
/PHP-7.1/ext/standard/tests/strings/
H A Dbug27278.phpt12 $x="02";
13 var_dump($x);
14 foo($x);
15 var_dump($x);
/PHP-7.1/Zend/tests/
H A Dunset_cv03.phpt5 $x = "ok\n";
6 echo $x;
8 echo $x;
13 Notice: Undefined variable: x in %sunset_cv03.php on line %d
H A Dtemporary_cleaning_001.phpt11 $x = 2;
13 while ($x-- && new stdClass) {
14 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
H A Dunset_cv04.phpt6 $x = "ok\n";
7 echo $x;
9 echo $x;
16 Notice: Undefined variable: x in %sunset_cv04.php on line %d
H A Dbug46106.phpt11 function test($x) {
14 $x->invokeArgs(array(0));
17 $x = new ReflectionFunction('str_pad');
18 test($x);
H A Dunset_cv11.phpt5 $x = array("default"=>"ok");
6 var_dump($x);
7 $cf = $x;
9 var_dump($x);
/PHP-7.1/ext/openssl/tests/
H A Dopenssl_spki_export_basic.phpt44 return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', mt_rand(0, 0xffff),
/PHP-7.1/ext/soap/tests/bugs/
H A Dbug32776.phpt12 function test($x) {
14 $d = $x;
35 $x = new LocalSoapClient(dirname(__FILE__)."/bug32776.wsdl",array("trace"=>true,"exceptions"=>false…
36 var_dump($x->test("Hello"));
38 var_dump($x->__getLastRequest());
39 var_dump($x->__getLastResponse());
46 ….xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><SOAP-ENV:test><x xsi:type="xsd:string">Hello</x></SOA…
/PHP-7.1/ext/xmlwriter/tests/
H A Dbug41326.phpt29 $xw->startElementNS('test', 'test', 'urn:x-test:');
31 $xw->writeElementNS(null, 'bar', 'urn:x-test:', '');
32 $xw->writeElementNS(null, 'bar', 'urn:x-test:', NULL);
33 $xw->writeElementNS(null, 'bar', 'urn:x-test:');
50 <test:test xmlns:test="urn:x-test:">
52 <bar xmlns="urn:x-test:"></bar>
53 <bar xmlns="urn:x-test:"/>
54 <bar xmlns="urn:x-test:"/>
/PHP-7.1/ext/reflection/tests/
H A DReflectionMethod_getDocComment_property_list.phpt14 $x = "x",
21 $reflection = new ReflectionProperty('\X', 'x');
22 echo 'X::x', PHP_EOL;
34 X::x
/PHP-7.1/ext/simplexml/tests/
H A Dbug45553.phpt14 $x = simplexml_load_string($xml);
15 $x->registerXPathNamespace("a", "http://a");
17 $atts = $x->xpath("/xml/data/@a:label");
19 $atts = $x->xpath("/xml/a:data");
21 $atts = $x->xpath("/xml/a:data/@a:label");
23 $atts = $x->xpath("/xml/a:data/@label");
25 $atts = $x->xpath("/xml/data/@label");
/PHP-7.1/ext/pdo_sqlite/tests/
H A Ddebugdumpparams_001.phpt12 $x= $db->prepare('select :a, :b, ?');
13 $x->bindValue(':a', 1, PDO::PARAM_INT);
14 $x->bindValue(':b', 'foo');
15 $x->bindValue(3, 1313);
16 var_dump($x->debugDumpParams());
/PHP-7.1/ext/json/tests/
H A D008.phpt8 $x = json_decode($json);
9 var_dump($x->largenum);
10 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
11 var_dump($x->largenum);
/PHP-7.1/ext/dom/tests/
H A Ddom007.phpt53 for($x=0; $x < $length; $x++) {
54 …echo "Index $x: ".$nots->item($x)->nodeName." (".$nots->item($x)->systemId.") (".$nots->item($x)->…
78 for($x=0; $x < $length; $x++) {
79 $xkeys[] = "Index: ".$ents->item($x)->nodeName."\n";
/PHP-7.1/ext/tidy/tests/
H A D028.phpt7 $x = tidy_parse_string("<body><div>Content</div></body>");
8 var_dump($x->body()->child[0]->name);
9 var_dump($x->body()->child[0]->getParent()->name);
10 var_dump($x->root()->getParent());
/PHP-7.1/ext/session/tests/
H A Dsessionhandler_open_001.phpt9 $x = new SessionHandler;
10 $x->open('','');
11 $x->open('','');
12 $x->open('','');
13 $x->open('','');
/PHP-7.1/ext/phar/tests/
H A Drename_dir.phpt18 $files['a/x'] = 'a';
22 echo file_get_contents($pname . '/a/x') . "\n";
24 echo file_get_contents($pname . '/b/x') . "\n";
25 echo file_get_contents($pname . '/a/x') . "\n";
33 …ning: file_get_contents(phar://%srename_dir.phar.php/a/x): failed to open stream: phar error: "a/x
/PHP-7.1/ext/phar/tests/zip/
H A Drename_dir.phpt18 $phar['a/x'] = 'a';
23 echo file_get_contents($alias . '/a/x') . "\n";
25 echo file_get_contents($alias . '/b/x') . "\n";
26 echo file_get_contents($alias . '/a/x') . "\n";
34 …ning: file_get_contents(phar://%srename_dir.phar.zip/a/x): failed to open stream: phar error: "a/x
/PHP-7.1/ext/spl/tests/
H A DarrayObject_asort_basic2.phpt14 public $prop1 = 'x';
17 public $prop4 = 'x';
35 string(1) "x"
37 string(1) "x"
46 string(1) "x"
48 string(1) "x"

Completed in 138 milliseconds

12345678910>>...54