/php-src/ext/standard/tests/http/http_build_query/ |
H A D | http_build_query_variation1.phpt | 11 protected $sort = 'desc,name'; 18 $obj->sort = 'desc,name'; 24 name=homepage&page=1&sort=desc%2Cname
|
H A D | http_build_query_variation3.phpt | 9 "sort" => "desc,admin", 17 name=main+page&sort=desc%2Cadmin&equation=10+%2B+10+-+5 18 name=main%20page&sort=desc%2Cadmin&equation=10%20%2B%2010%20-%205
|
H A D | http_build_query_variation2.phpt | 18 "desc", 33 0=20&5=13&9%5B1%5D=val1&9%5B3%5D=val2&9%5Bstring%5D=string&name=homepage&page=10&sort%5B0%5D=desc&s… 34 …5B3%5D=val2&prefix_9%5Bstring%5D=string&name=homepage&page=10&sort%5B0%5D=desc&sort%5Badmin%5D%5B0…
|
/php-src/ext/standard/tests/assert/ |
H A D | assert03.phpt | 11 function a($file, $line, $unused, $desc) 13 echo "assertion failed - a - $line,\"$desc\"\n"; 16 function b($file, $line, $unused, $desc) 18 echo "assertion failed - b - $line,\"$desc\"\n";
|
H A D | assert.phpt | 11 function a($file, $line, $unused, $desc) 13 echo "assertion failed $line,\"$desc\"\n"; 18 static function assert($file, $line, $unused, $desc) 20 echo "class assertion failed $line,\"$desc\"\n";
|
/php-src/ext/standard/ |
H A D | proc_open.c | 777 if (desc->childend == NULL) { in set_proc_descriptor_to_blackhole() 783 if (desc->childend < 0) { in set_proc_descriptor_to_blackhole() 809 desc->mode_flags = O_RDWR; in set_proc_descriptor_to_pty() 842 desc->parentend = newpipe[1]; in set_proc_descriptor_to_pipe() 843 desc->childend = newpipe[0]; in set_proc_descriptor_to_pipe() 844 desc->mode_flags = O_WRONLY; in set_proc_descriptor_to_pipe() 846 desc->parentend = newpipe[0]; in set_proc_descriptor_to_pipe() 847 desc->childend = newpipe[1]; in set_proc_descriptor_to_pipe() 848 desc->mode_flags = O_RDONLY; in set_proc_descriptor_to_pipe() 851 desc->parentend = make_descriptor_cloexec(desc->parentend); in set_proc_descriptor_to_pipe() [all …]
|
/php-src/ext/com_dotnet/tests/ |
H A D | variant_variation.phpt | 12 foreach ($arrays as $desc => $array) { 13 echo "-- $desc --\n";
|
/php-src/ext/pdo/ |
H A D | pdo_sqlstate.c | 29 const char *desc; member 326 return info->desc; in pdo_sqlstate_state_to_description()
|
/php-src/win32/ |
H A D | cp_enc_map_gen.c | 9 char *desc; member 213 while (cur->desc != NULL) { in main()
|
/php-src/sapi/cli/tests/ |
H A D | bug74600.phpt | 17 $desc = array( 23 $proc = proc_open("$php -c $ini_file_escaped -r 'echo \"okey\";'", $desc, $pipes);
|
H A D | 023.phpt | 25 $desc = array( 31 $proc = proc_open("$php -c $ini_file_escaped -r 'echo ini_get(\"memory_limit\");'", $desc, $pipes);
|
H A D | 022.phpt | 21 $desc = array( 27 $proc = proc_open("$php -n " . escapeshellarg($test_file), $desc, $pipes);
|
/php-src/ext/gd/tests/ |
H A D | bug79676.phpt | 7 function test($image, $desc) 9 echo "$desc - Test Result: ",
|
/php-src/ext/fileinfo/libmagic/ |
H A D | softmagic.c | 166 if (strchr(desc, '%') == NULL) in file_fmtcheck() 167 return desc; in file_fmtcheck() 169 ptr = fmtcheck(desc, def); in file_fmtcheck() 312 if (*m->desc) { in match() 421 if (*m->desc) { in match() 424 if (print && *m->desc) { in match() 598 const char *desc; in mprint() local 602 desc = m->desc; in mprint() 604 desc = ebuf; in mprint() 739 switch (check_fmt(ms, desc)) { in mprint() [all …]
|
H A D | apprentice.c | 1022 if (m->desc[0] == '\0') { in file_magic_strength() 1032 if (m[i].desc[0] != '\0') in file_magic_strength() 1066 if (m->desc[0] == '\0') in file_magic_strength() 1120 && *ml->magic[mi].desc) in apprentice_list() 1130 ml->magic[descindex].desc, in apprentice_list() 1373 me[i].mp->desc[0] ? me[i].mp->desc : "(no description)", in set_text_binary() 2350 for (i = 0; (m->desc[i++] = *l++) != '\0' && i < sizeof(m->desc); ) in parse() 2352 if (i == sizeof(m->desc)) { in parse() 2353 m->desc[sizeof(m->desc) - 1] = '\0'; in parse() 2463 if (*m->desc == '\0') { in parse_extra() [all …]
|
/php-src/ext/standard/tests/file/ |
H A D | bug72035.phpt | 23 $desc = array(0 => array("pipe", "r")); 24 $proc = proc_open($cmd, $desc, $pipes, getcwd(), array());
|
/php-src/ext/mbstring/tests/ |
H A D | mb_decode_numericentity_large_ints.phpt | 17 function test($desc, $str, $expected, $convmap, $encoding) { 19 echo $desc, ": ", varDumpToString($str), " => ", varDumpToString($result); 26 function testNonAscii($desc, $str, $expected, $convmap, $encoding) { 28 echo $desc, ": ", bin2hex($str), " => ", bin2hex($result);
|
/php-src/ext/standard/tests/array/ |
H A D | array_product_variation1.phpt | 16 foreach ($types as $desc => $type) { 17 echo $desc, "\n";
|
/php-src/sapi/phpdbg/ |
H A D | create-test.php | 100 $desc = trim(fgets(STDIN)); variable 120 $desc
|
/php-src/ext/standard/tests/general_functions/ |
H A D | array_is_list.phpt | 6 function test_is_list(string $desc, $val) : void { 8 printf("%s: %s\n", $desc, json_encode(array_is_list($val))); 10 printf("%s: threw %s\n", $desc, $e->getMessage());
|
/php-src/ext/ldap/tests/ |
H A D | ldap_controls.phpt | 28 ldap_modify($link, "o=test,$base", ['description' => 'desc'], 42 …oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(description=desc)']]]) 105 string(4) "desc" 128 string(4) "desc"
|
/php-src/ext/xml/tests/ |
H A D | bug26614.inc | 65 foreach ($xmls as $desc => $xml) { 66 echo "$desc\n";
|
/php-src/ext/enchant/ |
H A D | enchant.c | 107 const char * const desc, in ZEND_GET_MODULE() 117 add_assoc_string(&tmp_array, "desc", (char *)desc); in ZEND_GET_MODULE() 126 const char * const desc, in describe_dict_fn() argument 134 add_assoc_string(zdesc, "desc", (char *)desc); in describe_dict_fn() 224 const char * const desc, in __enumerate_providers_fn() argument 228 php_info_print_table_row(3, name, desc, file); in __enumerate_providers_fn()
|
/php-src/ext/enchant/tests/ |
H A D | broker_describe.phpt | 36 …if ((isset($provider[$counter]['name']) && isset($provider[$counter]['desc']) && isset($provider[$…
|
/php-src/ext/com_dotnet/ |
H A D | com_com.c | 343 char *desc = NULL, *msg = NULL; in php_com_invoke_helper() local 378 desc = php_win32_error_to_msg(hr); in php_com_invoke_helper() 379 spprintf(&msg, 0, "Parameter %d: %s", arg_err, desc); in php_com_invoke_helper() 380 php_win32_error_msg_free(desc); in php_com_invoke_helper() 394 desc = php_win32_error_to_msg(hr); in php_com_invoke_helper() 395 spprintf(&msg, 0, "Error [0x%08lx] %s", hr, desc); in php_com_invoke_helper() 396 php_win32_error_msg_free(desc); in php_com_invoke_helper()
|