Home
last modified time | relevance | path

Searched refs:x (Results 126 – 150 of 997) sorted by relevance

12345678910>>...40

/PHP-5.3/ext/oci8/tests/
H A Dbug44206.phpt15 for ($x = 0; $x < 400; $x++)
17 $stmt = "select cursor (select $x from dual) a,
18 cursor (select $x from dual) b
23 echo "Exiting $x\n";
37 echo "Completed $x\n";
/PHP-5.3/ext/pcre/pcrelib/
H A Dpcre_maketables.c132 int x = 0; in pcre_maketables() local
133 if (i != CHAR_VT && isspace(i)) x += ctype_space; in pcre_maketables()
134 if (isalpha(i)) x += ctype_letter; in pcre_maketables()
135 if (isdigit(i)) x += ctype_digit; in pcre_maketables()
136 if (isxdigit(i)) x += ctype_xdigit; in pcre_maketables()
137 if (isalnum(i) || i == '_') x += ctype_word; in pcre_maketables()
144 if (strchr("\\*+?{^.$|()[", i) != 0) x += ctype_meta; in pcre_maketables()
145 *p++ = x; in pcre_maketables()
/PHP-5.3/ext/xmlwriter/tests/
H A Dbug41287.phpt13 xmlwriter_start_element_ns($xw, 'test', 'test', 'urn:x-test:');
15 xmlwriter_write_element_ns($xw, null, 'bar', 'urn:x-test:', '');
26 $xw->startElementNS('test', 'test', 'urn:x-test:');
28 $xw->writeElementNS(null, 'bar', 'urn:x-test:', '');
36 <test:test xmlns:test="urn:x-test:">
38 <bar xmlns="urn:x-test:"></bar>
43 <test:test xmlns:test="urn:x-test:">
45 <bar xmlns="urn:x-test:"></bar>
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-5.3/Zend/tests/
H A Dunset_cv10.phpt8 $x = "ok\n";
9 echo $x;
10 $a->offsetUnset('x');
11 echo $x;
17 Notice: Undefined variable: x in %sunset_cv10.php on line %d
H A Dbug34310.phpt2 Bug #34310 (foreach($arr as $c->d => $x) crashes)
16 foreach($arr as $x => $c->d)
18 echo "{$x} => {$c->d}\n";
22 foreach($arr as $c->d => $x)
24 echo "{$c->d} => {$x}\n";
H A Dindirect_reference_this.phpt6 function f($x){var_dump($$x);}
8 $x = new X;
9 $x->f("this");
H A Dobjects_021.phpt14 return x();
18 return x();
22 return x();
26 function x() {
30 x()
H A Dbug29883.phpt5 $x = "bug";
6 var_dump(isset($x[-1]));
7 var_dump(isset($x["1"]));
8 echo $x["1"]."\n";
H A Dbug35470.phpt5 $x = array("test", "55");
6 global ${$x[0]};
7 ${$x[0]} = $x[1];
H A Dbug50261.phpt7 function testClass($x) {
8 echo __METHOD__, " (". $x . ")\n";
14 static $x = 0;
16 if ($x) {
19 $x++;
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 Dunset_cv04.phpt6 $x = "ok\n";
7 echo $x;
9 echo $x;
16 Notice: Undefined variable: x in %sunset_cv04.php on line %d
/PHP-5.3/Zend/
H A Dzend_build.h22 #define ZEND_TOSTR_(x) #x argument
23 #define ZEND_TOSTR(x) ZEND_TOSTR_(x) argument
/PHP-5.3/ext/intl/collator/
H A Dcollator.c41 #define COLLATOR_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in collator_register_constants() argument
42 …define COLLATOR_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Collator_ce_ptr, ZEND_STRS… in collator_register_constants() argument
/PHP-5.3/ext/gd/tests/
H A Dbug49600.phpt17 $x = imagettftext($image, 32, 0, 0, 0, $color, $font, $c);
19 if ( abs($x[0] - $y[0]) > 1
20 || abs($x[2] - $y[2]) > 1
21 || abs($x[4] - $y[4]) > 1
22 || abs($x[6] - $y[6]) > 1 ) {
24 var_dump($x);
/PHP-5.3/ext/gd/libgd/
H A Dgd_gd.c168 int x, y; in gdImageCreateFromGdCtx() local
182 for (x = 0; x < sx; x++) { in gdImageCreateFromGdCtx()
187 im->tpixels[y][x] = pix; in gdImageCreateFromGdCtx()
192 for (x = 0; x < sx; x++) { in gdImageCreateFromGdCtx()
199 im->pixels[y][x] = ch; in gdImageCreateFromGdCtx()
249 int x, y; in _gdImageGd() local
254 for (x = 0; x < im->sx; x++) { in _gdImageGd()
257 gdPutInt(im->tpixels[y][x], out); in _gdImageGd()
259 gdPutC((unsigned char) im->pixels[y][x], out); in _gdImageGd()
H A Dgd_gd2.c254 int x, y, ylo, yhi, xlo, xhi; in gdImageCreateFromGd2Ctx() local
327 for (x = xlo; x < xhi; x++) { in gdImageCreateFromGd2Ctx()
330 im->tpixels[y][x] = 0; in gdImageCreateFromGd2Ctx()
337 im->pixels[y][x] = ch; in gdImageCreateFromGd2Ctx()
341 for (x = xlo; x < xhi; x++) { in gdImageCreateFromGd2Ctx()
558 for (x = xlo; x < xhi; x++) { in gdImageCreateFromGd2PartCtx()
582 …if ((x >= srcx) && (x < (srcx + w)) && (x < fsx) && (x >= 0) && (y >= srcy) && (y < (srcy + h)) &&… in gdImageCreateFromGd2PartCtx()
739 for (x = xlo; x < xhi; x++) { in _gdImageGd2()
752 for (x = xlo; x < xhi; x++) { in _gdImageGd2()
789 for (x = 0; x < chunkNum; x++) { in _gdImageGd2()
[all …]
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()
/PHP-5.3/ext/filter/tests/
H A D048.phpt25 $s = sprintf("%x", PHP_INT_MAX);
26 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
29 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
31 $s = sprintf("%x", ~0);
32 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
35 var_dump(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX)));
/PHP-5.3/ext/gmp/tests/
H A D002.phpt7 function fact($x) {
8 if($x <= 1)
11 return gmp_mul($x,fact($x-1));
/PHP-5.3/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-5.3/ext/standard/tests/strings/
H A Dbug27278.phpt12 $x="02";
13 var_dump($x);
14 foo($x);
15 var_dump($x);
/PHP-5.3/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-5.3/scripts/dev/
H A Dcheck_parameters.php118 foreach ($m as $x) {
120 if (!in_array($x[1], array('else', 'endif', 'return'))) // hack to skip reserved words
121 $ret[$x[4]] = array($x[1] . $x[2] . $x[3], $x[5]);
124 if ($x[6]) {
125 preg_match_all('/(\**)\s*(\w+(?:\[\s*\w*\s*\])?)\s*(=?)/S', $x[6], $y, PREG_SET_ORDER);
127 $ret[$z[2]] = array($x[1] . $z[1], $z[3]);
171 foreach ($m as $x) {
172 $name = $x[2];
184 $ret[] = array($name, $vars[$name][0] . ($x[1] ? '*' : ''), $vars[$name][1]);
188 if ($x[3]) {

Completed in 31 milliseconds

12345678910>>...40