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

1 2 3

  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 67 SmallString<256> Msg;
68 llvm::raw_svector_ostream OS(Msg);
HeaderIncludeGen.cpp 118 SmallString<256> Msg;
120 Msg += "Note: including file:";
125 Msg += MSStyle ? ' ' : '.';
128 Msg += ' ';
130 Msg += Filename;
131 Msg += '\n';
133 OutputFile->write(Msg.data(), Msg.size());
  /external/lldb/test/lang/cpp/virtual/
TestVirtual.py 11 def Msg(expr, val):
88 self.expect(output, Msg(my_expr, val), exe=False,
  /external/lldb/test/types/
AbstractBase.py 11 def Msg(var, val, using_frame_variable):
160 self.expect(output, Msg(var, val, True), exe=False,
251 self.expect(output, Msg(var, val, False), exe=False,
  /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/examples/clang-interpreter/
main.cpp 97 SmallString<256> Msg;
98 llvm::raw_svector_ostream OS(Msg);
  /external/clang/tools/libclang/
CLog.h 44 SmallString<64> Msg;
65 : Name(name), Trace(trace), LogOS(Msg) { }
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Common.h 52 phOsalNfc_Message_t 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/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);
HTMLDiagnostics.cpp 389 os << "\" class=\"msg";
391 os << " msg" << Kind;
397 const std::string& Msg = P.getString();
400 unsigned len = Msg.size();
402 for (std::string::const_iterator I=Msg.begin(), E=Msg.end(); I!=E; ++I)
566 os << "<div class=\"msg msgEvent\" style=\"width:94%; "
CheckerManager.cpp 182 const ObjCMethodCall &Msg;
189 const ObjCMethodCall &msg, ExprEngine &eng,
192 Msg(msg), Eng(eng) { }
196 const ProgramPoint &L = Msg.getProgramPoint(IsPreVisit,checkFn.Checker);
199 checkFn(*Msg.cloneWithState<ObjCMethodCall>(Pred->getState()), C);
208 const ObjCMethodCall &msg,
214 msg, Eng, WasInlined);
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 250 void MCWinCOFFStreamer::FatalError(const Twine &Msg) const {
251 getContext().FatalError(SMLoc(), Msg);
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 142 static void Message(const char *Type, const Twine &Msg) {
143 errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
146 static int Error(const Twine &Msg) {
147 Message("error", Msg);
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 205 const Twine &Msg,
208 LineNum(LineNum), Msg(Msg) {}
209 DiagnosticInfoSampleProfile(const char *FileName, const Twine &Msg,
212 LineNum(0), Msg(Msg) {}
213 DiagnosticInfoSampleProfile(const Twine &Msg,
216 LineNum(0), Msg(Msg) {}
227 const Twine &getMsg() const { return Msg; }
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 46 AsmToken AsmLexer::ReturnError(const char *Loc, const std::string &Msg) {
47 SetError(SMLoc::getFromPointer(Loc), Msg);
  /external/llvm/lib/Support/
SourceMgr.cpp 143 const Twine &Msg,
201 LineAndCol.second-1, Kind, Msg.str(),
224 const Twine &Msg, ArrayRef<SMRange> Ranges,
226 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors);
230 const Twine &Msg, ArrayRef<SMRange> Ranges,
232 PrintMessage(llvm::errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors);
241 StringRef Msg, StringRef LineStr,
245 Message(Msg), LineContents(LineStr), Ranges(Ranges.vec()),
  /external/llvm/lib/Target/R600/InstPrinter/
AMDGPUInstPrinter.cpp 381 unsigned Msg = SImm16 & 0xF;
382 if (Msg == 2 || Msg == 3) {
384 if (Msg == 3)
401 } else if (Msg == 1)
403 else if (Msg == 15)
406 O << "unknown(" << Msg << ") ";
  /external/llvm/tools/macho-dump/
macho-dump.cpp 38 static void Message(const char *Type, const Twine &Msg) {
39 errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
42 static int Error(const Twine &Msg) {
43 Message("error", Msg);
47 static void Warning(const Twine &Msg) {
48 Message("warning", Msg);
  /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/clang/lib/CodeGen/
CodeGenAction.cpp 663 StringRef Msg = Err.getMessage();
664 if (Msg.startswith("error: "))
665 Msg = Msg.substr(7);
670 CI.getDiagnostics().Report(Loc, DiagID) << Msg;
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 62 void checkPreObjCMessage(const ObjCMethodCall &msg, CheckerContext &C) const;
73 void emitNilReceiverBug(CheckerContext &C, const ObjCMethodCall &msg,
78 const ObjCMethodCall &msg) const;
111 const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call);
112 switch (Msg.getMessageKind()) {
116 assert(Msg.isSetter() && "Getters have no args");
119 if (Msg.isSetter() && IsFirstArgument)
435 void CallAndMessageChecker::checkPreObjCMessage(const ObjCMethodCall &msg,
437 SVal recVal = msg.getReceiverSVal();
441 switch (msg.getMessageKind())
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 477 std::string Msg;
480 StackHintGeneratorForSymbol(SymbolRef S, StringRef M) : Sym(S), Msg(M) {}
488 /// 'Msg via Nth parameter'
491 return Msg;
494 return Msg;
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
  /external/clang/lib/Parse/
Parser.cpp 112 const char *Msg) {
128 DB << Msg << ExpectedTok;
130 DB << Msg;
150 DB << Msg << ExpectedTok;
152 DB << Msg;
    [all...]

Completed in 2184 milliseconds

1 2 3