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

1 2

  /external/llvm/include/llvm/
Linker.h 39 /// If \p ErrorMsg is not null, information about any error is written
42 bool linkInModule(Module *Src, unsigned Mode, std::string *ErrorMsg);
43 bool linkInModule(Module *Src, std::string *ErrorMsg) {
44 return linkInModule(Src, Linker::DestroySource, ErrorMsg);
48 std::string *ErrorMsg);
  /external/llvm/tools/lli/
RemoteTarget.h 28 std::string ErrorMsg;
34 StringRef getErrorMsg() const { return ErrorMsg; }
42 /// @returns False on success. On failure, ErrorMsg is updated with
52 /// @returns False on success. On failure, ErrorMsg is updated with
62 /// @returns False on success. On failure, ErrorMsg is updated with
73 /// @returns False on success. On failure, ErrorMsg is updated with
90 RemoteTarget() : ErrorMsg(""), IsRunning(false) {}
RemoteTarget.cpp 26 sys::MemoryBlock Mem = sys::Memory::AllocateRWX(Size, Prev, &ErrorMsg);
30 ErrorMsg = "unable to allocate sufficiently aligned memory";
45 sys::Memory::setExecutable(Mem, &ErrorMsg);
lli.cpp 320 std::string ErrorMsg;
322 if (Mod->MaterializeAllPermanently(&ErrorMsg)) {
324 errs() << "Reason: " << ErrorMsg << "\n";
346 builder.setErrorStr(&ErrorMsg);
403 if (!ErrorMsg.empty())
404 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
  /external/llvm/utils/fpcmp/
fpcmp.cpp 35 std::string ErrorMsg;
37 &ErrorMsg);
38 if (!ErrorMsg.empty())
39 errs() << argv[0] << ": " << ErrorMsg << "\n";
  /external/llvm/lib/Support/
FileUtilities.cpp 84 std::string *ErrorMsg) {
129 if (ErrorMsg) {
130 *ErrorMsg = "FP Comparison failed, not a numeric difference between '";
131 *ErrorMsg += F1P[0];
132 *ErrorMsg += "' and '";
133 *ErrorMsg += F2P[0];
134 *ErrorMsg += "'";
150 if (ErrorMsg) {
151 raw_string_ostream(*ErrorMsg)
  /external/clang/tools/libclang/
CXCompilationDatabase.cpp 15 std::string ErrorMsg;
19 ErrorMsg);
22 fprintf(stderr, "LIBCLANG TOOLING ERROR: %s\n", ErrorMsg.c_str());
  /frameworks/compile/slang/
slang_rs_reflection.h 94 std::string &ErrorMsg);
180 std::string &ErrorMsg);
232 std::string &ErrorMsg);
285 std::string &ErrorMsg);
slang_rs_reflection.cpp 281 std::string &ErrorMsg) {
286 ErrorMsg))
    [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 220 std::string ErrorMsg;
225 if (Linker::LinkModules(M1, M2, Linker::DestroySource, &ErrorMsg)) {
227 << ErrorMsg << '\n';
399 std::string ErrorMsg;
401 Linker::DestroySource, &ErrorMsg)){
403 << ErrorMsg << '\n';
433 std::string ErrorMsg;
435 Linker::DestroySource, &ErrorMsg)){
437 << ErrorMsg << '\n';
613 std::string ErrorMsg;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 50 char * ErrorMsg;
radeon_compiler.c 49 free(c->ErrorMsg);
70 if (!c->ErrorMsg) {
80 c->ErrorMsg = strdup(buf);
82 c->ErrorMsg = malloc(written + 1);
85 vsnprintf(c->ErrorMsg, written + 1, fmt, ap);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 50 char * ErrorMsg;
radeon_compiler.c 49 free(c->ErrorMsg);
70 if (!c->ErrorMsg) {
80 c->ErrorMsg = strdup(buf);
82 c->ErrorMsg = malloc(written + 1);
85 vsnprintf(c->ErrorMsg, written + 1, fmt, ap);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp     [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 99 void ErrorMsg(const char *, int,const char *, ...);
760 ErrorMsg(lemp->filename,0,
778 ErrorMsg(lemp->filename,0,
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 408 std::string ErrorMsg;
421 ErrorMsg = Message.str();
    [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 144 std::string ErrorMsg;
146 &ErrorMsg)) {
148 << LinkModule->getModuleIdentifier() << ErrorMsg;
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 665 std::string ErrorMsg;
666 if (F->Materialize(&ErrorMsg)) {
668 "' from bitcode file: " + ErrorMsg);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_vs.c 261 " instead.\n", compiler.Base.ErrorMsg);
r300_fs.c 521 " instead.\n", compiler.Base.ErrorMsg);
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs.c 261 " instead.\n", compiler.Base.ErrorMsg);
r300_fs.c 521 " instead.\n", compiler.Base.ErrorMsg);
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 144 bool reportParseError(StringRef ErrorMsg);
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 379 def ErrorMsg(title, message):

Completed in 1141 milliseconds

1 2