Home
last modified time | relevance | path

Searched refs:prefix (Results 151 – 175 of 384) sorted by relevance

12345678910>>...16

/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp1256_to_utf8_2.phpt24 $prefix = create_data("dir_cp1256", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp932_to_utf8_1.phpt24 $prefix = create_data("dir_cp932", "{$item}42");
25 $path = $prefix . DIRECTORY_SEPARATOR . "{$item}42";
H A Dtest_eucjp_to_utf8_2.phpt24 $prefix = create_data("dir_eucjp", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_kartuli_utf8_2.phpt24 $prefix = create_data("dir_kartuli", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_big5_to_utf8_2.phpt24 $prefix = create_data("file_big5", $item . "25");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}25";
H A Dtest_cp1250_to_utf8_2.phpt24 $prefix = create_data("dir_cp1250", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp1251_2.phpt27 $prefix = create_data("file_cp1251", $item . "7", 1251);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}7";
H A Dtest_cp1251_to_utf8_2.phpt24 $prefix = create_data("file_cp1251", $item . "7");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}7";
H A Dtest_cp1254_1.phpt27 $prefix = create_data("dir_cp1254", "{$item}42", 1254);
28 $path = $prefix . DIRECTORY_SEPARATOR . "{$item}42";
H A Dtest_cp1254_to_utf8_2.phpt24 $prefix = create_data("dir_cp1254", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp1256_2.phpt27 $prefix = create_data("dir_cp1256", "{$item}42}", 1256);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp936_to_utf8_2.phpt24 $prefix = create_data("file_cp936", $item . "25");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}25";
H A Dtest_big5_2.phpt27 $prefix = create_data("file_big5", $item . "25", 950);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}25";
H A Dtest_cp1251_zend_multibyte_2.phpt29 $prefix = create_data("file_cp1251", $item);
30 $fn = $prefix . DIRECTORY_SEPARATOR . $item;
H A Dtest_cp1252_to_utf8_2.phpt24 $prefix = create_data("dir_cp1252", "{$item}3");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}7";
H A Dtest_cp1252_to_utf8_5.phpt24 $prefix = create_data("dir2_cp1252", "{$item}3");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}7";
H A Dtest_cp1254_2.phpt27 $prefix = create_data("dir_cp1254", "{$item}42}", 1254);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp932_to_utf8_2.phpt24 $prefix = create_data("dir_cp932", "{$item}42}");
25 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}33";
H A Dtest_cp936_2.phpt27 $prefix = create_data("file_cp936", $item . "25", 936);
28 $fn = $prefix . DIRECTORY_SEPARATOR . "{$item}25";
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dnode.c142 const lxb_ns_prefix_data_t *prefix; in lxb_dom_node_interface_copy() local
152 dst->prefix = src->prefix; in lxb_dom_node_interface_copy()
224 if (src->prefix < LXB_NS__LAST_ENTRY) { in lxb_dom_node_interface_copy()
225 dst->prefix = src->prefix; in lxb_dom_node_interface_copy()
228 prefix = lxb_ns_prefix_data_by_id(from->prefix, src->prefix); in lxb_dom_node_interface_copy()
229 if (prefix == NULL) { in lxb_dom_node_interface_copy()
233 entry = &prefix->entry; in lxb_dom_node_interface_copy()
235 prefix = lxb_ns_prefix_append(to->prefix, lexbor_hash_entry_str(entry), in lxb_dom_node_interface_copy()
237 if (prefix == NULL) { in lxb_dom_node_interface_copy()
241 dst->prefix = (lxb_ns_prefix_id_t) prefix; in lxb_dom_node_interface_copy()
[all …]
H A Delement.c120 const lxb_char_t *prefix, size_t prefix_len, in lxb_dom_element_qualified_name_set() argument
126 if (prefix != NULL && prefix_len != 0) { in lxb_dom_element_qualified_name_set()
132 memcpy(key, prefix, prefix_len); in lxb_dom_element_qualified_name_set()
161 const lxb_char_t *prefix, size_t prefix_len, in lxb_dom_element_create() argument
201 if (prefix != NULL) { in lxb_dom_element_create()
202 ns_prefix = lxb_ns_prefix_append(document->prefix, prefix, prefix_len); in lxb_dom_element_create()
207 element->node.prefix = ns_prefix->prefix_id; in lxb_dom_element_create()
209 status = lxb_dom_element_qualified_name_set(element, prefix, prefix_len, in lxb_dom_element_create()
748 if (element->node.prefix == LXB_NS__UNDEF) { in lxb_dom_element_prefix()
753 element->node.prefix); in lxb_dom_element_prefix()
/php-src/ext/mbstring/tests/
H A Dencoding_tests.inc220 $varLength = function($prefix) use($valid, $prefixes, &$invalid, &$truncated, &$varLength) {
222 $str = $prefix . chr($byte);
234 …$fixedLength = function($prefix, $remaining) use($valid, $prefixes, &$invalid, &$truncated, &$fixe…
236 if (!isset($valid[$prefix]))
237 $invalid[$prefix] = true;
239 $truncated[$prefix] = true;
241 $str = $prefix . chr($i);
246 $truncated[$prefix] = true;
248 $fixedLength($prefix . chr($i), $remaining - 1);
/php-src/tests/lang/integer_literals/
H A Doctal_64bit.phpt9 /* Using octal prefix notation lowercase */
41 /* Using octal prefix notation uppercase */
73 /* Using no dedicated prefix */
/php-src/ext/dom/tests/
H A Dbug80927.phpt17 var_dump($a->prefix);
43 var_dump($a->prefix);
58 var_dump($foobar2->prefix);
/php-src/sapi/fpm/tests/
H A Dlog-suppress-output.phpt83 $prefix = __DIR__;
85 $tester->start(['--prefix', $prefix]);
115 $tester->expectNoFile(FPM\Tester::FILE_EXT_PID, $prefix);

Completed in 45 milliseconds

12345678910>>...16