Searched defs:Msg (Results 1 - 25 of 66) sorted by relevance

123

/external/clang/include/clang/Basic/
H A DPrettyStackTrace.h32 PrettyStackTraceLoc(SourceManager &sm, SourceLocation L, const char *Msg) argument
33 : SM(sm), Loc(L), Message(Msg) {}
/external/clang/include/clang/Sema/
H A DPrettyDeclStackTrace.h39 const char *Msg)
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
38 PrettyDeclStackTraceEntry(Sema &S, Decl *D, SourceLocation Loc, const char *Msg) argument
/external/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp67 SmallString<256> Msg; local
68 llvm::raw_svector_ostream OS(Msg);
H A DHeaderIncludeGen.cpp114 SmallString<256> Msg; local
118 Msg += '.';
119 Msg += ' ';
121 Msg += Filename;
122 Msg += '\n';
124 OutputFile->write(Msg.data(), Msg.size());
/external/clang/lib/Sema/
H A DDelayedDiagnostic.cpp26 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();
22 makeDeprecation(SourceLocation Loc, const NamedDecl *D, const ObjCInterfaceDecl *UnknownObjCClass, const ObjCPropertyDecl *ObjCProperty, StringRef Msg) argument
H A DScopeInfo.cpp125 void FunctionScopeInfo::recordUseOfWeak(const ObjCMessageExpr *Msg, argument
127 assert(Msg && Prop);
129 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)];
130 Uses.push_back(WeakUseTy(Msg, Msg->getNumArgs() == 0));
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDivZeroChecker.cpp27 void reportBug(const char *Msg,
35 void DivZeroChecker::reportBug(const char *Msg, argument
42 BugReport *R = new BugReport(*BT, Msg, N);
H A DNoReturnFunctionChecker.cpp100 void NoReturnFunctionChecker::checkPostObjCMessage(const ObjCMethodCall &Msg, argument
103 if (const ObjCMethodDecl *MD = Msg.getDecl()) {
122 if (!Msg.isInstanceMessage())
125 const ObjCInterfaceDecl *Receiver = Msg.getReceiverInterface();
131 Selector Sel = Msg.getSelector();
H A DObjCSelfInitChecker.cpp54 static bool isInitMessage(const ObjCMethodCall &Msg);
66 void checkPostObjCMessage(const ObjCMethodCall &Msg, CheckerContext &C) const;
170 void ObjCSelfInitChecker::checkPostObjCMessage(const ObjCMethodCall &Msg, argument
181 if (isInitMessage(Msg)) {
190 SVal V = state->getSVal(Msg.getOriginExpr(), C.getLocationContext());
/external/llvm/lib/CodeGen/
H A DRegAllocBase.cpp109 const char *Msg = "ran out of registers during register allocation"; local
117 MI->emitError(Msg);
119 report_fatal_error(Msg);
/external/llvm/lib/MC/MCParser/
H A DMCAsmParser.cpp36 bool MCAsmParser::TokError(const Twine &Msg, ArrayRef<SMRange> Ranges) { argument
37 Error(getLexer().getLoc(), Msg, Ranges);
H A DAsmLexer.cpp46 AsmToken AsmLexer::ReturnError(const char *Loc, const std::string &Msg) { argument
47 SetError(SMLoc::getFromPointer(Loc), Msg); local
/external/llvm/lib/TableGen/
H A DError.cpp26 const Twine &Msg) {
35 SrcMgr.PrintMessage(Loc.front(), Kind, Msg);
41 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg) { argument
42 PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
45 void PrintWarning(const char *Loc, const Twine &Msg) { argument
46 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Warning, Msg); local
49 void PrintWarning(const Twine &Msg) { argument
50 errs() << "warning:" << Msg << "\n";
53 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) { argument
54 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
25 PrintMessage(ArrayRef<SMLoc> Loc, SourceMgr::DiagKind Kind, const Twine &Msg) argument
57 PrintError(const char *Loc, const Twine &Msg) argument
58 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Error, Msg); local
61 PrintError(const Twine &Msg) argument
65 PrintFatalError(const std::string &Msg) argument
70 PrintFatalError(ArrayRef<SMLoc> ErrorLoc, const std::string &Msg) argument
[all...]
H A DTGLexer.cpp42 tgtok::TokKind TGLexer::ReturnError(const char *Loc, const Twine &Msg) { argument
43 PrintError(Loc, Msg);
/external/clang/examples/clang-interpreter/
H A Dmain.cpp96 SmallString<256> Msg; local
97 llvm::raw_svector_ostream OS(Msg);
/external/clang/tools/libclang/
H A DCLog.h43 SmallString<64> Msg; member in class:clang::cxindex::Logger
64 : Name(name), Trace(trace), LogOS(Msg) { }
/external/libnfc-nxp/Linux_x86/
H A DphOsalNfc_Common.h52 phOsalNfc_Message_t Msg; member in struct:phOsalNfc_sMsg
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h59 bool Warning(SMLoc L, const Twine &Msg) { argument
60 return getParser().Warning(L, Msg);
62 bool Error(SMLoc L, const Twine &Msg) { argument
63 return getParser().Error(L, Msg);
65 bool TokError(const Twine &Msg) { argument
66 return getParser().TokError(Msg);
/external/chromium_org/third_party/tlslite/tlslite/
H A Dmessages.py68 class Msg: class in inherits:
83 class Alert(Msg):
108 class HandshakeMsg(Msg):
600 class ChangeCipherSpec(Msg):
616 w = Msg.preWrite(self, trial)
618 return Msg.postWrite(self, w, trial)
669 class ApplicationData(Msg):
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp139 CallEventRef<ObjCMethodCall> Msg = local
145 *Msg, *this);
148 *Msg, *this);
158 CallEventRef<ObjCMethodCall> UpdatedMsg = Msg.cloneWithState(State);
209 *Msg, *this);
214 *Msg, *this);
/external/clang/lib/ARCMigrate/
H A DTransRetainReleaseDealloc.cpp137 ObjCMessageExpr *Msg = E; local
138 Expr *RecContainer = Msg;
140 checkForGCDOrXPC(Msg, RecContainer, rec, RecRange);
142 if (Msg->getMethodFamily() == OMF_release &&
331 void checkForGCDOrXPC(ObjCMessageExpr *Msg, Expr *&RecContainer, argument
333 SourceLocation Loc = Msg->getExprLoc();
349 Stmt *S = Msg;
/external/clang/test/Misc/
H A Dcaret-diags-macros.c28 void baz(char *Msg) { argument
29 sprintf(Msg, " sizeof FoooLib : =%3u\n", 12LL);
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp91 static void PrintResults(const char *Msg, bool P, const Value *V1, argument
103 errs() << " " << Msg << ":\t"
110 PrintModRefResults(const char *Msg, bool P, Instruction *I, Value *Ptr, argument
113 errs() << " " << Msg << ": Ptr: ";
120 PrintModRefResults(const char *Msg, bool P, CallSite CSA, CallSite CSB, argument
123 errs() << " " << Msg << ": " << *CSA.getInstruction()
129 PrintLoadStoreResults(const char *Msg, bool P, const Value *V1, argument
132 errs() << " " << Msg << ": " << *V1
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h196 bool Error(const Twine &Msg) { argument
197 ErrorStr = Msg.str();
/external/llvm/tools/llvm-mcmarkup/
H A Dllvm-mcmarkup.cpp81 void FatalError(SMLoc Loc, StringRef Msg);
84 void MarkupParser::FatalError(SMLoc Loc, StringRef Msg) { argument
85 SM.PrintMessage(Loc, SourceMgr::DK_Error, Msg);

Completed in 3736 milliseconds

123