Home
last modified time | relevance | path

Searched refs:str (Results 2676 - 2700 of 9391) sorted by relevance

1...<<101102103104105106107108109110>>...376

/third_party/icu/icu4c/source/test/perf/leperf/
H A DPortableFontInstance.cpp35 static const char *letagToStr(LETag tag, char *str) {
36 str[0]= 0xFF & (tag>>24);
37 str[1]= 0xFF & (tag>>16);
38 str[2]= 0xFF & (tag>>8);
39 str[3]= 0xFF & (tag>>0);
40 str[4]= 0;
41 return str;
/third_party/icu/icu4c/source/test/letest/
H A DPortableFontInstance.cpp31 static const char *letagToStr(LETag tag, char *str) {
32 str[0]= 0xFF & (tag>>24);
33 str[1]= 0xFF & (tag>>16);
34 str[2]= 0xFF & (tag>>8);
35 str[3]= 0xFF & (tag>>0);
36 str[4]= 0;
37 return str;
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/
H A Dradeonsi-run-tests.py67 parser.add_argument("--piglit-path", type=str, help="Path to piglit source folder.")
68 parser.add_argument("--glcts-path", type=str, help="Path to GLCTS source folder.")
69 parser.add_argument("--deqp-path", type=str, help="Path to dEQP source folder.")
72 type=str,
391 str(args.jobs),
435 str(args.jobs),
496 str(args.jobs),
/third_party/node/src/
H A Dnode_http_common.h343 std::string str() const { in str() function in node::NgRcBufPointer
417 v8::Local<v8::String> str = in New() local
419 eternal.Set(env->isolate(), str); in New()
420 return str; in New()
440 v8::MaybeLocal<v8::String> str = in New() local
442 if (str.IsEmpty()) in New()
445 return str; in New()
/third_party/node/tools/inspector_protocol/encoding/
H A Dencoding.h62 span<uint8_t> SpanFrom(const char (&str)[N]) { in SpanFrom() argument
63 return span<uint8_t>(reinterpret_cast<const uint8_t*>(str), N - 1); in SpanFrom()
66 inline span<uint8_t> SpanFrom(const char* str) { in SpanFrom() argument
67 return str ? span<uint8_t>(reinterpret_cast<const uint8_t*>(str), strlen(str)) in SpanFrom()
449 // Parses |str| into |result|. Returns false iff there are
451 virtual bool StrToD(const char* str, double* result) const = 0;
/third_party/mesa3d/src/mesa/main/
H A Ddebug.c141 * \param str a comma-separated list of keywords
144 set_verbose_flags(const char *str) in set_verbose_flags() argument
166 if (!str) in set_verbose_flags()
171 if (strstr(str, opts[i].name) || strcmp(str, "all") == 0) in set_verbose_flags()
181 * \param str a comma-separated list of keywords
184 set_debug_flags(const char *str) in set_debug_flags() argument
200 if (!str) in set_debug_flags()
205 if (strstr(str, opts[i].name)) in set_debug_flags()
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_marshal.py55 def out(str):
56 if str:
57 print(' '*current_indent + str)
159 def get_type_size(self, str):
160 if str.find('*') != -1:
191 val = mapping.get(str, 9999)
193 print('Unhandled type in gl_marshal.py.get_type_size: ' + str, file=sys.stderr)
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental-interpreter.cc69 String str, const DisallowGarbageCollection& no_gc);
73 String str, const DisallowGarbageCollection& no_gc) { in ToCharacterVector()
74 DCHECK(str.IsFlat()); in ToCharacterVector()
75 String::FlatContent content = str.GetFlatContent(no_gc); in ToCharacterVector()
82 String str, const DisallowGarbageCollection& no_gc) { in ToCharacterVector()
83 DCHECK(str.IsFlat()); in ToCharacterVector()
84 String::FlatContent content = str.GetFlatContent(no_gc); in ToCharacterVector()
72 ToCharacterVector( String str, const DisallowGarbageCollection& no_gc) ToCharacterVector() argument
81 ToCharacterVector( String str, const DisallowGarbageCollection& no_gc) ToCharacterVector() argument
/third_party/mesa3d/src/gallium/tools/trace/
H A Dpytracediff.py156 elif isinstance(node.value, str):
245 pkk_fatal(str(e))
292 type=str, action="store",
297 type=str, action="store",
361 colfmt = "{}{:"+ str(colwidth) +"s}{} {}{}{} {}{:"+ str(colwidth) +"s}{}"
472 pkk_fatal(str(e))
/third_party/musl/Benchmark/musl/
H A Dbenchmark_framework.cpp189 errx(1, "ERROR: Args str %s contains an invalid macro or int.", args.c_str()); in ResolveArgs()
196 bool MatchFuncNameInJson(const std::string& str, const std::string& pattern) in MatchFuncNameInJson() argument
200 return str == pattern; in MatchFuncNameInJson()
205 return std::regex_match(str, re); in MatchFuncNameInJson()
304 std::string Trim(const std::string& str) in Trim() argument
306 size_t first = str.find_first_not_of(' '); in Trim()
310 size_t last = str.find_last_not_of(' '); in Trim()
311 return str.substr(first, (last - first + 1)); in Trim()
/third_party/node/deps/openssl/openssl/providers/implementations/exchange/
H A Decdh_exch.c231 char *str = NULL; in ecdh_set_ctx_params() local
255 str = name; in ecdh_set_ctx_params()
256 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(name))) in ecdh_set_ctx_params()
271 str = name; in ecdh_set_ctx_params()
272 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(name))) in ecdh_set_ctx_params()
275 str = mdprops; in ecdh_set_ctx_params()
280 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops))) in ecdh_set_ctx_params()
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dbio_asn1.c64 static int asn1_bio_puts(BIO *h, const char *str);
65 static int asn1_bio_gets(BIO *h, char *str, int size);
303 static int asn1_bio_puts(BIO *b, const char *str) in asn1_bio_puts() argument
305 return asn1_bio_write(b, str, strlen(str)); in asn1_bio_puts()
308 static int asn1_bio_gets(BIO *b, char *str, int size) in asn1_bio_gets() argument
313 return BIO_gets(next, str, size); in asn1_bio_gets()
/third_party/python/Tools/scripts/
H A Dumarshal.py55 def __repr__(self) -> str:
58 co_localsplusnames: Tuple[str]
61 def get_localsplus_names(self, select_kind: int) -> Tuple[str, ...]:
62 varnames: list[str] = []
70 def co_varnames(self) -> Tuple[str, ...]:
74 def co_cellvars(self) -> Tuple[str, ...]:
78 def co_freevars(self) -> Tuple[str, ...]:
/third_party/pulseaudio/src/tests/
H A Dmemblockq-test.c80 char *str; in dump() local
90 str = pa_strbuf_to_string_free(buf); in dump()
91 fail_unless(pa_streq(str, fixed[n])); in dump()
92 pa_xfree(str); in dump()
107 str = pa_strbuf_to_string_free(buf); in dump()
108 fail_unless(pa_streq(str, manual[n])); in dump()
109 pa_xfree(str); in dump()
/third_party/openssl/crypto/asn1/
H A Dbio_asn1.c64 static int asn1_bio_puts(BIO *h, const char *str);
65 static int asn1_bio_gets(BIO *h, char *str, int size);
303 static int asn1_bio_puts(BIO *b, const char *str) in asn1_bio_puts() argument
305 return asn1_bio_write(b, str, strlen(str)); in asn1_bio_puts()
308 static int asn1_bio_gets(BIO *b, char *str, int size) in asn1_bio_gets() argument
313 return BIO_gets(next, str, size); in asn1_bio_gets()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingPositionFetchTests.cpp140 const auto layoutDeclsStr = layoutDecls.str(); in initPrograms()
217 programCollection.glslSources.add("rgen") << glu::RaygenSource(updateRayTracingGLSL(rgen.str())) << buildOptions; in initPrograms()
218 programCollection.glslSources.add("miss") << glu::MissSource(updateRayTracingGLSL(miss.str())) << buildOptions; in initPrograms()
219 programCollection.glslSources.add("ah") << glu::AnyHitSource(updateRayTracingGLSL(ah.str())) << buildOptions; in initPrograms()
220 programCollection.glslSources.add("ch") << glu::ClosestHitSource(updateRayTracingGLSL(ch.str())) << buildOptions; in initPrograms()
446 TCU_FAIL(msg.str()); in iterate()
453 std::cout << msg.str(); in iterate()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Ddocgenerator.py282 self.makeDir(str(directory))
284 filename = str(directory / f'{basename}.comments{self.file_suffix}')
313 self.makeDir(str(directory))
315 filename = str(directory / f'{basename}.comments-box{self.file_suffix}')
323 self.makeDir(str(directory))
325 filename = str(directory / f'{basename}.comments{self.file_suffix}')
474 raise RuntimeError("Unrecognized enums type: " + str(group_type))
/third_party/skia/third_party/externals/spirv-tools/test/tools/
H A Dexpect.py300 obj_file = str(os.path.join(status.directory, object_filename))
313 if not isinstance(an_input.assembly_substr, str):
350 if isinstance(self.expected_file_contents, str):
480 'signal ' + str(status.returncode))
509 'signal ' + str(status.returncode))
592 elif type(self.expected_stdout) == str:
626 elif type(self.expected_stderr) == str:
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
H A DExpressionLimit_test.cpp78 return ss.str(); in GenerateShaderWithLongExpression()
100 return ss.str(); in GenerateShaderWithUnusedLongExpression()
132 return ss.str(); in GenerateShaderWithDeepFunctionStack()
145 return ss.str(); in GenerateShaderWithUnusedDeepFunctionStack()
173 return ss.str(); in GenerateShaderWithFunctionParameters()
198 return shaderString.str(); in GenerateShaderWithNestingInsideSwitch()
217 return shaderString.str(); in GenerateShaderWithNestingInsideGlobalInitializer()
/third_party/openssl/providers/implementations/exchange/
H A Decdh_exch.c231 char *str = NULL; in ecdh_set_ctx_params() local
255 str = name; in ecdh_set_ctx_params()
256 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(name))) in ecdh_set_ctx_params()
271 str = name; in ecdh_set_ctx_params()
272 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(name))) in ecdh_set_ctx_params()
275 str = mdprops; in ecdh_set_ctx_params()
280 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops))) in ecdh_set_ctx_params()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/
H A Dexpect.py300 obj_file = str(os.path.join(status.directory, object_filename))
313 if not isinstance(an_input.assembly_substr, str):
350 if isinstance(self.expected_file_contents, str):
480 'signal ' + str(status.returncode))
509 'signal ' + str(status.returncode))
592 elif type(self.expected_stdout) == str:
626 elif type(self.expected_stderr) == str:
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
H A Drestricted_trace_gold_tests.py144 return 'None' if val == '' else str(val)
213 str = ''.join(filter.get()) variable in get_skia_gold_keys.Filter
214 logging.info(str)
215 json_data = json.loads(str)
419 parser.add_argument('--isolated-script-test-output', type=str)
420 parser.add_argument('--isolated-script-test-perf-output', type=str)
421 parser.add_argument('-f', '--isolated-script-test-filter', '--filter', type=str)
/third_party/python/Lib/test/test_sqlite3/
H A Dtest_factory.py253 class FakeCursor(str):
269 self.assertEqual(type(row[0]), str, "type of row[0] must be unicode")
279 self.con.text_factory = lambda x: str(x, "utf-8", "ignore")
282 self.assertEqual(type(row[0]), str, "type of row[0] must be unicode")
294 self.assertEqual(type(a_row[0]), str, "type of non-ASCII row must be str")
295 self.assertEqual(type(d_row[0]), str, "type of ASCII-only row must be str")
307 # text_factory defaults to str
309 self.assertIs(type(row[0]), str)
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitstreamReader.cpp28 return Stream.str(); in getBitAddress()
51 report_fatal_error(StrBuf.str());
58 ErrHandler->Fatal(StrBuf.str());
65 ErrHandler->Fatal(StrBuf.str());
248 ErrHandler->Fatal(StrBuf.str());
294 ErrHandler->Fatal(StrBuf.str());
303 ErrHandler->Fatal(StrBuf.str());
/third_party/python/Modules/
H A D_testinternalcapi.c422 char *str = NULL; in encode_locale_ex() local
426 &str, &error_pos, &reason, in encode_locale_ex()
432 res = PyBytes_FromString(str); in encode_locale_ex()
433 PyMem_RawFree(str); in encode_locale_ex()
456 char *str; in decode_locale_ex() local
461 if (!PyArg_ParseTuple(args, "y|is", &str, &current_locale, &errors)) { in decode_locale_ex()
469 int ret = _Py_DecodeLocaleEx(str, in decode_locale_ex()

Completed in 23 milliseconds

1...<<101102103104105106107108109110>>...376