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

1 2 3 4 5

  /external/llvm/include/llvm/TableGen/
Error.h 22 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg);
23 void PrintWarning(const char *Loc, const Twine &Msg);
24 void PrintWarning(const Twine &Msg);
26 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
27 void PrintError(const char *Loc, const Twine &Msg);
28 void PrintError(const Twine &Msg);
30 LLVM_ATTRIBUTE_NORETURN void PrintFatalError(const std::string &Msg);
32 const std::string &Msg);
  /external/llvm/lib/TableGen/
Error.cpp 26 const Twine &Msg) {
35 SrcMgr.PrintMessage(Loc.front(), Kind, Msg);
41 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg) {
42 PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
45 void PrintWarning(const char *Loc, const Twine &Msg) {
46 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Warning, Msg);
49 void PrintWarning(const Twine &Msg) {
50 errs() << "warning:" << Msg << "\n";
53 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
54 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
    [all...]
  /external/clang/lib/Sema/
DelayedDiagnostic.cpp 26 StringRef Msg) {
35 if (Msg.size()) {
36 MessageData = new char [Msg.size()];
37 memcpy(MessageData, Msg.data(), Msg.size());
41 DD.DeprecationData.MessageLen = Msg.size();
  /external/clang/include/clang/Edit/
Rewriters.h 27 bool rewriteObjCRedundantCallWithLiteral(const ObjCMessageExpr *Msg,
30 bool rewriteToObjCLiteralSyntax(const ObjCMessageExpr *Msg,
34 bool rewriteToObjCSubscriptSyntax(const ObjCMessageExpr *Msg,
  /external/clang/include/clang/Basic/
PrettyStackTrace.h 32 PrettyStackTraceLoc(SourceManager &sm, SourceLocation L, const char *Msg)
33 : SM(sm), Loc(L), Message(Msg) {}
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 26 static bool checkForLiteralCreation(const ObjCMessageExpr *Msg,
29 if (!Msg || Msg->isImplicit() || !Msg->getMethodDecl())
32 const ObjCInterfaceDecl *Receiver = Msg->getReceiverInterface();
37 if (Msg->getReceiverKind() == ObjCMessageExpr::Class)
43 if (Msg->getReceiverKind() == ObjCMessageExpr::Instance) {
45 Msg->getInstanceReceiver()->IgnoreParenImpCasts())) {
59 bool edit::rewriteObjCRedundantCallWithLiteral(const ObjCMessageExpr *Msg,
62 if (!checkForLiteralCreation(Msg, II, NS.getASTContext().getLangOpts())
    [all...]
  /external/clang/include/clang/Sema/
PrettyDeclStackTrace.h 39 const char *Msg)
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 59 bool Warning(SMLoc L, const Twine &Msg) {
60 return getParser().Warning(L, Msg);
62 bool Error(SMLoc L, const Twine &Msg) {
63 return getParser().Error(L, Msg);
65 bool TokError(const Twine &Msg) {
66 return getParser().TokError(Msg);
MCAsmParser.h 121 /// Warning - Emit a warning at the location \p L, with the message \p Msg.
124 virtual bool Warning(SMLoc L, const Twine &Msg,
127 /// Error - Emit an error at the location \p L, with the message \p Msg.
131 virtual bool Error(SMLoc L, const Twine &Msg,
142 bool TokError(const Twine &Msg, ArrayRef<SMRange> Ranges = None);
AsmLexer.h 57 AsmToken ReturnError(const char *Loc, const std::string &Msg);
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 114 SmallString<256> Msg;
118 Msg += '.';
119 Msg += ' ';
121 Msg += Filename;
122 Msg += '\n';
124 OutputFile->write(Msg.data(), Msg.size());
CreateInvocationFromCommandLine.cpp 67 SmallString<256> Msg;
68 llvm::raw_svector_ostream OS(Msg);
  /external/llvm/lib/MC/MCParser/
MCAsmParser.cpp 36 bool MCAsmParser::TokError(const Twine &Msg, ArrayRef<SMRange> Ranges) {
37 Error(getLexer().getLoc(), Msg, Ranges);
  /external/clang/lib/StaticAnalyzer/Checkers/
NoReturnFunctionChecker.cpp 33 void checkPostObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
100 void NoReturnFunctionChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
103 if (const ObjCMethodDecl *MD = Msg.getDecl()) {
122 if (!Msg.isInstanceMessage())
125 const ObjCInterfaceDecl *Receiver = Msg.getReceiverInterface();
131 Selector Sel = Msg.getSelector();
DivZeroChecker.cpp 27 void reportBug(const char *Msg,
35 void DivZeroChecker::reportBug(const char *Msg,
42 BugReport *R = new BugReport(*BT, Msg, N);
  /external/chromium_org/tools/android/forwarder2/
common.h 34 #define SIGNAL_SAFE_LOG(Level, Msg) \
35 RAW_LOG(Level, Msg);
42 void PError(const char* msg);
  /external/clang/unittests/AST/
MatchVerifier.h 147 llvm::raw_string_ostream Msg(MsgStr);
148 Msg << "Expected location <" << ExpectLine << ":" << ExpectColumn
150 Loc.print(Msg, *Result.SourceManager);
151 Msg << '>';
152 this->setFailure(Msg.str());
191 llvm::raw_string_ostream Msg(MsgStr);
192 Msg << "Expected range <" << ExpectBeginLine << ":" << ExpectBeginColumn
194 Begin.print(Msg, *Result.SourceManager);
195 Msg << '-';
196 End.print(Msg, *Result.SourceManager)
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
emulator-console.c 43 typedef struct Msg {
47 struct Msg* next; // next message in queue.
48 } Msg;
50 static Msg*
53 Msg* msg; local
55 msg = malloc(sizeof(*msg) + datalen);
56 msg->data = (const char*)(msg + 1)
110 Msg* msg = con->out_msg; local
190 Msg* msg = con->out_msg; local
284 Msg* msg; local
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.h 64 bool Error(LocTy L, const Twine &Msg) const;
65 bool Error(const Twine &Msg) const { return Error(getLoc(), Msg); }
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
static_assert.hpp 21 # define BOOST_STATIC_ASSERT_MSG( B, Msg ) static_assert(B, Msg)
23 # define BOOST_STATIC_ASSERT_MSG( B, Msg ) BOOST_STATIC_ASSERT( B )
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 96 for (const char *Msg = Message; *Msg; ++Msg) {
97 if (*Msg != '%') {
100 for (I = 0; Msg[I] && Msg[I] != '%' && I != 63; ++I)
101 Buffer[I] = Msg[I];
104 Msg += I - 1;
106 const Diag::Arg &A = Args[*++Msg - '0'];
  /external/opencv/cxcore/include/
cxerror.h 141 #define CV_ERROR( Code, Msg ) \
143 cvError( (Code), cvFuncName, Msg, __FILE__, __LINE__ ); \
  /external/llvm/lib/CodeGen/
RegAllocBase.cpp 109 const char *Msg = "ran out of registers during register allocation";
117 MI->emitError(Msg);
119 report_fatal_error(Msg);
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Common.h 52 phOsalNfc_Message_t Msg;
  /external/clang/tools/libclang/
CLog.h 43 SmallString<64> Msg;
64 : Name(name), Trace(trace), LogOS(Msg) { }

Completed in 2189 milliseconds

1 2 3 4 5