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

1 2 3

  /external/swiftshader/third_party/LLVM/lib/TableGen/
Error.cpp 23 void PrintError(SMLoc ErrorLoc, const Twine &Msg) {
27 void PrintError(const char *Loc, const Twine &Msg) {
31 void PrintError(const Twine &Msg) {
35 void PrintError(const TGError &Error) {
36 PrintError(Error.getLoc(), Error.getMessage());
Main.cpp 112 PrintError(Error);
114 PrintError(Error);
116 PrintError(Error);
  /external/lzma/CPP/7zip/UI/Console/
MainAr.cpp 40 static void PrintError(const char *message)
74 PrintError(kMemoryExceptionMessage);
79 PrintError(kUserBreakMessage);
84 PrintError(kException_CmdLine_Error_Message);
93 PrintError(kMemoryExceptionMessage);
98 PrintError(kUserBreakMessage);
103 PrintError("System ERROR:");
119 PrintError(kExceptionErrorMessage);
128 PrintError(kExceptionErrorMessage);
137 PrintError(kExceptionErrorMessage);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/TableGen/
Error.h 32 void PrintError(SMLoc ErrorLoc, const Twine &Msg);
33 void PrintError(const char *Loc, const Twine &Msg);
34 void PrintError(const Twine &Msg);
35 void PrintError(const TGError &Error);
  /external/llvm/include/llvm/TableGen/
Error.h 26 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
27 void PrintError(const char *Loc, const Twine &Msg);
28 void PrintError(const Twine &Msg);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
Error.h 28 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
29 void PrintError(const char *Loc, const Twine &Msg);
30 void PrintError(const Twine &Msg);
  /external/llvm/lib/TableGen/
Error.cpp 54 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
58 void PrintError(const char *Loc, const Twine &Msg) {
62 void PrintError(const Twine &Msg) {
67 PrintError(Msg);
74 PrintError(ErrorLoc, Msg);
  /external/webrtc/webrtc/base/
checks.cc 47 void PrintError(const char* format, ...) {
62 PrintError("\n==== C stack trace ===============================\n\n");
64 PrintError("(empty)\n");
66 PrintError("(no symbols)\n");
71 PrintError("%2d: ", i);
75 PrintError("%s\n", demangled != NULL ? demangled : mangled);
79 PrintError("%s\n", symbols[i]);
101 PrintError(stream_.str().c_str());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
Error.cpp 57 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
61 void PrintError(const char *Loc, const Twine &Msg) {
65 void PrintError(const Twine &Msg) { WithColor::error() << Msg << "\n"; }
68 PrintError(Msg);
75 PrintError(ErrorLoc, Msg);
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 121 static void PrintError(const char *message)
129 static void PrintError(const char *message, const FString &name)
131 PrintError(message);
198 PrintError("Password is not defined");
386 PrintError("Can not delete output file", fullProcessedPath);
395 PrintError("Can not open output file", fullProcessedPath);
495 PrintError("Password is not defined");
663 PrintError("WARNING: can't open file");
718 PrintError("Password is not defined");
729 #define NT_CHECK_FAIL_ACTION PrintError("Unsupported Windows version"); return 1;
    [all...]
  /external/lzma/C/Util/Lzma/
LzmaUtil.c 32 static int PrintError(char *buffer, const char *message)
48 return PrintError(buffer, "Incorrect command");
206 return PrintError(rs, "Incorrect UInt32 or UInt64");
210 return PrintError(rs, "Can not open input file");
216 return PrintError(rs, "Can not open output file");
239 return PrintError(rs, kCantAllocateMessage);
241 return PrintError(rs, kDataErrorMessage);
243 return PrintError(rs, kCantWriteMessage);
245 return PrintError(rs, kCantReadMessage);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
LzmaCompress.c 72 int PrintError(char *buffer, const char *message)
88 return PrintError(buffer, "Incorrect command");
326 return PrintError(rs, "Incorrect UInt32 or UInt64");
330 return PrintError(rs, "Can not open input file");
334 return PrintError(rs, "Can not open output file");
360 return PrintError(rs, kCantAllocateMessage);
362 return PrintError(rs, kDataErrorMessage);
364 return PrintError(rs, kCantWriteMessage);
366 return PrintError(rs, kCantReadMessage);
  /external/v8/src/base/
logging.cc 158 v8::base::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file,
166 v8::base::OS::PrintError("\n#\n#\n#\n#FailureMessage Object: %p", &message);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
CFBundle.cpp 153 auto PrintError = [&](CFTypeID TypeID) {
170 PrintError(TypeID);
178 PrintError(TypeID);
  /external/python/cpython3/Modules/_ctypes/
callbacks.c 80 PrintError(const char *msg, ...)
147 PrintError("BUG: PySequence_Length");
153 PrintError("PyTuple_New()");
163 PrintError("Getting argument converter %d\n", i);
170 PrintError("create argument %d:\n", i);
184 PrintError("create argument %d:\n", i);
191 PrintError("unexpected result of create argument %d:\n", i);
202 PrintError("Parsing argument %d\n", i);
  /external/lzma/C/Util/7z/
7zMain.c 350 static void PrintError(char *s)
404 PrintError("incorrect command");
422 PrintError("can not open input file");
464 PrintError("incorrect command");
596 PrintError("can not open output file");
605 PrintError("can not write output file");
637 PrintError("can not close output file");
673 PrintError("decoder doesn't support this archive");
675 PrintError("can not allocate memory");
677 PrintError("CRC error");
    [all...]
  /external/llvm/utils/TableGen/
DisassemblerEmitter.cpp 120 PrintError(Target.getTargetRecord()->getLoc(), "Primary decode conflict");
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DisassemblerEmitter.cpp 121 PrintError(Target.getTargetRecord()->getLoc(), "Primary decode conflict");
CodeGenHwModes.cpp 36 PrintError(R->getLoc(), "in record " + R->getName() +
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 151 static void PrintError(const char *s)
159 PrintError(s1);
167 PrintError(s);
296 PrintError(s);
317 #define NT_CHECK_FAIL_ACTION PrintError("Unsupported Windows version"); return 1;
762 PrintError("Decoding error");
791 PrintError(s);
796 PrintError("Unknown Error");
  /external/python/cpython2/Modules/_ctypes/
callbacks.c 86 PrintError(char *msg, ...)
230 PrintError("BUG: PySequence_Length");
236 PrintError("PyTuple_New()");
246 PrintError("Getting argument converter %d\n", i);
253 PrintError("create argument %d:\n", i);
267 PrintError("create argument %d:\n", i);
274 PrintError("unexpected result of create argument %d:\n", i);
285 PrintError("Parsing argument %d\n", i);
  /external/tinyxml2/docs/search/
all_c.js 9 ['printerror',['PrintError',['../classtinyxml2_1_1_x_m_l_document.html#a1d033945b42e125d933d6231e4571552',1,'tinyxml2::XMLDocument']]],
functions_c.js 8 ['printerror',['PrintError',['../classtinyxml2_1_1_x_m_l_document.html#a1d033945b42e125d933d6231e4571552',1,'tinyxml2::XMLDocument']]],
  /external/epid-sdk/epid/member/
member.parts 89 PrintError("--use-tss is not compatiable with x86_64 target. "
94 env.PrintError("Necessary environment variable not set: ",
  /external/v8/benchmarks/
run.js 46 function PrintError(name, error) {
61 NotifyError: PrintError,

Completed in 1323 milliseconds

1 2 3