Home
last modified time | relevance | path

Searched refs:str (Results 2251 - 2275 of 11012) sorted by relevance

1...<<919293949596979899100>>...441

/third_party/node/test/common/
H A Dchild_process.js45 function checkOutput(str, check) {
46 if ((check instanceof RegExp && !check.test(str)) ||
47 (typeof check === 'string' && check !== str)) {
52 check(str);
/third_party/node/tools/gyp/pylib/gyp/
H A Deasy_xml.py77 if not isinstance(name, str):
80 "a string. Specification was " + str(specification)
92 all_strings = reduce(lambda x, y: x and isinstance(y, str), rest, True)
99 if isinstance(child_spec, str):
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
H A Doption.js291 * @param {string} str
296 function camelcase(str) {
297 return str.split('-').reduce((str, word) => {
298 return str + word[0].toUpperCase() + word.slice(1);
/third_party/node/deps/icu-small/source/i18n/
H A Dnfrule.h84 int32_t findTextLenient(const UnicodeString& str, const UnicodeString& key,
102 int32_t prefixLength(const UnicodeString& str, const UnicodeString& prefix, UErrorCode& status) const;
103 UBool allIgnorable(const UnicodeString& str, UErrorCode& status) const;
104 int32_t findText(const UnicodeString& str, const UnicodeString& key,
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Deasy_xml.py77 if not isinstance(name, str):
80 "a string. Specification was " + str(specification)
92 all_strings = reduce(lambda x, y: x and isinstance(y, str), rest, True)
99 if isinstance(child_spec, str):
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A DtokenTypes.js4 exports.word = exports.tilde = exports.tab = exports.str = exports.space = exports.slash = exports.singleQuote = exports.semicolon = exports.plus = exports.pipe = exports.openSquare = exports.openParenthesis = exports.newline = exports.greaterThan = exports.feed = exports.equals = exports.doubleQuote = exports.dollar = exports.cr = exports.comment = exports.comma = exports.combinator = exports.colon = exports.closeSquare = exports.closeParenthesis = exports.caret = exports.bang = exports.backslash = exports.at = exports.asterisk = exports.ampersand = void 0;
61 var str = singleQuote; variable
64 exports.str = str;
/third_party/ltp/testcases/kernel/syscalls/renameat2/
H A Drenameat202.c120 char str[BUFSIZ] = { 0 }; in renameat2_verify() local
149 readn = SAFE_READ(cleanup, 0, fd, str, BUFSIZ); in renameat2_verify()
161 if (strncmp(content, str, data_len)) { in renameat2_verify()
163 "Expect '%s', got '%s'", content, str); in renameat2_verify()
/third_party/libphonenumber/cpp/test/phonenumbers/
H A Dmatcher_test.cc33 string str = "pattern: "; in ToString() local
35 str += desc.national_number_pattern(); in ToString()
37 str += "none"; in ToString()
39 return str; in ToString()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbf_null.c21 static int nullf_puts(BIO *h, const char *str);
22 static int nullf_gets(BIO *h, char *str, int size);
108 static int nullf_puts(BIO *bp, const char *str) in nullf_puts() argument
112 return BIO_puts(bp->next_bio, str); in nullf_puts()
/third_party/rust/crates/aho-corasick/bench/src/
H A Dbench.rs25 group_name: &str, in define_aho_corasick()
26 bench_name: &str, in define_aho_corasick()
85 group_name: &str, in define_aho_corasick_dfa()
86 bench_name: &str, in define_aho_corasick_dfa()
157 group_name: &str, in define()
158 bench_name: &str, in define()
174 group_name: &str, in define_long()
175 bench_name: &str, in define_long()
/third_party/rust/crates/clap/clap_complete_fig/tests/
H A Dcommon.rs1 pub fn basic_command(name: &'static str) -> clap::Command { in basic_command()
24 pub fn feature_sample_command(name: &'static str) -> clap::Command { in basic_command()
54 pub fn special_commands_command(name: &'static str) -> clap::Command { in basic_command()
73 pub fn quoting_command(name: &'static str) -> clap::Command { in basic_command()
123 pub fn aliases_command(name: &'static str) -> clap::Command { in basic_command()
148 pub fn sub_subcommands_command(name: &'static str) -> clap::Command { in basic_command()
166 pub fn value_hint_command(name: &'static str) -> clap::Command { in basic_command()
254 name: &'static str, in basic_command()
/third_party/python/Lib/encodings/
H A Drot_13.py4 This codec de/encodes from str to str.
15 return (str.translate(input, rot13_map), len(input))
18 return (str.translate(input, rot13_map), len(input))
22 return str.translate(input, rot13_map)
26 return str.translate(input, rot13_map)
/third_party/openssl/crypto/bio/
H A Dbf_null.c21 static int nullf_puts(BIO *h, const char *str);
22 static int nullf_gets(BIO *h, char *str, int size);
108 static int nullf_puts(BIO *bp, const char *str) in nullf_puts() argument
112 return BIO_puts(bp->next_bio, str); in nullf_puts()
/third_party/skia/third_party/externals/angle2/scripts/
H A Dbmp_to_nv12.py77 nv12_file.write("static const size_t " + sys.argv[3] + "_width = " + str(width) + ";\n")
78 nv12_file.write("static const size_t " + sys.argv[3] + "_height = " + str(height) + ";\n")
83 nv12_file.write(str(y_buffer[i]) + ",")
87 nv12_file.write(str(uv_buffer[i]) + ",")
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcConfigListCase.cpp93 std::ostream& operator<<(std::ostream& str, const SurfaceBitsFmt& bits) in operator <<() argument
104 str << ", "; in operator <<()
105 str << getSurfaceTypeName(s_types[ndx]); in operator <<()
110 return str; in operator <<()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dcheck_spec_links.py75 registryFile = str(ROOT / 'xml/vk.xml')
175 all_docs = [str(fn)
177 all_docs.extend([str(fn)
179 all_docs.append(str(ROOT / 'vkspec.adoc'))
/third_party/vk-gl-cts/external/amber/src/src/amberscript/
H A Dparser.h46 Result ToShaderType(const std::string& str, ShaderType* type);
47 Result ToBufferType(const std::string& str, BufferType* type);
48 Result ToShaderFormat(const std::string& str, ShaderFormat* fmt);
49 Result ToPipelineType(const std::string& str, PipelineType* type);
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DCompilerPerf.cpp173 const char *str() const in str() function
232 testId += CompilerParameters::str(); in CompilerPerfParameters()
257 void setTestShader(const char *str) { mTestShader = str; } in setTestShader() argument
/third_party/skia/third_party/externals/jinja2/
H A D_compat.py13 text_type = str
14 string_types = (str,)
47 string_types = (str, unicode)
128 # Python 3.5 doesn't have __fspath__ yet, use str.
130 return str(path)
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnfrule.h84 int32_t findTextLenient(const UnicodeString& str, const UnicodeString& key,
102 int32_t prefixLength(const UnicodeString& str, const UnicodeString& prefix, UErrorCode& status) const;
103 UBool allIgnorable(const UnicodeString& str, UErrorCode& status) const;
104 int32_t findText(const UnicodeString& str, const UnicodeString& key,
/third_party/skia/third_party/externals/brotli/python/tests/
H A Dbro_test.py71 args.extend(['-q', str(kwargs['quality'])])
73 args.extend(['--lgwin', str(kwargs['lgwin'])])
81 args.extend(['-q', str(kwargs['quality'])])
83 args.extend(['--lgwin', str(kwargs['lgwin'])])
/third_party/openssl/test/
H A Dconf_include_test.c76 char *str; in test_load_config() local
113 str = NCONF_get_string(conf, "req_distinguished_name", "countryName_default"); in test_load_config()
114 if (!TEST_ptr(str) || !TEST_str_eq(str, "AU")) { in test_load_config()
/third_party/skia/third_party/externals/harfbuzz/util/
H A Dhb-shape.cc99 fprintf (out_fp, "%s", gs->str); in consume_text()
105 fprintf (out_fp, "%s", gs->str); in error()
115 fprintf (out_fp, "%s", gs->str); in consume_glyphs()
147 fprintf (out_fp, "%s", gs->str); in trace()
/third_party/skia/third_party/externals/tint/tools/src/cmd/run-parallel/
H A Dmain.go125 str := string(out)
127 if str != "" {
128 return false, str
132 return true, str
/third_party/typescript/tests/baselines/reference/
H A DrestInvalidArgumentType.js18 var str: string; variable
44 var {...r13} = str; // Error
87 var str;
106 var r13 = __rest(str, []); // Error

Completed in 15 milliseconds

1...<<919293949596979899100>>...441