/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/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/llvm/lib/Support/ |
SourceMgr.cpp | 214 void SourceMgr::PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind,
|
/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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/ |
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/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/protobuf/src/google/protobuf/compiler/python/ |
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/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...] |