Home
last modified time | relevance | path

Searched refs:ErrStr (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/unittests/clang-query/
H A DQueryParserTest.cpp78 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
81 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
92 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
95 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
120 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
135 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
183 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
296 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
363 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
374 cast<InvalidQuery>(Q)->ErrStr); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp35 std::string *ErrStr) { in create() argument
42 if (ErrStr) in create()
43 *ErrStr = Msg; in create()
/llvm-project-15.0.7/clang-tools-extra/clang-query/
H A DQuery.h56 InvalidQuery(const Twine &ErrStr) : Query(QK_Invalid), ErrStr(ErrStr.str()) {} in InvalidQuery()
59 std::string ErrStr; member
H A DQueryParser.cpp200 std::string ErrStr; in makeInvalidQueryFromDiagnostics() local
201 llvm::raw_string_ostream OS(ErrStr); in makeInvalidQueryFromDiagnostics()
H A DQuery.cpp27 OS << ErrStr << "\n"; in run()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp696 std::string ErrStr; in notifyObjectCompiled() local
697 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary); in notifyObjectCompiled()
897 std::string ErrStr; in compileModule() local
899 .setErrorStr(&ErrStr) in compileModule()
903 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in compileModule()
1019 char ErrStr[256]; in Codegen() local
1020 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); in Codegen()
1021 if (V == 0) return ErrorV(ErrStr); in Codegen()
H A Dtoy-jit.cpp1158 std::string ErrStr; in main() local
1159 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create(); in main()
1161 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp808 std::string ErrStr; in compileModule() local
810 .setErrorStr(&ErrStr) in compileModule()
814 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in compileModule()
917 char ErrStr[256]; in Codegen() local
918 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); in Codegen()
919 if (V == 0) return ErrorV(ErrStr); in Codegen()
H A Dtoy-jit.cpp1120 std::string ErrStr; in main() local
1121 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create(); in main()
1123 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp778 std::string ErrStr; in getPointerToFunction() local
780 .setErrorStr(&ErrStr) in getPointerToFunction()
784 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in getPointerToFunction()
877 char ErrStr[256]; in Codegen() local
878 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); in Codegen()
879 if (V == 0) return ErrorV(ErrStr); in Codegen()
/llvm-project-15.0.7/openmp/libomptarget/include/
H A Domptargetplugin.h192 const char **ErrStr);
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp715 std::string ErrStr; in notifyObjectCompiled() local
716 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary); in notifyObjectCompiled()
939 std::string ErrStr; in compileModule() local
941 .setErrorStr(&ErrStr) in compileModule()
945 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in compileModule()
/llvm-project-15.0.7/openmp/libomptarget/plugins/cuda/src/
H A Drtl.cpp1489 const char **ErrStr) const { in initDeviceInfo()
1500 cuGetErrorString(Err, ErrStr); in initDeviceInfo()
1858 const char **ErrStr) { in __tgt_rtl_init_device_info() argument
1865 return DeviceRTL.initDeviceInfo(DeviceId, DeviceInfoPtr, ErrStr); in __tgt_rtl_init_device_info()
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProf.h335 InstrProfError(instrprof_error Err, const Twine &ErrStr = Twine())
336 : Err(Err), Msg(ErrStr.str()) { in Err()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp5299 SmallString<40> ErrStr; in ParseAMDKernelCodeTValue() local
5300 raw_svector_ostream Err(ErrStr); in ParseAMDKernelCodeTValue()