/third_party/mesa3d/src/mesa/main/ |
H A D | debug.c | 141 * \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 D | gl_marshal.py | 55 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 D | experimental-interpreter.cc | 69 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 D | pytracediff.py | 156 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 D | benchmark_framework.cpp | 189 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 D | ecdh_exch.c | 231 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 D | bio_asn1.c | 64 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 D | umarshal.py | 55 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 D | memblockq-test.c | 80 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 D | bio_asn1.c | 64 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 D | vktRayTracingPositionFetchTests.cpp | 140 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 D | docgenerator.py | 282 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 D | expect.py | 300 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 D | ExpressionLimit_test.cpp | 78 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 D | ecdh_exch.c | 231 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 D | expect.py | 300 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 D | restricted_trace_gold_tests.py | 144 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 D | test_factory.py | 253 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 D | NaClBitstreamReader.cpp | 28 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.c | 422 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, ¤t_locale, &errors)) { in decode_locale_ex() 469 int ret = _Py_DecodeLocaleEx(str, in decode_locale_ex()
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | text_format_test.py | 86 message.message_set.Extensions[ext2].str = 'foo' 93 ' str: \"foo\"\n' 173 message.message_set.Extensions[ext2].str = 'foo' 181 ' str: \"foo\"' 242 self.assertEqual('c: 123\n', str(message)) 306 ' str: \"foo\"\n' 313 self.assertEquals('foo', message.message_set.Extensions[ext2].str) 461 exc_name = str(e_class) 466 if str(expr) != e: 469 str(exp [all...] |
/third_party/python/Lib/ |
H A D | cgitb.py | 119 <big><big><strong>{html_escape(str(etype))}</strong></big></big></font></td> 155 num = small(' ' * (5-len(str(i))) + str(i)) + ' ' 184 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))), 185 pydoc.html.escape(str(evalue)))] 210 head = "%s\n%s\n%s\n" % (str(etype), pyver, date) + ''' 256 exception = ['%s: %s' % (str(etype), str(evalue))]
|
/third_party/python/Lib/xml/sax/ |
H A D | saxutils.py | 211 if not isinstance(content, str): 212 content = str(content, self._encoding) 218 if not isinstance(content, str): 219 content = str(content, self._encoding) 344 if isinstance(source, str): 349 if isinstance(f.read(0), str): 353 if hasattr(f, "name") and isinstance(f.name, str):
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | function.rs | 17 use std::str::FromStr; 120 pub fn name(&self) -> &str { in name() 125 pub fn mangled_name(&self) -> Option<&str> { in mangled_name() 135 pub fn comment(&self) -> Option<&str> { in comment() 197 fn from_str(s: &str) -> Result<Self, Self::Err> { in from_str() 419 let is_operator = |spelling: &str| { in from_ty() 599 name: Option<&str>,
|
/third_party/skia/gm/ |
H A D | tilemodes.cpp | 115 SkString str; variable 116 str.printf("[%s,%s]", gModeNames[kx], gModeNames[ky]); 118 SkTextUtils::DrawString(canvas, str.c_str(), x + r.width()/2, y, font, p, 227 SkString str(gModeNames[kx]); 228 SkTextUtils::DrawString(canvas, str.c_str(), x + r.width()/2, y, font, SkPaint(), 238 SkString str(gModeNames[ky]); 239 SkTextUtils::DrawString(canvas, str.c_str(), x, y + h/2, font, SkPaint(),
|