Home
last modified time | relevance | path

Searched refs:replaced (Results 1 – 25 of 1128) sorted by relevance

12345678910>>...46

/third_party/tzdata/
Dnewstrftime.3.txt25 Each conversion specification is replaced by the characters as follows
28 %A is replaced by the locale's full weekday name.
30 %a is replaced by the locale's abbreviated weekday name.
32 %B is replaced by the locale's full month name.
35 is replaced by the locale's abbreviated month name.
37 %C is replaced by the century (a year divided by 100 and truncated
40 %c is replaced by the locale's appropriate date and time
45 %d is replaced by the day of the month as a decimal number [01,31].
47 %e is replaced by the day of month as a decimal number [1,31];
52 %G is replaced by the ISO 8601 year with century as a decimal
[all …]
/third_party/libcoap/man/
Dcoap_deprecated.txt.in84 The *coap_clear_event_handler*() function is replaced by
89 The *coap_context_set_psk*() function is replaced by
95 The *coap_encode_var_bytes*() function is replaced by
100 The *coap_new_client_session_psk*() function is replaced by
106 The *coap_option_clrb*() function is replaced by
111 The *coap_option_getb*() function is replaced by
116 The *coap_option_setb*() function is replaced by
121 The *coap_read*() function is replaced by
126 The *coap_register_handler*() function is replaced by
131 The *coap_resource_set_dirty*() function is replaced by
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_shading_language_420pack.txt750 Repeat the above test with vec2(0).length() replaced by ivec2(0).length().
752 Repeat the above test with vec2(0).length() replaced by uvec2(0).length().
754 Repeat the above test with vec2(0).length() replaced by bvec2(0).length().
756 Repeat the above test with vec2(0).length() replaced by dvec2(0).length().
769 Repeat the above test with vec3(0).length() replaced by ivec3(0).length().
771 Repeat the above test with vec3(0).length() replaced by uvec3(0).length().
773 Repeat the above test with vec3(0).length() replaced by bvec3(0).length().
775 Repeat the above test with vec3(0).length() replaced by dvec3(0).length().
788 Repeat the above test with vec4(0).length() replaced by ivec4(0).length().
790 Repeat the above test with vec4(0).length() replaced by uvec4(0).length().
[all …]
/third_party/openGLES/extensions/ARB/
DARB_shading_language_420pack.txt760 Repeat the above test with vec2(0).length() replaced by ivec2(0).length().
762 Repeat the above test with vec2(0).length() replaced by uvec2(0).length().
764 Repeat the above test with vec2(0).length() replaced by bvec2(0).length().
766 Repeat the above test with vec2(0).length() replaced by dvec2(0).length().
779 Repeat the above test with vec3(0).length() replaced by ivec3(0).length().
781 Repeat the above test with vec3(0).length() replaced by uvec3(0).length().
783 Repeat the above test with vec3(0).length() replaced by bvec3(0).length().
785 Repeat the above test with vec3(0).length() replaced by dvec3(0).length().
798 Repeat the above test with vec4(0).length() replaced by ivec4(0).length().
800 Repeat the above test with vec4(0).length() replaced by uvec4(0).length().
[all …]
/third_party/jerryscript/docs/
D16.MIGRATION-GUIDE.md25 - `jerry_char_ptr_t` usage replaced with `jerry_char_t *`
26 - `jerry_object_free_callback_t` replaced by `jerry_object_native_free_callback_t`
31 - `jerry_get_object_native_handle` replaced by `jerry_get_object_native_pointer`
32 - `jerry_set_object_native_handle` replaced by `jerry_set_object_native_pointer`
33 - `jerry_value_set_abort_flag` replaced by `jerry_create_abort_from_value`
34 - `jerry_value_has_abort_flag` replaced by `jerry_value_is_abort`
35 - `jerry_value_set_error_flag` replaced by `jerry_create_error_from_value`
36 - `jerry_value_has_error_flag` replaced by `jerry_value_is_error`
37 - `jerry_value_clear_error_flag` replaced by `jerry_get_value_from_error`
38 - `jerry_get_value_without_error_flag` replaced by `jerry_get_value_from_error`
[all …]
/third_party/skia/third_party/externals/freetype/src/tools/
Dupdate-copyright-year56 my $replaced = 0;
64 if (!$replaced)
93 $replaced = 1;
123 $replaced = 1;
139 $replaced = 1;
153 # Reset $replaced before processing the next file.
154 $replaced = 0 if eof;
/third_party/curl/tests/data/
Dtest47 HTTP replaced headers
33 …-H "extra-header: here" -H "Accept: replaced" -H "X-Custom-Header;" -H "X-Test: foo; " -H "X-Test:…
45 Accept: replaced
54 Accept: replaced
/third_party/libdrm/intel/
Duthash.h191 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \ argument
193 (replaced) = NULL; \
194 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
195 if (replaced) { \
196 HASH_DELETE(hh, head, replaced); \
201 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \ argument
203 (replaced) = NULL; \
204 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
205 if (replaced) { \
206 HASH_DELETE(hh, head, replaced); \
[all …]
/third_party/libcoap/include/coap3/
Dcoap_uthash_internal.h245 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \ argument
247 (replaced) = NULL; \
248 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
249 if (replaced) { \
250 HASH_DELETE(hh, head, replaced); \
255 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \ argument
257 (replaced) = NULL; \
258 HASH_FIND_BYHASHVALUE(hh, head, &((add)->fieldname), keylen_in, hashval, replaced); \
259 if (replaced) { \
260 HASH_DELETE(hh, head, replaced); \
[all …]
/third_party/alsa-utils/alsactl/
Dinit_utils_string.c156 int replaced = 0; in replace_untrusted_chars() local
179 replaced++; in replace_untrusted_chars()
182 return replaced; in replace_untrusted_chars()
/third_party/mesa3d/src/panfrost/util/
Dpan_lower_writeout.c150 bool replaced = false; in pan_nir_lower_zs_store() local
179 unsigned this_store = PAN_WRITEOUT_C | (replaced ? 0 : writeout); in pan_nir_lower_zs_store()
185 replaced = true; in pan_nir_lower_zs_store()
190 if (!replaced) { in pan_nir_lower_zs_store()
/third_party/json/docs/mkdocs/docs/api/macros/
Djson_noexception.md8 is replaced by `#!cpp if (true)`, `#!cpp catch` is replaced by `#!cpp if (false)`, and `#!cpp throw…
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dpass_utils.cpp63 bool replaced = false; in FindAndReplace() local
70 replaced = true; in FindAndReplace()
72 return replaced; in FindAndReplace()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dpass_utils.cpp63 bool replaced = false; in FindAndReplace() local
70 replaced = true; in FindAndReplace()
72 return replaced; in FindAndReplace()
/third_party/spirv-tools/test/opt/
Dpass_utils.cpp63 bool replaced = false; in FindAndReplace() local
70 replaced = true; in FindAndReplace()
72 return replaced; in FindAndReplace()
/third_party/python/Mac/Tools/
Dpythonw.c176 char replaced; in main() local
177 replaced = slash[1]; in main()
182 slash[1] = replaced; in main()
/third_party/typescript/tests/baselines/reference/
DmoduleResolutionWithExtensions.types10 // '.js' extension: stripped and replaced with '.ts'
27 // '.js' extension: stripped and replaced with '.d.ts'
DmoduleResolutionWithExtensions.symbols10 // '.js' extension: stripped and replaced with '.ts'
27 // '.js' extension: stripped and replaced with '.d.ts'
/third_party/libabigail/tests/data/test-diff-filter/
Dtest-PR25661-7-report-4.txt8 data members 'S::a', 'S::b' were replaced by anonymous data member:
10 data members 'S::c', 'S::d' were replaced by anonymous data member:
Dtest-PR25661-7-report-3.txt10 data members 'S::a', 'S::b' were replaced by anonymous data member:
12 data members 'S::c', 'S::d' were replaced by anonymous data member:
/third_party/json/docs/mkdocs/docs/api/basic_json/
Dstd_swap.md14 : value to be replaced by `j2`
17 : value to be replaced by `j1`
/third_party/node/tools/doc/
Dstability.mjs95 const replaced = content.replace(mark, value);
96 if (replaced !== content) {
97 fs.writeSync(fd, replaced, 0, 'utf8');
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
Dretrace_restricted_traces.py81 replaced = False
91 if not replaced:
92 replaced = True
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DRunAtTheEndOfShader.cpp79 bool replaced = root->replaceChildNode(main, oldMainDefinition); in WrapMainAndAppend() local
80 ASSERT(replaced); in WrapMainAndAppend()
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_atomics_to_ssbo.c216 unsigned replaced = 0; in nir_lower_atomics_to_ssbo() local
221 if (replaced & (1 << var->data.binding)) in nir_lower_atomics_to_ssbo()
260 replaced |= (1 << var->data.binding); in nir_lower_atomics_to_ssbo()

12345678910>>...46