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

1 2

  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 19 std::string ErrorInfo;
20 raw_fd_ostream OS(Path, ErrorInfo,
23 if (!ErrorInfo.empty())
  /external/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/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 61 std::string ErrorInfo;
62 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
69 if (ErrorInfo.empty())
  /external/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/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';
  /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/llvm/tools/llvm-dis/
llvm-dis.cpp 170 std::string ErrorInfo;
172 Out(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
174 if (!ErrorInfo.empty()) {
175 errs() << ErrorInfo << '\n';
  /external/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/clang/unittests/Tooling/
RewriterTestContext.h 75 std::string ErrorInfo;
77 ErrorInfo, llvm::raw_fd_ostream::F_Binary);
78 assert(ErrorInfo.empty());
RefactoringTest.cpp 157 std::string ErrorInfo;
158 TemporaryDirectory = llvm::sys::Path::GetTemporaryDirectory(&ErrorInfo);
159 assert(ErrorInfo.empty());
163 std::string ErrorInfo;
164 TemporaryDirectory.eraseFromDisk(true, &ErrorInfo);
165 assert(ErrorInfo.empty());
171 std::string ErrorInfo;
173 ErrorInfo, llvm::raw_fd_ostream::F_Binary);
174 assert(ErrorInfo.empty());
  /external/llvm/lib/AsmParser/
LLLexer.h 32 SMDiagnostic &ErrorInfo;
  /external/clang/lib/Tooling/
Refactoring.cpp 147 std::string ErrorInfo;
149 Entry->getName(), ErrorInfo, llvm::raw_fd_ostream::F_Binary);
150 if (!ErrorInfo.empty())
  /external/llvm/include/llvm/Support/
GraphWriter.h 326 std::string ErrorInfo;
327 raw_fd_ostream O(Filename.c_str(), ErrorInfo);
329 if (ErrorInfo.empty()) {
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 376 std::string ErrorInfo;
377 tool_output_file BlocksToNotExtractFile(uniqueFilename.c_str(), ErrorInfo);
378 if (!ErrorInfo.empty()) {
380 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
396 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
  /external/llvm/tools/opt/
opt.cpp 542 std::string ErrorInfo;
543 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
545 if (!ErrorInfo.empty()) {
546 errs() << ErrorInfo << '\n';
595 std::string ErrorInfo;
596 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
598 if (!ErrorInfo.empty()) {
599 errs() << ErrorInfo << '\n';
  /external/clang/lib/Frontend/
CompilerInstance.cpp 98 std::string ErrorInfo;
100 new llvm::raw_fd_ostream(DiagOpts.DumpBuildInformation.c_str(), ErrorInfo));
101 if (!ErrorInfo.empty()) {
103 << DiagOpts.DumpBuildInformation << ErrorInfo;
121 std::string ErrorInfo;
128 ErrorInfo, llvm::raw_fd_ostream::F_Append));
129 if (!ErrorInfo.empty()) {
131 << DiagOpts.DumpBuildInformation << ErrorInfo;
151 std::string ErrorInfo;
153 OS.reset(new llvm::raw_fd_ostream(OutputFile.str().c_str(), ErrorInfo,
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 553 unsigned ErrorInfo;
556 ErrorInfo,
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 327 unsigned ErrorInfo;
329 switch (MatchInstructionImpl(Operands, Kind, Inst, ErrorInfo)) {
340 if (ErrorInfo != ~0U) {
341 if (ErrorInfo >= Operands.size())
344 ErrorLoc = ((MBlazeOperand*)Operands[ErrorInfo])->getStartLoc();
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 701 std::string ErrorInfo;
702 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
704 if (!ErrorInfo.empty()) {
705 errs() << ErrorInfo << '\n';
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 271 std::string ErrorInfo;
272 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo,
274 if (!ErrorInfo.empty()) {
275 errs() << "Error opening '" << OutFileName << "': " << ErrorInfo << '\n';
781 StringRef ErrorInfo;
782 if (!TII->verifyInstruction(MI, ErrorInfo))
783 report(ErrorInfo.data(), MI);
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 281 unsigned ErrorInfo;
283 unsigned MatchResult = MatchInstructionImpl(Operands, Kind, Inst, ErrorInfo);
297 if (ErrorInfo != ~0U) {
298 if (ErrorInfo >= Operands.size())
301 ErrorLoc = ((MipsOperand*)Operands[ErrorInfo])->getStartLoc();
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 371 std::string ErrorInfo;
372 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cciss_ioctl.h 145 DWORD ErrorInfo;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cciss_ioctl.h 145 DWORD ErrorInfo;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cciss_ioctl.h 145 DWORD ErrorInfo;

Completed in 1114 milliseconds

1 2