Home
last modified time | relevance | path

Searched refs:str (Results 826 - 850 of 11031) sorted by relevance

1...<<31323334353637383940>>...442

/third_party/jerryscript/tests/jerry/es2015/
H A Dfunction-properties.js17 var str = "";
20 if (str)
22 str += " " + name;
26 str = name;
29 return str;
H A Dfunction-param-init.js67 function CheckSyntaxError(str)
70 eval(str);
84 var str = "a = 5, b, c = function() { for (var a = 0; a < 4; a++) ; return a; } ()" variable
86 var f = new Function (str, str);
89 var f = new Function (str, "return (a + c) * (b == undefined ? 1 : 0)");
H A Dstring-iterator.js29 var str = 'foobar'; variable
30 var iterator = str[Symbol.iterator]();
46 var str = 'Example string.'; variable
49 var iterator = str[Symbol.iterator]();
61 var str = '^o?һR?]ŭ媖?᯾豼עW?'; variable
64 iterator = str[Symbol.iterator]();
/third_party/jerryscript/tests/jerry/
H A Dequality.js20 var str = "0"; variable
25 assert(str === str);
28 assert((num === str) == false);
29 assert((obj === str) == false);
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Djson_platform_v8.cc16 // Parses |str| into |result|. Returns false iff there are
18 bool StrToD(const char* str, double* result) { in StrToD() argument
20 v8::internal::StringToDouble(str, v8::internal::NO_CONVERSION_FLAGS); in StrToD()
28 const char* str = v8::internal::DoubleToCString(value, buffer); in DToStr() local
29 return (str == nullptr) ? "" : std::string(str); in DToStr()
/third_party/typescript/tests/baselines/reference/
H A DlastPropertyInLiteralWins.js3 thunk: (str: string) => void;
6 thing.thunk("str");
9 thunk: (str: string) => {},
15 thunk: (str: string) => {}
21 thing.thunk("str");
24 thunk: function (str) { },
29 thunk: function (str) { }
/third_party/rust/crates/clap/tests/builder/
H A Dhelp.rs82 static EXPECTED: &str = "error: unrecognized subcommand 'foo' in help_multi_subcommand_error()
93 static LAST_ARG_REQ_MULT: &str = "\ in req_last_arg_usage()
120 static LAST_ARG_USAGE: &str = "\ in args_with_last_usage()
200 static HELP: &str = "\ in complex_help_output()
237 static AFTER_HELP: &str = "some text that comes before the help in after_and_before_help_output()
261 static AFTER_HELP: &str = "some text that comes before the help in after_and_before_long_help_output()
274 static AFTER_LONG_HELP: &str = "some longer text that comes before the help in after_and_before_long_help_output()
301 static MULTI_SC_HELP: &str = "\
339 static DEFAULT_HELP: &str = "\ in no_wrap_default_help()
354 static WRAPPED_HELP: &str in wrapped_help()
[all...]
/foundation/communication/wifi/wifi/frameworks/native/c_adapter/src/
H A Dwifi_c_utils.cpp47 WifiErrorCode IpStrToArray(const std::string& str, unsigned int ipAddr[IPV4_ARRAY_LEN]) { in IpStrToArray() argument
48 std::vector<std::string> vec = StrSplit(str, "\\."); in IpStrToArray()
59 std::string str = ""; in IpArrayToStr() local
61 str += std::to_string(ipAddr[i]); in IpArrayToStr()
63 str += "."; in IpArrayToStr()
66 return str; in IpArrayToStr()
/third_party/mesa3d/bin/
H A Dgen_release_notes_test.py44 def test_next_version(current: str, is_point: bool, expected: str) -> None:
54 def test_previous_version(current: str, is_point: bool, expected: str) -> None:
152 async def test_parse_issues(content: str, bugs: typing.List[str]) -> None:
/third_party/node/deps/base64/base64/lib/arch/ssse3/
H A Denc_loop.c5 __m128i str = _mm_loadu_si128((__m128i *) *s); in enc_loop_ssse3_inner() local
8 str = enc_reshuffle(str); in enc_loop_ssse3_inner()
11 str = enc_translate(str); in enc_loop_ssse3_inner()
14 _mm_storeu_si128((__m128i *) *o, str); in enc_loop_ssse3_inner()
/third_party/musl/libc-test/src/functionalext/backtrace/
H A Dunittest_backtrace.c31 char *str = bt_strings[i]; in checkString() local
32 char *left = strstr(str, "<"); in checkString()
33 char *right = strstr(str, ">"); in checkString()
47 right = strstr(str, "/"); in checkString()
48 char *lastPtr = str + strlen(str); in checkString()
/third_party/rust/crates/cxx/macro/src/
H A Dclang.rs18 pub name: Option<Box<str>>,
24 pub name: Option<Box<str>>,
34 pub name: Box<str>,
39 pub value: Box<str>,
45 pub qual_type: Box<str>,
47 pub desugared_qual_type: Option<Box<str>>,
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkStrUtil.cpp43 std::ostream& operator<< (std::ostream& str, const CharPtr& ptr) in operator <<() argument
46 return str << "(null)"; in operator <<()
48 return str << '"' << ptr.ptr << '"'; in operator <<()
66 std::ostream& operator<< (std::ostream& str, const WStr& wstr) in operator <<() argument
70 return str << "(null)"; in operator <<()
76 return str << '"' << result << '"'; in operator <<()
/third_party/python/Lib/wsgiref/
H A Dtypes.py23 status: str,
24 headers: list[tuple[str, str]],
29 WSGIEnvironment: TypeAlias = dict[str, Any]
43 def write(self, s: str, /) -> object: ...
44 def writelines(self, seq: list[str], /) -> object: ...
/third_party/skia/infra/bots/recipes/
H A Dupload_nano_results.py39 'nano-json-v1', str(now.year).zfill(4),
40 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
45 str(api.vars.issue), str(api.vars.patchset)))
/third_party/rust/crates/rustix/tests/
H A Dbackends.rs95 dir: &str, in has_dependency()
96 args: &[&str], in has_dependency()
97 envs: &[(&str, &str)], in has_dependency()
98 remove_envs: &[&str], in has_dependency()
99 dependency: &str, in has_dependency()
/third_party/cups-filters/filter/foomatic-rip/
H A Dfoomaticrip.c231 /* returns position in 'str' after the option */
232 char * extract_next_option(char *str, char **pagerange, char **key, char **value) in extract_next_option() argument
234 char *p = str; in extract_next_option()
241 if (!str) in extract_next_option()
786 const char* str; in main() local
820 if ((str = getenv("CUPS_SERVERROOT")) != NULL) { in main()
821 snprintf(tmp, sizeof(tmp), "%s/foomatic-rip.conf", str); in main()
893 if ((str = arglist_get_value(arglist, "-j")) || (str = arglist_get_value(arglist, "-J"))) { in main()
894 strncpy_omit(job->title, str, 204 in main()
[all...]
/third_party/rust/crates/rustix/src/path/
H A Darg.rs19 use core::{ptr, slice, str};
70 fn as_str(&self) -> io::Result<&str>; in as_str()
73 /// str>`.
74 fn to_string_lossy(&self) -> Cow<'_, str>; in to_string_lossy()
92 impl Arg for &str {
94 fn as_str(&self) -> io::Result<&str> { in as_str()
99 fn to_string_lossy(&self) -> Cow<'_, str> { in to_string_lossy()
132 fn as_str(&self) -> io::Result<&str> { in as_str()
137 fn to_string_lossy(&self) -> Cow<'_, str> { in to_string_lossy()
168 fn as_str(&self) -> io::Result<&str> { in as_str()
[all...]
/third_party/ffmpeg/libavfilter/
H A Davf_concat.c77 unsigned type, nb_str, idx0 = 0, idx, str, seg; in query_formats() local
84 for (str = 0; str < nb_str; str++) { in query_formats()
281 unsigned str, str_max; in flush_segment() local
292 str = cat->nb_streams[AVMEDIA_TYPE_VIDEO]; in flush_segment()
293 str_max = str + cat->nb_streams[AVMEDIA_TYPE_AUDIO]; in flush_segment()
294 for (; str < str_max; str++) { in flush_segment()
295 ret = send_silence(ctx, cat->cur_idx - ctx->nb_outputs + str, st in flush_segment()
307 unsigned seg, type, str; init() local
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H A Discntrl_l.c72 const char *str = "!@#$%^(){}[]"; in iscntrl_l_0200() local
73 const char *p = str; in iscntrl_l_0200()
105 const char *str = "1234567890"; in iscntrl_l_0300() local
106 const char *p = str; in iscntrl_l_0300()
138 const char *str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; in iscntrl_l_0400() local
139 const char *p = str; in iscntrl_l_0400()
236 const wchar_t *str = L"!@#$%^(){}[]"; in iscntrl_l_0700() local
237 const wchar_t *p = str; in iscntrl_l_0700()
269 const wchar_t *str = L"1234567890"; in iscntrl_l_0800() local
270 const wchar_t *p = str; in iscntrl_l_0800()
302 const wchar_t *str = L"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; iscntrl_l_0900() local
369 const char *str = "!@#$%^(){}[]"; iscntrl_l_1100() local
402 const char *str = "1234567890"; iscntrl_l_1200() local
435 const char *str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; iscntrl_l_1300() local
533 const wchar_t *str = L"!@#$%^(){}[]"; iscntrl_l_1600() local
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dconvert_to_sampled_image_pass.cpp43 // Reads characters starting from |str| until it meets a separator. Parses a
46 const char* ParseNumberUntilSeparator(const char* str, uint32_t* number) { in ParseNumberUntilSeparator() argument
47 const char* number_begin = str; in ParseNumberUntilSeparator()
48 while (!IsSeparator(*str)) str++; in ParseNumberUntilSeparator()
49 const char* number_end = str; in ParseNumberUntilSeparator()
55 return str; in ParseNumberUntilSeparator()
400 const char* str) { in ParseDescriptorSetBindingPairsString()
401 if (!str) return nullptr; in ParseDescriptorSetBindingPairsString()
406 while (std::isspace(*str)) st in ParseDescriptorSetBindingPairsString()
399 ParseDescriptorSetBindingPairsString( const char* str) ParseDescriptorSetBindingPairsString() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dconvert_to_sampled_image_pass.cpp43 // Reads characters starting from |str| until it meets a separator. Parses a
46 const char* ParseNumberUntilSeparator(const char* str, uint32_t* number) { in ParseNumberUntilSeparator() argument
47 const char* number_begin = str; in ParseNumberUntilSeparator()
48 while (!IsSeparator(*str)) str++; in ParseNumberUntilSeparator()
49 const char* number_end = str; in ParseNumberUntilSeparator()
55 return str; in ParseNumberUntilSeparator()
400 const char* str) { in ParseDescriptorSetBindingPairsString()
401 if (!str) return nullptr; in ParseDescriptorSetBindingPairsString()
406 while (std::isspace(*str)) st in ParseDescriptorSetBindingPairsString()
399 ParseDescriptorSetBindingPairsString( const char* str) ParseDescriptorSetBindingPairsString() argument
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-cff-interp-common.hh314 str = byte_str_t (); in init()
322 : str (str_), offset (offset_), error (false) {} in byte_str_ref_t()
326 str = str_; in reset()
332 if (unlikely ((unsigned int) (offset + i) >= str.length)) in operator []()
337 return str[offset + i]; in operator []()
341 operator byte_str_t () const { return str.sub_str (offset, str.length - offset); } in operator byte_str_t()
344 { return str.sub_str (offset_, len_); } in sub_str()
347 { return (!in_error () && str.check_limit (offset, count)); } in avail()
350 if (likely (!in_error () && (offset <= str in inc()
364 byte_str_t str; global() member
530 byte_str_t str; global() member
[all...]
/third_party/spirv-tools/source/opt/
H A Dconvert_to_sampled_image_pass.cpp42 // Reads characters starting from |str| until it meets a separator. Parses a
45 const char* ParseNumberUntilSeparator(const char* str, uint32_t* number) { in ParseNumberUntilSeparator() argument
46 const char* number_begin = str; in ParseNumberUntilSeparator()
47 while (!IsSeparator(*str)) str++; in ParseNumberUntilSeparator()
48 const char* number_end = str; in ParseNumberUntilSeparator()
54 return str; in ParseNumberUntilSeparator()
400 const char* str) { in ParseDescriptorSetBindingPairsString()
401 if (!str) return nullptr; in ParseDescriptorSetBindingPairsString()
406 while (std::isspace(*str)) st in ParseDescriptorSetBindingPairsString()
399 ParseDescriptorSetBindingPairsString( const char* str) ParseDescriptorSetBindingPairsString() argument
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fNegativeShaderDirectiveTests.cpp122 verifyShader(ctx, glu::SHADERTYPE_TESSELLATION_CONTROL, source.str(), EXPECT_RESULT_FAIL); in primitive_bounding_box()
199 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in blend_equation_advanced()
229 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in sample_variables()
259 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in shader_image_atomic()
290 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in shader_multisample_interpolation()
305 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in shader_multisample_interpolation()
330 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in texture_storage_multisample_2d_array()
371 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in gpu_shader_5()
384 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAIL); in gpu_shader_5()
399 verifyShader(ctx, glu::SHADERTYPE_FRAGMENT, source.str(), EXPECT_RESULT_FAI in gpu_shader_5()
[all...]

Completed in 13 milliseconds

1...<<31323334353637383940>>...442