/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | SymbolRewriter.cpp | 120 : RewriteDescriptor(DT), Source(Naked ? StringRef("\01" + S.str()) : S), in ExplicitRewriteDescriptor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/ |
H A D | bloat.py | 35 return str(bytes) 226 ['.L.str', '[str]'],
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceGlobalContext.h | 90 //#define X(str, tag) 94 #define X(str, tag) CS_##tag,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | InstrProfWriter.cpp | 73 std::string &Data = SOStream.str(); // with flush in patch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
H A D | BitstreamRemarkSerializer.cpp | 103 StringRef Blob = OS.str(); in emitMetaStrTab()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | SourceMgr.cpp | 221 LineAndCol.second-1, Kind, Msg.str(), in GetMessage()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 225 Record *Rec = Records.getDef(OS.str());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonAsmBackend.cpp | 405 llvm_unreachable(errStr.str().c_str()); in HandleFixupError()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86WinCOFFTargetStreamer.cpp | 357 unsigned FrameFuncStrTabOff = CVCtx.addToStringTable(FuncOS.str()).second;
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | namer_test.cc | 31 std::string error() { return errors_.str(); } in error()
|
/third_party/skia/third_party/externals/tint/src/utils/ |
H A D | enum_set_test.cc | 239 EXPECT_EQ(ss.str(), "{A, C}"); in TEST()
|
/third_party/spirv-tools/include/spirv-tools/ |
H A D | libspirv.h | 446 const char* str; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | Triple.h | 366 const std::string &str() const { return Data; } in str() function in llvm::Triple
|
/third_party/vixl/tools/ |
H A D | test.py | 281 scons_command = ['scons', '-C', dir_root, 'all', '-j', str(jobs)]
|
/third_party/typescript/tests/baselines/reference/ |
H A D | inferTypes1.js | 122 str: "literalstring",
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | VertexBufferValidationTests.cpp | 66 return utils::CreateShaderModule(device, vs.str().c_str()); in MakeVertexShader()
|
/third_party/protobuf/src/google/protobuf/io/ |
H A D | io_win32.cc | 212 return result.str(); in normalize()
|
/third_party/python/Parser/ |
H A D | pegen.h | 45 char *str; member
|
/third_party/python/Lib/distutils/ |
H A D | msvccompiler.py | 476 + str (runtime_library_dirs))
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | tokenize.py | 46 bytes = str
|
/third_party/python/Lib/ |
H A D | posixpath.py | 266 name = str(name, 'ASCII')
|
H A D | base64.py | 35 if isinstance(s, str):
|
/third_party/python/Include/internal/ |
H A D | pycore_global_strings.h | 390 #define _Py_DECLARE_STR(name, str)
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_codecontext.py | 131 self.assertIn("doesn't exist", str(cm.exception))
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | test_parser.py | 385 self.validate("""def f(*x:str): pass""") 406 a: str, 417 a: str, 424 a: str = '', 431 *args: str, 437 self.validate("def f(a: str, b: int) -> None: call(a, b)") 438 self.validate("def f(a: str, b: int,) -> None: call(a, b,)") 441 self.validate("def f(a: str, *b: int) -> None: call(a, *b)") 442 self.validate("def f(a: str, *b: int,) -> None: call(a, *b,)") 445 self.validate("def f(a: str, [all...] |