HomeSort by relevance Sort by last modified time
    Searched refs:ErrorStr (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCOFF.cpp 65 raw_string_ostream ErrStream(ErrorStr);
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/OGLES2/
OGLES2DisplacementMap.cpp 365 CPVRTString ErrorStr;
370 if(!LoadVbos(&ErrorStr))
372 PVRShellSet(prefExitMessage, ErrorStr.c_str());
379 if(!LoadTextures(&ErrorStr))
381 PVRShellSet(prefExitMessage, ErrorStr.c_str());
388 if(!LoadShaders(&ErrorStr))
390 PVRShellSet(prefExitMessage, ErrorStr.c_str());
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
516 std::string *ErrorStr;
563 ErrorStr = e;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 138 std::string *ErrorStr,
144 std::string *ErrorStr,
150 std::string *ErrorStr);
527 std::string *ErrorStr;
574 ErrorStr = e;
  /external/clang/examples/clang-interpreter/
main.cpp 46 createExecutionEngine(std::unique_ptr<llvm::Module> M, std::string *ErrorStr) {
49 .setErrorStr(ErrorStr)
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 37 std::string *ErrorStr,
52 if (ErrorStr)
53 *ErrorStr = "target does not support JIT code generation";
  /external/clang/lib/Serialization/
ModuleManager.cpp 64 std::string &ErrorStr) {
78 ErrorStr = "module file out of date";
83 ErrorStr = "module file not found";
136 ErrorStr = Buf.getError().message();
154 ErrorStr = ModuleEntry->Signature ? "signature mismatch"
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 458 std::string ErrorStr;
459 if (!sys::Memory::setExecutable(FM, &ErrorStr))
460 ErrorAndExit("unable to mark function executable: '" + ErrorStr + "'");
638 std::string ErrorStr;
640 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
642 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr);
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
MachOObject.h 89 /// \param ErrorStr [out] - If given, will be set to a user readable error
93 std::string *ErrorStr = 0);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 49 std::unique_ptr<Module> M, std::string *ErrorStr,
55 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
60 std::string *ErrorStr) =nullptr;
473 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
512 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
522 if (ErrorStr)
523 *ErrorStr = "Cannot create an interpreter with a memory manager.";
540 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
545 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
558 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Advanced/ChameleonMan/OGLES2/
OGLES2ChameleonMan.cpp 454 CPVRTString ErrorStr;
464 if (!LoadTextures(&ErrorStr))
466 PVRShellSet(prefExitMessage, ErrorStr.c_str());
473 if (!LoadShaders(&ErrorStr))
475 PVRShellSet(prefExitMessage, ErrorStr.c_str());
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 408 std::string ErrorStr;
410 MachOObject::LoadFromBuffer(InputBuffer, &ErrorStr));
412 return Error("unable to load object: '" + ErrorStr + "'");
  /external/swiftshader/third_party/LLVM/tools/macho-dump/
macho-dump.cpp 377 std::string ErrorStr;
384 MachOObject::LoadFromBuffer(InputBuffer.take(), &ErrorStr));
386 return Error("unable to load object: '" + ErrorStr + "'");
  /external/clang/include/clang/Serialization/
ModuleManager.h 209 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
221 std::string &ErrorStr);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.h 186 std::string *ErrorStr,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Serialization/
ModuleManager.h 221 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
233 std::string &ErrorStr);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Serialization/
ModuleManager.h 221 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
233 std::string &ErrorStr);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Serialization/
ModuleManager.h 221 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
233 std::string &ErrorStr);

Completed in 6916 milliseconds

12 3 4