HomeSort by relevance Sort by last modified time
    Searched refs:PrintMessage (Results 1 - 19 of 19) sorted by null

  /external/llvm/lib/TableGen/
Error.cpp 25 static void PrintMessage(ArrayRef<SMLoc> Loc, SourceMgr::DiagKind Kind,
35 SrcMgr.PrintMessage(Loc.front(), Kind, Msg);
37 SrcMgr.PrintMessage(Loc[i], SourceMgr::DK_Note,
42 PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
46 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Warning, Msg);
54 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
58 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Error, Msg);
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 70 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
83 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
140 SM.PrintMessage(SMLoc::getFromPointer(Value.data()), SourceMgr::DK_Error,
182 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error,
191 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error,
209 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error,
llvm-mc.cpp 253 SrcMgr.PrintMessage(Lexer.getLoc(), SourceMgr::DK_Warning,
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 89 static void PrintMessage(const char *s)
96 PrintMessage("\nUsage: LZMA <e|d> inputFile outputFile [<switches>...]\n"
156 #define NT_CHECK_FAIL_ACTION PrintMessage("Unsupported Windows version"); return 1;
162 PrintMessage("\nLZMA " MY_VERSION_COPYRIGHT_DATE "\n");
173 PrintMessage("Unsupported base types. Edit Common/Types.h and recompile");
458 PrintMessage(kWriteError);
465 PrintMessage("\nError: Can not allocate memory\n");
483 PrintMessage(kReadError);
488 PrintMessage("SetDecoderProperties error");
497 PrintMessage("Decoder error");
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 163 SM.PrintMessage(PatternLoc, SourceMgr::DK_Error,
189 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
221 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
235 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error,
247 SM.PrintMessage(SMLoc::getFromPointer(Name.data()),
257 SM.PrintMessage(SMLoc::getFromPointer(Name.data()+i),
265 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error,
277 SM.PrintMessage(SMLoc::getFromPointer(Name.data()),
343 SM.PrintMessage(SMLoc::getFromPointer(RS.data()), SourceMgr::DK_Error,
504 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note
    [all...]
  /external/clang/utils/TableGen/
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 63 SrcMgr.PrintMessage(Tag.getLoc().front(),
ClangDiagnosticsEmitter.cpp 244 SrcMgr.PrintMessage(NextDiagGroup->getLoc().front(),
251 SrcMgr.PrintMessage((*I)->ExplicitDef->getLoc().front(),
266 SrcMgr.PrintMessage(NextDiagGroup->getLoc().front(),
275 SrcMgr.PrintMessage(GroupInit->getDef()->getLoc().front(),
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 85 SM.PrintMessage(Loc, SourceMgr::DK_Error, Msg);
202 SrcMgr.PrintMessage(Tag.getLoc(), SourceMgr::DK_Error,
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
text_format.py 42 __all__ = [ 'MessageToString', 'PrintMessage', 'PrintField',
60 PrintMessage(message, out, as_utf8=as_utf8, as_one_line=as_one_line)
68 def PrintMessage(message, out, indent=0, as_utf8=False, as_one_line=False):
118 PrintMessage(value, out, indent, as_utf8, as_one_line)
122 PrintMessage(value, out, indent + 2, as_utf8, as_one_line)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
python_generator.h 97 void PrintMessage(const Descriptor& message_descriptor) const;
python_generator.cc 638 PrintMessage(*file_->message_type(i));
650 void Generator::PrintMessage(
671 // Mutually recursive with PrintMessage().
676 PrintMessage(*containing_descriptor.nested_type(i));
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.h 97 void PrintMessage(const Descriptor& message_descriptor) const;
python_generator.cc 609 PrintMessage(*file_->message_type(i));
621 void Generator::PrintMessage(
642 // Mutually recursive with PrintMessage().
647 PrintMessage(*containing_descriptor.nested_type(i));
    [all...]
  /external/protobuf/python/google/protobuf/
text_format.py 42 __all__ = [ 'MessageToString', 'PrintMessage', 'PrintField',
58 PrintMessage(message, out)
64 def PrintMessage(message, out, indent = 0):
109 PrintMessage(value, out, indent + 2)
  /external/llvm/include/llvm/Support/
SourceMgr.h 45 /// handler. It gets called each time PrintMessage is invoked.
82 /// PrintMessage is called. Ctx is passed into the handler when it is invoked.
142 /// PrintMessage - Emit a message about the specified location with the
147 void PrintMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
  /external/llvm/lib/MC/
MCContext.cpp 395 SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg);
  /external/llvm/lib/Support/
SourceMgr.cpp 214 void SourceMgr::PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind,
YAMLParser.cpp 264 SM.PrintMessage(Loc, Kind, Message, Ranges);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 298 void PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg,
300 SrcMgr.PrintMessage(Loc, Kind, Msg, Ranges);
526 PrintMessage((*it)->InstantiationLoc, SourceMgr::DK_Note,
533 PrintMessage(L, SourceMgr::DK_Warning, Msg, Ranges);
540 PrintMessage(L, SourceMgr::DK_Error, Msg, Ranges);
663 PrintMessage(getLexer().getLoc(), SourceMgr::DK_Error,
    [all...]

Completed in 1478 milliseconds