HomeSort by relevance Sort by last modified time
    Searched refs:Msg (Results 1 - 25 of 101) 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 25 const Twine &Msg) {
29 SrcMgr.PrintMessage(Loc.front(), Kind, Msg);
35 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg) {
36 PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
39 void PrintWarning(const char *Loc, const Twine &Msg) {
40 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Warning, Msg);
43 void PrintWarning(const Twine &Msg) {
44 errs() << "warning:" << Msg << "\n";
47 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
48 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
    [all...]
  /external/clang/include/clang/Edit/
Rewriters.h 21 bool rewriteObjCRedundantCallWithLiteral(const ObjCMessageExpr *Msg,
24 bool rewriteToObjCLiteralSyntax(const ObjCMessageExpr *Msg,
28 bool rewriteToObjCSubscriptSyntax(const ObjCMessageExpr *Msg,
  /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/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 105 /// Warning - Emit a warning at the location \p L, with the message \p Msg.
108 virtual bool Warning(SMLoc L, const Twine &Msg,
111 /// Error - Emit an error at the location \p L, with the message \p Msg.
115 virtual bool Error(SMLoc L, const Twine &Msg,
126 bool TokError(const Twine &Msg,
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 66 SmallString<256> Msg;
67 llvm::raw_svector_ostream OS(Msg);
  /external/clang/unittests/AST/
MatchVerifier.h 132 llvm::raw_string_ostream Msg(MsgStr);
133 Msg << "Expected location <" << ExpectLine << ":" << ExpectColumn
135 Loc.print(Msg, *Result.SourceManager);
136 Msg << '>';
137 this->setFailure(Msg.str());
176 llvm::raw_string_ostream Msg(MsgStr);
177 Msg << "Expected range <" << ExpectBeginLine << ":" << ExpectBeginColumn
179 Begin.print(Msg, *Result.SourceManager);
180 Msg << '-';
181 End.print(Msg, *Result.SourceManager)
    [all...]
  /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;
102 void NoReturnFunctionChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
105 if (const ObjCMethodDecl *MD = Msg.getDecl()) {
124 if (!Msg.isInstanceMessage())
127 const ObjCInterfaceDecl *Receiver = Msg.getReceiverInterface();
133 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);
CallAndMessageChecker.cpp 46 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
56 void emitNilReceiverBug(CheckerContext &C, const ObjCMethodCall &msg,
61 const ObjCMethodCall &msg) const;
90 const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call);
91 switch (Msg.getMessageKind()) {
95 assert(Msg.isSetter() && "Getters have no args");
98 if (Msg.isSetter() && IsFirstArgument)
307 void CallAndMessageChecker::checkPreObjCMessage(const ObjCMethodCall &msg,
309 SVal recVal = msg.getReceiverSVal();
313 switch (msg.getMessageKind())
    [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); }
  /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) { }
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 139 CallEventRef<ObjCMethodCall> Msg =
145 *Msg, *this);
148 *Msg, *this);
158 CallEventRef<ObjCMethodCall> UpdatedMsg = Msg.cloneWithState(State);
209 *Msg, *this);
214 *Msg, *this);

Completed in 224 milliseconds

1 2 3 4 5