HomeSort by relevance Sort by last modified time
    Searched refs:Msg (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 226 std::string msg; local
227 raw_string_ostream Msg(msg);
228 Msg << "invalid operand in inline asm: '" << AsmStr << "'";
229 MMI->getModule()->getContext().emitError(LocCookie, Msg.str());
398 std::string msg; local
399 raw_string_ostream Msg(msg);
400 Msg << "invalid operand in inline asm: '" << AsmStr << "'";
401 MMI->getModule()->getContext().emitError(LocCookie, Msg.str())
510 std::string msg; local
    [all...]
  /external/clang/lib/Sema/
ScopeInfo.cpp 125 void FunctionScopeInfo::recordUseOfWeak(const ObjCMessageExpr *Msg,
127 assert(Msg && Prop);
129 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)];
130 Uses.push_back(WeakUseTy(Msg, Msg->getNumArgs() == 0));
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 105 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) {
113 const ObjCMethodDecl *D = Msg->getDecl();
116 switch (Msg->getMethodFamily()) {
126 const ObjCMessageExpr *MsgE = Msg->getOriginExpr();
138 const MemRegion *RecReg = Msg->getReceiverSVal().getAsRegion();
ObjCSelfInitChecker.cpp 54 static bool isInitMessage(const ObjCMethodCall &Msg);
66 void checkPostObjCMessage(const ObjCMethodCall &Msg, CheckerContext &C) const;
170 void ObjCSelfInitChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
181 if (isInitMessage(Msg)) {
190 SVal V = state->getSVal(Msg.getOriginExpr(), C.getLocationContext());
  /external/llvm/include/llvm/Support/
SourceMgr.h 147 void PrintMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
156 /// @param Msg If non-null, the kind of message (e.g., "error") which is
158 SMDiagnostic GetMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
221 SMDiagnostic(StringRef filename, SourceMgr::DiagKind Knd, StringRef Msg)
223 Message(Msg) {}
228 StringRef Msg, StringRef LineStr,
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 81 void FatalError(SMLoc Loc, StringRef Msg);
84 void MarkupParser::FatalError(SMLoc Loc, StringRef Msg) {
85 SM.PrintMessage(Loc, SourceMgr::DK_Error, Msg);
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 89 static void PrintResults(const char *Msg, bool P, const Value *V1,
101 errs() << " " << Msg << ":\t"
108 PrintModRefResults(const char *Msg, bool P, Instruction *I, Value *Ptr,
111 errs() << " " << Msg << ": Ptr: ";
118 PrintModRefResults(const char *Msg, bool P, CallSite CSA, CallSite CSB,
121 errs() << " " << Msg << ": " << *CSA.getInstruction()
  /external/clang/test/Misc/
caret-diags-macros.c 28 void baz(char *Msg) {
29 sprintf(Msg, " sizeof FoooLib : =%3u\n", 12LL);
  /external/giflib/
gif_lib.h 59 #define GIF_MESSAGE(Msg) fprintf(stderr, "\n%s: %s\n", PROGRAM_NAME, Msg)
60 #define GIF_EXIT(Msg) { GIF_MESSAGE(Msg); exit(-3); }
  /external/llvm/include/llvm/
PassManagers.h 284 void removeDeadPasses(Pass *P, StringRef Msg,
288 void freePass(Pass *P, StringRef Msg,
342 enum PassDebuggingString S2, StringRef Msg);
385 void dumpAnalysisUsage(StringRef Msg, const Pass *P,
  /external/llvm/lib/TableGen/
TGParser.h 92 bool Error(SMLoc L, const Twine &Msg) const {
93 PrintError(L, Msg);
96 bool TokError(const Twine &Msg) const {
97 return Error(Lex.getLoc(), Msg);
TGLexer.cpp 42 tgtok::TokKind TGLexer::ReturnError(const char *Loc, const Twine &Msg) {
43 PrintError(Loc, Msg);
TGLexer.h 115 tgtok::TokKind ReturnError(const char *Loc, const Twine &Msg);
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 110 static void Message(const char *Type, const Twine &Msg) {
111 errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
114 static int Error(const Twine &Msg) {
115 Message("error", Msg);
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 137 ObjCMessageExpr *Msg = E;
138 Expr *RecContainer = Msg;
140 checkForGCDOrXPC(Msg, RecContainer, rec, RecRange);
142 if (Msg->getMethodFamily() == OMF_release &&
331 void checkForGCDOrXPC(ObjCMessageExpr *Msg, Expr *&RecContainer,
333 SourceLocation Loc = Msg->getExprLoc();
349 Stmt *S = Msg;
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 396 StringRef Msg = Err.getMessage();
397 if (Msg.startswith("error: "))
398 Msg = Msg.substr(7);
402 for (unsigned i = 0, e = Msg.size(); i != e; ++i) {
403 if (Msg[i] == '%')
405 EscapedMessage += Msg[i];
  /external/llvm/lib/Support/
SourceMgr.cpp 152 const Twine &Msg,
210 LineAndCol.second-1, Kind, Msg.str(),
215 const Twine &Msg, ArrayRef<SMRange> Ranges,
217 SMDiagnostic Diagnostic = GetMessage(Loc, Kind, Msg, Ranges, FixIts);
242 StringRef Msg, StringRef LineStr,
246 Message(Msg), LineContents(LineStr), Ranges(Ranges.vec()),
  /external/llvm/tools/macho-dump/
macho-dump.cpp 37 static void Message(const char *Type, const Twine &Msg) {
38 errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
41 static int Error(const Twine &Msg) {
42 Message("error", Msg);
46 static void Warning(const Twine &Msg) {
47 Message("warning", Msg);
  /external/clang/examples/clang-interpreter/
main.cpp 95 SmallString<256> Msg;
96 llvm::raw_svector_ostream OS(Msg);
  /external/llvm/lib/MC/
MCContext.cpp 376 void MCContext::FatalError(SMLoc Loc, const Twine &Msg) {
380 report_fatal_error(Msg);
383 SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 339 os << "\" class=\"msg";
341 os << " msg" << Kind;
347 const std::string& Msg = P.getString();
350 unsigned len = Msg.size();
352 for (std::string::const_iterator I=Msg.begin(), E=Msg.end(); I!=E; ++I)
516 os << "<div class=\"msg msgEvent\" style=\"width:94%; "
  /external/llvm/lib/AsmParser/
LLParser.h 142 bool Error(LocTy L, const Twine &Msg) const {
143 return Lex.Error(L, Msg);
145 bool TokError(const Twine &Msg) const {
146 return Error(Lex.getLoc(), Msg);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 183 bool Error(const Twine &Msg) {
184 ErrorStr = Msg.str();
  /external/llvm/lib/IR/
PassManager.cpp 920 void PMDataManager::removeDeadPasses(Pass *P, StringRef Msg,
939 freePass(*I, Msg, DBG_STR);
942 void PMDataManager::freePass(Pass *P, StringRef Msg,
944 dumpPassInfo(P, FREEING_MSG, DBG_STR, Msg);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 442 std::string Msg;
445 StackHintGeneratorForSymbol(SymbolRef S, StringRef M) : Sym(S), Msg(M) {}
453 /// 'Msg via Nth parameter'
456 return Msg;
459 return Msg;

Completed in 465 milliseconds

12 3 4 5