Searched defs:ErrorMsg (Results 1 - 12 of 12) sorted by relevance

/external/llvm/utils/fpcmp/
H A Dfpcmp.cpp35 std::string ErrorMsg; local
37 &ErrorMsg);
38 if (!ErrorMsg.empty())
39 errs() << argv[0] << ": " << ErrorMsg << "\n"; local
/external/llvm/tools/lli/
H A DRemoteTarget.h34 std::string ErrorMsg; member in class:llvm::RemoteTarget
37 StringRef getErrorMsg() const { return ErrorMsg; }
45 /// @returns True on success. On failure, ErrorMsg is updated with
69 /// @returns True on success. On failure, ErrorMsg is updated with
81 /// @returns True on success. On failure, ErrorMsg is updated with
94 /// @returns True on success. On failure, ErrorMsg is updated with
112 RemoteTarget() : IsRunning(false), ErrorMsg("") {}
H A Dlli.cpp436 std::string ErrorMsg; local
443 builder.setErrorStr(&ErrorMsg);
501 if (!ErrorMsg.empty())
502 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n"; local
/external/clang/tools/libclang/
H A DCXCompilationDatabase.cpp16 std::string ErrorMsg; local
20 CompilationDatabase::loadFromDirectory(BuildDir, ErrorMsg);
23 fprintf(stderr, "LIBCLANG TOOLING ERROR: %s\n", ErrorMsg.c_str());
/external/llvm/lib/Support/
H A DFileUtilities.cpp83 std::string *ErrorMsg) {
128 if (ErrorMsg) {
129 *ErrorMsg = "FP Comparison failed, not a numeric difference between '";
130 *ErrorMsg += F1P[0];
131 *ErrorMsg += "' and '";
132 *ErrorMsg += F2P[0];
133 *ErrorMsg += "'";
149 if (ErrorMsg) {
150 raw_string_ostream(*ErrorMsg)
80 CompareNumbers(const char *&F1P, const char *&F2P, const char *F1End, const char *F2End, double AbsTolerance, double RelTolerance, std::string *ErrorMsg) argument
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h126 createOrcMCJITReplacement(std::string *ErrorMsg, argument
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler.h50 char * ErrorMsg; member in struct:radeon_compiler
/external/sonivox/jet_tools/JetCreator/
H A DJetCtrls.py379 def ErrorMsg(title, message): function
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp370 std::string ErrorMsg; local
371 std::tie(OldAddrInt, ErrorMsg) =
374 if (ErrorMsg != "") {
375 errs() << ErrorMsg;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp98 EvalResult() : Value(0), ErrorMsg("") {}
99 EvalResult(uint64_t Value) : Value(Value), ErrorMsg("") {}
100 EvalResult(std::string ErrorMsg) : Value(0), ErrorMsg(ErrorMsg) {} argument
102 bool hasError() const { return ErrorMsg != ""; }
103 const std::string &getErrorMsg() const { return ErrorMsg; }
107 std::string ErrorMsg; member in class:llvm::RuntimeDyldCheckerExprEval::EvalResult
130 std::string ErrorMsg("Encountered unexpected token '");
131 ErrorMsg
360 std::string ErrorMsg = ""; local
397 std::string ErrorMsg = ""; local
759 std::string ErrorMsg = "File '"; local
790 std::string ErrorMsg; local
815 std::string ErrorMsg; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp1754 class ErrorMsg : public QMessageBox { class in inherits:QMessageBox
1756 ErrorMsg(QWidget *parent, DWORD last_err = GetLastError());
1762 ErrorMsg::ErrorMsg(QWidget *parent, DWORD last_err) : function in class:ErrorMsg
1769 void ErrorMsg::showMsg(QString msg)
1795 ErrorMsg(this).showMsg(tr("OpenSCManager failed"));
1801 ErrorMsg(this).showMsg(tr("OpenService failed"));
1807 ErrorMsg(this).showMsg(tr("Failed to start wpa_supplicant "
1823 ErrorMsg(this).showMsg(tr("OpenSCManager failed"));
1829 ErrorMsg(thi
[all...]
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp206 bool reportParseError(Twine ErrorMsg);
207 bool reportParseError(SMLoc Loc, Twine ErrorMsg);
3287 bool MipsAsmParser::reportParseError(Twine ErrorMsg) { argument
3291 return Error(Loc, ErrorMsg);
3294 bool MipsAsmParser::reportParseError(SMLoc Loc, Twine ErrorMsg) { argument
3295 return Error(Loc, ErrorMsg);

Completed in 1437 milliseconds