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

1 2 3 4

  /external/swiftshader/third_party/LLVM/include/llvm/
LLVMContext.h 82 void emitError(unsigned LocCookie, StringRef ErrorStr);
83 void emitError(const Instruction *I, StringRef ErrorStr);
84 void emitError(StringRef ErrorStr);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
TargetSelect.cpp 35 std::string *ErrorStr) {
52 *ErrorStr = "No available targets are compatible with this -march, "
66 if (ErrorStr)
67 *ErrorStr = Error;
ExecutionEngine.cpp 42 std::string *ErrorStr,
49 std::string *ErrorStr,
55 std::string *ErrorStr) = 0;
404 std::string *ErrorStr,
411 .setErrorStr(ErrorStr)
421 std::string *ErrorStr,
428 if (ErrorStr)
429 *ErrorStr = "JIT has not been linked in.";
440 EngineBuilder::selectTarget(M, MArch, MCPU, MAttrs, RM, CMM, ErrorStr);
441 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0
    [all...]
  /external/swiftshader/third_party/LLVM/utils/FileUpdate/
FileUpdate.cpp 72 std::string ErrorStr;
73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
75 if (!ErrorStr.empty()) {
77 << OutputFilename << "': " << ErrorStr << '\n';
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContext.cpp 81 void LLVMContext::emitError(StringRef ErrorStr) {
82 emitError(0U, ErrorStr);
85 void LLVMContext::emitError(const Instruction *I, StringRef ErrorStr) {
92 return emitError(LocCookie, ErrorStr);
95 void LLVMContext::emitError(unsigned LocCookie, StringRef ErrorStr) {
98 errs() << "error: " << ErrorStr << "\n";
103 SMDiagnostic Diag("", "error: " + ErrorStr.str());
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 56 if (ErrorStr)
57 *ErrorStr = "No available targets are compatible with this -march, "
73 if (ErrorStr)
74 *ErrorStr = Error;
  /external/llvm/include/llvm/IR/
LLVMContext.h 224 void emitError(unsigned LocCookie, const Twine &ErrorStr);
225 void emitError(const Instruction *I, const Twine &ErrorStr);
226 void emitError(const Twine &ErrorStr);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 56 std::string ErrorStr;
60 ErrorStr = Msg.str();
92 StringRef getErrorString() { return ErrorStr; }
  /external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
llvm-rtdyld.cpp 120 std::string ErrorStr;
122 if (!sys::Memory::setExecutable(Data, &ErrorStr))
123 return Error("unable to mark function executable: '" + ErrorStr + "'");
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
LLVMContext.h 251 void emitError(unsigned LocCookie, const Twine &ErrorStr);
252 void emitError(const Instruction *I, const Twine &ErrorStr);
253 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
MCJIT.h 80 std::string *ErrorStr,
  /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
ExecutionEngine.h 133 std::string *ErrorStr,
140 std::string *ErrorStr,
145 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
185 std::string *ErrorStr = 0,
197 std::string *ErrorStr = 0,
461 std::string *ErrorStr;
475 ErrorStr = NULL;
510 ErrorStr = e;
  /external/llvm/lib/IR/
LLVMContext.cpp 218 void LLVMContext::emitError(const Twine &ErrorStr) {
219 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
222 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
224 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
273 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
274 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/OGLES3/
OGLES3ColourGrading.cpp 175 bool LoadShaders(CPVRTString& ErrorStr);
238 @Output ErrorStr A description of an error, if one occurs.
243 bool OGLES3ColourGrading::LoadShaders(CPVRTString& ErrorStr)
246 if(PVRTShaderLoadFromFile(NULL, c_szVertShaderSrcFile, GL_VERTEX_SHADER, GL_SGX_BINARY_IMG, &m_uiPostVertShader, &ErrorStr) != PVR_SUCCESS)
251 if(PVRTShaderLoadFromFile(NULL, c_szFragShaderSrcFile, GL_FRAGMENT_SHADER, GL_SGX_BINARY_IMG, &m_uiPostFragShader, &ErrorStr) != PVR_SUCCESS)
258 if(PVRTCreateProgram(&m_PostShaderProgram.uiId, m_uiPostVertShader, m_uiPostFragShader, aszAttribs, 2, &ErrorStr) != PVR_SUCCESS)
269 if(PVRTShaderLoadFromFile(NULL, c_szBackgroundFragShaderSrcFile, GL_FRAGMENT_SHADER, GL_SGX_BINARY_IMG, &m_uiBackgroundFragShader, &ErrorStr) != PVR_SUCCESS)
276 if(PVRTCreateProgram(&m_BackgroundShaderProgram.uiId, m_uiPostVertShader, m_uiBackgroundFragShader, aszBackgroundAttribs, 2, &ErrorStr) != PVR_SUCCESS)
285 if(PVRTShaderLoadFromFile(NULL, c_szSceneVertShaderSrcFile, GL_VERTEX_SHADER, GL_SGX_BINARY_IMG, &m_uiSceneVertShader, &ErrorStr) != PVR_SUCCESS)
290 if(PVRTShaderLoadFromFile(NULL, c_szSceneFragShaderSrcFile, GL_FRAGMENT_SHADER, GL_SGX_BINARY_IMG, &m_uiSceneFragShader, &ErrorStr) != PVR_SUCCESS
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
MachOObject.cpp 94 std::string *ErrorStr) {
107 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid magic)";
114 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid header)";
123 if (ErrorStr) *ErrorStr = "not a Mach object file (unreasonable header)";
127 if (ErrorStr) *ErrorStr = "";
  /external/llvm/tools/llvm-as/
llvm-as.cpp 107 std::string ErrorStr;
108 raw_string_ostream OS(ErrorStr);
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
hw.c 26 IN CHAR8 *ErrorStr,
40 ErrorStr - ASCII string to display on error
58 DEBUG ((D_INIT, "Device Already Loaded for %a device\n", ErrorStr));

Completed in 1600 milliseconds

1 2 3 4