Home
last modified time | relevance | path

Searched refs:p (Results 226 – 250 of 668) sorted by relevance

12345678910>>...27

/PHP-5.3/ext/phar/tests/cache_list/files/
H A Dwrite11.phar2 $p = new Phar(__FILE__);
3 var_dump($p->getStub());
5 $p->setDefaultStub();
H A Dwrite9.phar2 $p = new Phar(__FILE__);
3 var_dump($p->getStub());
5 $p->setStub("<?php __HALT"."_COMPILER();");
H A Dwrite10.phar2 $p = new Phar(__FILE__);
3 var_dump($p->getStub());
6 $p->setStub($a);
H A Dwrite8.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getAlias());
11 $p->setAlias("hi");
H A Dwrite11.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getStub());
11 $p->setDefaultStub();
H A Dwrite9.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getStub());
11 $p->setStub("<?php __HALT"."_COMPILER();");
/PHP-5.3/ext/simplexml/tests/
H A Dbug46003.phpt9 <p>Test</p>
19 var_dump(isset($x->p));
20 var_dump(isset($x->p->o));
/PHP-5.3/ext/standard/tests/array/
H A Darray_chunk_variation23.phpt5 $array = array ("p" => 1, "q" => 2, "r" => 3, "s" => 4, "u" => 5, "v" => 6);
17 ["p"]=>
71 ["p"]=>
160 ["p"]=>
228 ["p"]=>
290 ["p"]=>
352 ["p"]=>
411 ["p"]=>
H A Darray_map_basic.phpt12 function multiply($p, $q) {
13 return ($p * $q);
16 function square($p) {
17 return ($p * $p);
/PHP-5.3/ext/intl/grapheme/
H A Dgrapheme_util.c462 UChar *p = haystack; in grapheme_memnstr_grapheme() local
469 while (p <= end) { in grapheme_memnstr_grapheme()
471 if ((p = u_memchr(p, *needle, (end-p+1))) && ne == p[needle_len-1]) { in grapheme_memnstr_grapheme()
490 if (p == NULL) { in grapheme_memnstr_grapheme()
494 p++; in grapheme_memnstr_grapheme()
572 unsigned char *p, *e; in grapheme_strrpos_ascii() local
575 p = haystack + offset; in grapheme_strrpos_ascii()
578 p = haystack; in grapheme_strrpos_ascii()
588 while (e >= p) { in grapheme_strrpos_ascii()
597 while (e >= p) { in grapheme_strrpos_ascii()
[all …]
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dqueue.c290 datanode *p; in Q_PushHead() local
293 if(p == NULL) in Q_PushHead()
341 node *p; in Q_PushTail() local
348 p = q->tail; in Q_PushTail()
435 datanode *p; in Q_PopTail() local
442 p = q->tail->prev; in Q_PopTail()
524 datanode *n, *p; in Q_Iter_Del() local
544 if(p) { in Q_Iter_Del()
545 p->next = n; in Q_Iter_Del()
548 if (p) { in Q_Iter_Del()
[all …]
H A Dbase64.h33 void _free_real(void *p, char *file, int line);
36 #define free(p) _free_real(p, __FILE__,__LINE__) argument
/PHP-5.3/ext/pcre/tests/
H A Dbug38600.phpt7 var_dump(preg_match('/(?<!\w)(0x[\p{N}]+[lL]?|[\p{Nd}]+(e[\p{Nd}]*)?[lLdDfF]?)(?!\w)/', $foo, $m));
/PHP-5.3/ext/phar/tests/
H A Dbug53872.phpt12 $p=new Phar('bug53872-phar.phar');
13 $p->buildFromDirectory(__DIR__ . "/bug53872/");
14 $p->setStub('<?php __HALT_COMPILER();?\>');
15 $p->compressFiles(Phar::GZ);
H A Dphar_offset_get_error.phpt17 $p = new Phar($fname);
18 $p[$iname] = "foobar\n";
22 $p[$ename] = "foobar\n";
33 $p['.phar/oops'] = 'hi';
38 $a = $p['.phar/stub.php'];
/PHP-5.3/ext/zip/lib/
H A Dzip_name_locate.c55 const char *fn, *p; in _zip_name_locate() local
85 p = strrchr(fn, '/'); in _zip_name_locate()
86 if (p) in _zip_name_locate()
87 fn = p+1; in _zip_name_locate()
/PHP-5.3/ext/dom/tests/
H A Dbug47430.phpt8 version="1.0"?><html><p><i>Hello</i></p><p><i>World!</i></p></html>';
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c676 (*p)++; in mysqlnd_stmt_execute_store_params()
730 *p+= 2; in mysqlnd_stmt_execute_store_params()
863 (*p) += 8; in mysqlnd_stmt_execute_store_params()
871 (*p) += 8; in mysqlnd_stmt_execute_store_params()
879 (*p) += 4; in mysqlnd_stmt_execute_store_params()
886 *p = php_mysqlnd_net_store_length(*p, 0); in mysqlnd_stmt_execute_store_params()
894 *p = php_mysqlnd_net_store_length(*p, len); in mysqlnd_stmt_execute_store_params()
896 (*p) += len; in mysqlnd_stmt_execute_store_params()
936 p += 4; in mysqlnd_stmt_execute_generate_request()
940 p++; in mysqlnd_stmt_execute_generate_request()
[all …]
/PHP-5.3/main/
H A Dphp_variables.c99 for (p = var; *p; p++) { in php_register_variable_ex()
100 if (*p == ' ' || *p == '.') { in php_register_variable_ex()
101 *p='_'; in php_register_variable_ex()
104 ip = p; in php_register_variable_ex()
105 *p = 0; in php_register_variable_ex()
289 s = p + 1; in SAPI_POST_HANDLER_FUNC()
292 p = e; in SAPI_POST_HANDLER_FUNC()
682 char *p; in php_hash_environment() local
707 for (p=PG(variables_order); p && *p; p++) { in php_hash_environment()
870 char *p; in php_auto_globals_create_request() local
[all …]
/PHP-5.3/Zend/
H A Dzend_execute_API.c484 #define IS_CONSTANT_VISITED(p) (Z_TYPE_P(p) & IS_VISITED_CONSTANT) argument
485 #define Z_REAL_TYPE_P(p) (Z_TYPE_P(p) & ~IS_VISITED_CONSTANT) argument
486 #define MARK_CONSTANT_VISITED(p) Z_TYPE_P(p) |= IS_VISITED_CONSTANT argument
493 *value = **p; in zval_deep_copy()
498 *p = value; in zval_deep_copy()
503 zval *p = *pp; in zval_update_constant_ex() local
515 p = *pp; in zval_update_constant_ex()
522 …if (!zend_get_constant_ex(p->value.str.val, p->value.str.len, &const_value, scope, Z_REAL_TYPE_P(p in zval_update_constant_ex()
527 Z_STRLEN_P(p) -= ((colon - Z_STRVAL_P(p)) + 1); in zval_update_constant_ex()
549 memmove(Z_STRVAL_P(p), Z_STRVAL_P(p)+1, Z_STRLEN_P(p)); in zval_update_constant_ex()
[all …]
/PHP-5.3/ext/reflection/tests/
H A Dparameters_002.phpt40 foreach($r->getParameters() as $p)
44 check_params_func($p, 'getName');
45 check_params_func($p, 'isPassedByReference');
48 check_params_decl_class($p, 'getClass');
54 check_params_decl_class($p, 'getDeclaringClass');
56 check_params_func($p, 'isArray');
57 check_params_func($p, 'allowsNull');
58 check_params_func($p, 'isOptional');
59 check_params_func($p, 'isDefaultValueAvailable');
60 if ($p->isOptional())
[all …]
/PHP-5.3/ext/mbstring/libmbfl/tests/conv_encoding.tests/
H A Dgen_exp.c410 char *p = buf; in main() local
424 if (*p == '\0' || *p == '#' || *p == 0x0a) { in main()
427 } else if (*p != ' ' && *p != '\t') { in main()
430 ++p; in main()
436 q = p; in main()
439 if (*p == '\0' || *p == '#' || *p == 0x0a) { in main()
442 } else if (*p == ' ' || *p == '\t') { in main()
445 ++p; in main()
448 *p = '\0'; in main()
453 ++p; in main()
/PHP-5.3/ext/standard/
H A Darray.c1871 for (pos = 0, p = in_hash->pListHead; pos < offset && p ; pos++, p = p->pListNext) { in php_splice()
1910 for ( ; p ; p = p->pListNext) { in php_splice()
2007 p = p->pListNext; in _phpi_pop()
2102 for (p = Z_ARRVAL_P(repl_array)->pListHead, i = 0; p; p = p->pListNext, i++) { in PHP_FUNCTION()
2798 for (i = 0, p = Z_ARRVAL_P(array)->pListHead; p; i++, p = p->pListNext) { in PHP_FUNCTION()
2941 for (p = Z_ARRVAL_PP(args[0])->pListHead; p != NULL; p = p->pListNext) { in php_array_intersect_key()
3114 for (p = hash->pListHead; p; p = p->pListNext) { in php_array_intersect()
3359 for (p = Z_ARRVAL_PP(args[0])->pListHead; p != NULL; p = p->pListNext) { in php_array_diff_key()
3531 for (p = hash->pListHead; p; p = p->pListNext) { in php_array_diff()
3889 for (p = Z_ARRVAL_PP(arrays[i])->pListHead; p; p = p->pListNext, k++) { in PHP_FUNCTION()
[all …]
H A Dmail.c67 p = str; \
68 e = p + len; \
69 while ((p = memchr(p, '\0', (e - p)))) { \
70 *p = ' '; \
107 char *p, *e; in PHP_FUNCTION() local
230 char *p = tmp; in php_mail() local
231 while ((p = strpbrk(p, "\r\n"))) { in php_mail()
232 *p = ' '; in php_mail()
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_query_stored_proc.phpt20 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
26 if (mysqli_multi_query($link, 'CALL p()')) {
39 if (mysqli_multi_query($link, 'CALL p()')) {
52 if (mysqli_multi_query($link, 'CALL p()')) {
71 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
77 if (mysqli_multi_query($link, 'CALL p()')) {
94 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
99 if (!mysqli_query($link, 'CALL p(@version)'))
105 if (!mysqli_query($link, 'CALL p(@version)'))
122 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
[all …]

Completed in 89 milliseconds

12345678910>>...27