HomeSort by relevance Sort by last modified time
    Searched defs:ErrorInfo (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
BitWriter.cpp 19 std::string ErrorInfo;
20 raw_fd_ostream OS(Path, ErrorInfo,
23 if (!ErrorInfo.empty())
  /external/swiftshader/third_party/LLVM/tools/llvm-as/
llvm-as.cpp 71 std::string ErrorInfo;
73 (new tool_output_file(OutputFilename.c_str(), ErrorInfo,
75 if (!ErrorInfo.empty()) {
76 errs() << ErrorInfo << '\n';
  /external/nist-sip/java/gov/nist/javax/sip/header/
ErrorInfo.java 37 * ErrorInfo SIP Header.
46 public final class ErrorInfo
55 protected GenericURI errorInfo;
60 public ErrorInfo() {
66 * @param errorInfo -- the error information to set.
68 public ErrorInfo(GenericURI errorInfo) {
70 this.errorInfo = errorInfo;
79 new StringBuffer(LESS_THAN).append(errorInfo.toString()).append
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DOTGraphTraitsPass.h 61 std::string ErrorInfo;
62 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
69 if (ErrorInfo.empty())
  /external/swiftshader/third_party/LLVM/lib/Analysis/
CFGPrinter.cpp 83 std::string ErrorInfo;
84 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
86 if (ErrorInfo.empty())
117 std::string ErrorInfo;
118 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
120 if (ErrorInfo.empty())
  /external/swiftshader/third_party/LLVM/tools/llvm-link/
llvm-link.cpp 119 std::string ErrorInfo;
120 tool_output_file Out(OutputFilename.c_str(), ErrorInfo,
122 if (!ErrorInfo.empty()) {
123 errs() << ErrorInfo << '\n';
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/
RegularExpressionDxe.c 90 OnigErrorInfo ErrorInfo;
123 &ErrorInfo
127 onig_error_code_to_str (ErrorMessage, OnigResult, &ErrorInfo);
  /external/swiftshader/third_party/LLVM/tools/llvm-dis/
llvm-dis.cpp 164 std::string ErrorInfo;
166 Out(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
168 if (!ErrorInfo.empty()) {
169 errs() << ErrorInfo << '\n';
  /external/swiftshader/third_party/LLVM/tools/llvm-extract/
llvm-extract.cpp 219 std::string ErrorInfo;
220 tool_output_file Out(OutputFilename.c_str(), ErrorInfo,
222 if (!ErrorInfo.empty()) {
223 errs() << ErrorInfo << '\n';
  /external/ImageMagick/MagickCore/
color.h 65 } ErrorInfo;
  /external/llvm/lib/AsmParser/
LLLexer.h 32 SMDiagnostic &ErrorInfo;
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLLexer.h 32 SMDiagnostic &ErrorInfo;
  /frameworks/compile/libbcc/lib/
Source.cpp 179 std::string ErrorInfo;
180 llvm::raw_string_ostream ErrorStream(ErrorInfo);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comdef.h 50 IErrorInfo *ErrorInfo() const throw();
93 inline IErrorInfo *_com_error::ErrorInfo() const throw() {
  /external/jsoncpp/include/json/
reader.h 181 class ErrorInfo {
188 typedef std::deque<ErrorInfo> Errors;
  /external/llvm/unittests/Support/
ErrorTest.cpp 23 class CustomError : public ErrorInfo<CustomError> {
40 // Used by ErrorInfo::classID.
45 // yet, so we can't propagate the constructors through ErrorInfo. Instead
57 class CustomSubError : public ErrorInfo<CustomSubError, CustomError> {
76 // Used by ErrorInfo::classID.
413 int ErrorInfo = 0;
420 [&](const CustomError &CE) { ErrorInfo = CE.getInfo(); });
422 EXPECT_EQ(ErrorInfo, 7)
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
GraphWriter.h 326 std::string ErrorInfo;
327 raw_fd_ostream O(Filename.c_str(), ErrorInfo);
329 if (ErrorInfo.empty()) {
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExtractFunction.cpp 328 std::string ErrorInfo;
329 tool_output_file BlocksToNotExtractFile(uniqueFilename.c_str(), ErrorInfo);
330 if (!ErrorInfo.empty()) {
332 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
348 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
  /external/swiftshader/third_party/LLVM/tools/llvm-ld/
llvm-ld.cpp 238 std::string ErrorInfo;
239 tool_output_file Out(FileName.c_str(), ErrorInfo,
241 if (!ErrorInfo.empty()) {
242 PrintAndExit(ErrorInfo, M);
430 std::string ErrorInfo;
431 tool_output_file Out2(OutputFilename.c_str(), ErrorInfo);
432 if (!ErrorInfo.empty())
433 PrintAndExit(ErrorInfo, M);
  /external/swiftshader/third_party/LLVM/tools/opt/
opt.cpp 523 std::string ErrorInfo;
524 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
526 if (!ErrorInfo.empty()) {
527 errs() << ErrorInfo << '\n';
576 std::string ErrorInfo;
577 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
579 if (!ErrorInfo.empty()) {
580 errs() << ErrorInfo << '\n';
  /bionic/libc/kernel/uapi/linux/
cciss_defs.h 104 DWORD ErrorInfo;
  /external/kernel-headers/original/uapi/linux/
cciss_defs.h 111 DWORD ErrorInfo;
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 323 unsigned ErrorInfo;
325 switch (MatchInstructionImpl(Operands, Inst, ErrorInfo)) {
338 if (ErrorInfo != ~0U) {
339 if (ErrorInfo >= Operands.size())
342 ErrorLoc = ((MBlazeOperand*)Operands[ErrorInfo])->getStartLoc();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
cciss_defs.h 110 DWORD ErrorInfo;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
FormDisplay.h 233 CHAR16 *ErrorInfo;

Completed in 983 milliseconds

1 2 3