Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 245) sorted by relevance

12345678910

/PHP-7.2/ext/intl/resourcebundle/
H A Dresourcebundle.c38 restype = ures_getType( source->child ); in resourcebundle_extract_value()
42 ufield = ures_getString( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
43 INTL_METHOD_CHECK_STATUS(source, "Failed to retrieve string value"); in resourcebundle_extract_value()
44 INTL_METHOD_RETVAL_UTF8(source, (UChar *)ufield, ilen, 0); in resourcebundle_extract_value()
48 bfield = ures_getBinary( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
49 INTL_METHOD_CHECK_STATUS(source, "Failed to retrieve binary value"); in resourcebundle_extract_value()
54 lfield = ures_getInt( source->child, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
60 vfield = ures_getIntVector( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
72 newrb->me = source->child; in resourcebundle_extract_value()
73 source->child = NULL; in resourcebundle_extract_value()
[all …]
/PHP-7.2/ext/intl/tests/
H A Dcollator_get_sort_key_variant7.phpt59 source: abc
61 source: abd
65 source: аа
67 source: а
69 source: z
71 source:
73 source:
75 source: 3
77 source: y
79 source: i
[all …]
H A Dcollator_get_sort_key_variant5.phpt60 source: abc
62 source: abd
66 source: аа
68 source: а
70 source: z
72 source:
74 source:
76 source: 3
78 source: y
80 source: i
[all …]
H A Dcollator_get_sort_key_variant6.phpt60 source: abc
62 source: abd
66 source: аа
68 source: а
70 source: z
72 source:
74 source:
76 source: 3
78 source: y
80 source: i
[all …]
H A Dcollator_get_sort_key.phpt61 source: abc
63 source: abd
67 source: аа
69 source: а
71 source: z
73 source:
75 source:
77 source: 3
79 source: y
81 source: i
[all …]
H A Dcollator_get_sort_key_variant2.phpt60 source: abc
62 source: abd
66 source: аа
68 source: а
70 source: z
72 source:
74 source:
76 source: 3
78 source: y
80 source: i
[all …]
H A Dcollator_get_sort_key_variant3.phpt60 source: abc
62 source: abd
66 source: аа
68 source: а
70 source: z
72 source:
74 source:
76 source: 3
78 source: y
80 source: i
[all …]
H A Dcollator_get_sort_key_variant4.phpt60 source: abc
62 source: abd
66 source: аа
68 source: а
70 source: z
72 source:
74 source:
76 source: 3
78 source: y
80 source: i
[all …]
/PHP-7.2/ext/tokenizer/tests/
H A Dtoken_get_all_basic.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description : splits the given source into an array of PHP languange tokens
15 $source = '<?php echo "Hello World"; ?>';
16 echo "-- source string with PHP open and close tags --\n";
17 var_dump( token_get_all($source) );
20 $source = "echo 'Hello World';";
21 echo "-- source string without PHP open and close tags --\n";
22 var_dump( token_get_all($source) );
28 -- source string with PHP open and close tags --
87 -- source string without PHP open and close tags --
H A Dtoken_get_all_variation18.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Testing token_get_all() with source string containing HTML code with PHP
17 echo "*** Testing token_get_all() : 'source' string with HTML tags ***\n";
19 $source = '
29 var_dump( token_get_all($source));
34 *** Testing token_get_all() : 'source' string with HTML tags ***
/PHP-7.2/ext/standard/tests/file/
H A Dcopy_variation14.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
10 /* Test copy(): Trying to create a copy of non-existing source in an existing destination
11 and an existing source in non-existing destiantion */
15 echo "*** Test copy() function: Trying to create a copy of non-existing source in existing destinat…
21 …opy($file_path."/nosuchfile.tmp", $file_path."/copy_nosuchfile.tmp") ); //With non-existing source
24 echo "\n*** Test copy() function: Trying to create copy of an existing source in non-existing desti…
27 var_dump( filesize($file) ); //size of the source
36 *** Test copy() function: Trying to create a copy of non-existing source in existing destination ***
41 *** Test copy() function: Trying to create copy of an existing source in non-existing destination *…
H A Dcopy_variation2.phpt72 echo "Size of source file => ";
100 Size of source file => int(1500)
107 Size of source file => int(1500)
114 Size of source file => int(1500)
121 Size of source file => int(1500)
128 Size of source file => int(1500)
135 Size of source file => int(1500)
142 Size of source file => int(1500)
149 Size of source file => int(1500)
156 Size of source file => int(1500)
[all …]
H A Dcopy_variation16.phpt33 echo "- Size of source file => ";
53 echo "Size of source file => ";
84 - Size of source file => int(3500)
88 Size of source file => int(3500)
95 Size of source file => int(3500)
102 Size of source file => int(3500)
109 Size of source file => int(3500)
116 Size of source file => int(3500)
123 Size of source file => int(3500)
130 Size of source file => int(3500)
[all …]
H A Dcopy_variation16-win32.phpt33 echo "- Size of source file => ";
53 echo "Size of source file => ";
85 - Size of source file => int(3500)
89 Size of source file => int(3500)
96 Size of source file => int(3500)
103 Size of source file => int(3500)
110 Size of source file => int(3500)
117 Size of source file => int(3500)
124 Size of source file => int(3500)
131 Size of source file => int(3500)
[all …]
H A Dcopy_variation6.phpt31 echo "Size of source file => ";
61 echo "Size of source file => ";
83 Size of source file => int(0)
90 Size of source file => int(0)
97 Size of source file => int(0)
104 Size of source file => int(0)
111 Size of source file => int(0)
118 Size of source file => int(0)
125 Size of source file => int(0)
132 Size of source file => int(0)
[all …]
H A Dcopy_variation2-win32-mb.phpt99 Size of source file => int(1500)
106 Size of source file => int(1500)
113 Size of source file => int(1500)
120 Size of source file => int(1500)
139 Size of source file => int(1500)
146 Size of source file => int(1500)
153 Size of source file => int(1500)
166 Size of source file => int(1500)
173 Size of source file => int(1500)
180 Size of source file => int(1500)
[all …]
H A Dcopy_variation2-win32.phpt99 Size of source file => int(1500)
106 Size of source file => int(1500)
113 Size of source file => int(1500)
120 Size of source file => int(1500)
139 Size of source file => int(1500)
146 Size of source file => int(1500)
153 Size of source file => int(1500)
166 Size of source file => int(1500)
173 Size of source file => int(1500)
180 Size of source file => int(1500)
[all …]
H A Dcopy_variation1.phpt5 /* Prototype: bool copy ( string $source, string $dest );
57 echo "Size of source file => ";
85 Size of source file => int(1500)
92 Size of source file => int(1500)
99 Size of source file => int(1500)
106 Size of source file => int(1500)
113 Size of source file => int(1500)
120 Size of source file => int(1500)
127 Size of source file => int(1500)
134 Size of source file => int(1500)
[all …]
H A Dcopy_variation10.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
10 /* Test copy(): Try copying source file to desntination file, where destination file name is identi…
14 echo "*** Test copy(): Trying to create a copy of file with the same source name ***\n";
31 *** Test copy(): Trying to create a copy of file with the same source name ***
H A Dcopy_variation6-win32.phpt11 Description: Makes a copy of the file source to dest.
31 echo "Size of source file => ";
62 echo "Size of source file => ";
85 Size of source file => int(0)
92 Size of source file => int(0)
99 Size of source file => int(0)
106 Size of source file => int(0)
113 Size of source file => int(0)
120 Size of source file => int(0)
127 Size of source file => int(0)
[all …]
/PHP-7.2/ext/intl/msgformat/
H A Dmsgformat_parse.c31 static void msgfmt_do_parse(MessageFormatter_object *mfo, char *source, size_t src_len, zval *retur… in msgfmt_do_parse() argument
39 intl_convert_utf8_to_utf16(&usource, &usrc_len, source, src_len, &INTL_DATA_ERROR_CODE(mfo)); in msgfmt_do_parse()
63 char *source; in PHP_FUNCTION() local
70 &object, MessageFormatter_ce_ptr, &source, &source_len ) == FAILURE ) in PHP_FUNCTION()
81 msgfmt_do_parse(mfo, source, source_len, return_value); in PHP_FUNCTION()
98 char *source = NULL; in PHP_FUNCTION() local
105 &slocale, &slocale_len, &pattern, &pattern_len, &source, &src_len ) == FAILURE ) in PHP_FUNCTION()
149 msgfmt_do_parse(mfo, source, src_len, return_value); in PHP_FUNCTION()
/PHP-7.2/ext/xmlrpc/libxmlrpc/
H A Dsimplestring.c198 void simplestring_addn(simplestring* target, const char* source, size_t add_len) { in simplestring_addn() argument
200 if(target && source) { in simplestring_addn()
230 memcpy(target->str + target->len, source, add_len); in simplestring_addn()
256 void simplestring_add(simplestring* target, const char* source) { in simplestring_add() argument
257 if(target && source) { in simplestring_add()
258 simplestring_addn(target, source, strlen(source)); in simplestring_add()
/PHP-7.2/ext/sockets/tests/
H A Dmcast_ipv6_recv.phpt110 echo "blocking source\n";
114 "source" => $sblock,
123 echo "unblocking source\n";
127 "source" => $sblock,
150 "source" => $sblock,
161 "source" => $sblock,
174 "source" => $sblock,
203 blocking source
208 unblocking source
217 joining source group
[all …]
/PHP-7.2/ext/zip/lib/
H A Dzip_file_replace.c39 zip_file_replace(zip_t *za, zip_uint64_t idx, zip_source_t *source, zip_flags_t flags) in zip_file_replace() argument
41 if (idx >= za->nentry || source == NULL) { in zip_file_replace()
46 if (_zip_file_replace(za, idx, NULL, source, flags) == -1) in zip_file_replace()
57 _zip_file_replace(zip_t *za, zip_uint64_t idx, const char *name, zip_source_t *source, zip_flags_t … in _zip_file_replace() argument
105 za->entry[idx].source = source; in _zip_file_replace()
/PHP-7.2/ext/opcache/
H A Dzend_accelerator_util_funcs.c196 p = source->arData; in zend_hash_clone_constants()
197 end = p + source->nNumUsed; in zend_hash_clone_constants()
247 p = source->arData; in zend_hash_clone_methods()
248 end = p + source->nNumUsed; in zend_hash_clone_methods()
305 p = source->arData; in zend_hash_clone_prop_info()
306 end = p + source->nNumUsed; in zend_hash_clone_prop_info()
480 p = source->arData; in zend_accel_function_hash_copy()
481 end = p + source->nNumUsed; in zend_accel_function_hash_copy()
524 p = source->arData; in zend_accel_function_hash_copy_from_shm()
525 end = p + source->nNumUsed; in zend_accel_function_hash_copy_from_shm()
[all …]

Completed in 39 milliseconds

12345678910