| /src/external/apache2/llvm/dist/llvm/lib/Linker/ |
| LinkDiagnosticInfo.h | 16 const Twine &Msg; 19 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| Error.cpp | 16 void ClusteringError::log(raw_ostream &OS) const { OS << Msg; } 24 void SnippetCrash::log(raw_ostream &OS) const { OS << Msg; }
|
| Error.h | 29 ClusteringError(const Twine &S) : Msg(S.str()) {} 36 std::string Msg; 44 SnippetCrash(const Twine &S) : Msg(S.str()) {} 51 std::string Msg;
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| CreateInvocationFromCommandLine.cpp | 79 SmallString<256> Msg; 80 llvm::raw_svector_ostream OS(Msg);
|
| HeaderIncludeGen.cpp | 62 SmallString<256> Msg; 64 Msg += "Note: including file:"; 69 Msg += MSStyle ? ' ' : '.'; 72 Msg += ' '; 74 Msg += Pathname; 75 Msg += '\n'; 77 *OutputFile << Msg;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/WindowsManifest/ |
| WindowsManifestMerger.h | 41 WindowsManifestError(const Twine &Msg); 45 std::string Msg;
|
| /src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| Main.cpp | 58 static int reportError(const char *ProgName, Twine Msg) { 59 errs() << ProgName << ": " << Msg;
|
| Error.cpp | 28 const Twine &Msg) { 37 SrcMgr.PrintMessage(Loc.front(), Kind, Msg); 45 void PrintNote(const Twine &Msg) { 46 WithColor::note() << Msg << "\n"; 49 void PrintNote(ArrayRef<SMLoc> NoteLoc, const Twine &Msg) { 50 PrintMessage(NoteLoc, SourceMgr::DK_Note, Msg); 55 void PrintFatalNote(const Twine &Msg) { 56 PrintNote(Msg); 62 void PrintFatalNote(ArrayRef<SMLoc> NoteLoc, const Twine &Msg) { 63 PrintNote(NoteLoc, Msg); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| LLVMRemarkStreamer.h | 42 std::string Msg; 47 Msg = EIB.message(); 52 void log(raw_ostream &OS) const override { OS << Msg; }
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| Interpreter.cpp | 38 std::string Msg; 40 Msg = EIB.message(); 43 *ErrStr = Msg;
|
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| Error.cpp | 64 GenericBinaryError::GenericBinaryError(const Twine &Msg) : Msg(Msg.str()) {} 66 GenericBinaryError::GenericBinaryError(const Twine &Msg, 68 : Msg(Msg.str()) { 73 OS << Msg;
|
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| CLog.h | 43 SmallString<64> Msg; 64 : Name(std::string(name)), Trace(trace), LogOS(Msg) {}
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| Error.h | 70 GenericBinaryError(const Twine &Msg); 71 GenericBinaryError(const Twine &Msg, object_error ECOverride); 72 const std::string &getMessage() const { return Msg; } 75 std::string Msg;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-lto2/ |
| llvm-lto2.cpp | 166 static void check(Error E, std::string Msg) { 170 errs() << "llvm-lto2: " << Msg << ": " << EIB.message().c_str() << '\n'; 175 template <typename T> static T check(Expected<T> E, std::string Msg) { 178 check(E.takeError(), Msg); 182 static void check(std::error_code EC, std::string Msg) { 183 check(errorCodeToError(EC), Msg); 186 template <typename T> static T check(ErrorOr<T> E, std::string Msg) { 189 check(E.getError(), Msg);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-mt/ |
| llvm-mt.cpp | 67 LLVM_ATTRIBUTE_NORETURN static void reportError(Twine Msg) { 68 WithColor::error(errs(), "llvm-mt") << Msg << '\n';
|
| /src/external/apache2/llvm/dist/clang/examples/clang-interpreter/ |
| main.cpp | 167 SmallString<256> Msg; 168 llvm::raw_svector_ostream OS(Msg);
|
| /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| TransRetainReleaseDealloc.cpp | 141 ObjCMessageExpr *Msg = E; 142 Expr *RecContainer = Msg; 144 checkForGCDOrXPC(Msg, RecContainer, rec, RecRange); 146 if (Msg->getMethodFamily() == OMF_release && 325 void checkForGCDOrXPC(ObjCMessageExpr *Msg, Expr *&RecContainer, 327 SourceLocation Loc = Msg->getExprLoc(); 343 Stmt *S = Msg;
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| CheckPlacementNew.cpp | 118 std::string Msg; 122 Msg = std::string(llvm::formatv( 130 Msg = std::string(llvm::formatv( 136 Msg = std::string(llvm::formatv( 141 auto R = std::make_unique<PathSensitiveBugReport>(SBT, Msg, N); 157 std::string Msg(llvm::formatv("Storage type is aligned to {0} bytes but " 161 auto R = std::make_unique<PathSensitiveBugReport>(ABT, Msg, N);
|
| VirtualCallChecker.cpp | 123 SmallString<128> Msg; 124 llvm::raw_svector_ostream OS(Msg);
|
| ExprInspectionChecker.cpp | 58 ExplodedNode *reportBug(llvm::StringRef Msg, CheckerContext &C, 60 ExplodedNode *reportBug(llvm::StringRef Msg, BugReporter &BR, ExplodedNode *N, 157 ExplodedNode *ExprInspectionChecker::reportBug(llvm::StringRef Msg, 161 reportBug(Msg, C.getBugReporter(), N, ExprVal); 165 ExplodedNode *ExprInspectionChecker::reportBug(llvm::StringRef Msg, 174 auto R = std::make_unique<PathSensitiveBugReport>(*BT, Msg, N); 294 SmallString<64> Msg; 295 llvm::raw_svector_ostream Out(Msg); 319 SmallString<128> Msg; 320 llvm::raw_svector_ostream Out(Msg); [all...] |
| NumberObjectConversionChecker.cpp | 128 llvm::SmallString<64> Msg; 129 llvm::raw_svector_ostream OS(Msg);
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| ExprEngineObjC.cpp | 151 CallEventRef<ObjCMethodCall> Msg = 183 if (Msg->isInstanceMessage()) { 184 SVal recVal = Msg->getReceiverSVal(); 208 *Msg, *this); 210 finishArgumentConstruction(Dst, I, *Msg); 232 *Msg, *this); 235 *Msg, *this); 245 CallEventRef<ObjCMethodCall> UpdatedMsg = Msg.cloneWithState(State); 274 finishArgumentConstruction(dstArgCleanup, I, *Msg); 278 *Msg, *this) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Error.cpp | 117 : Msg(S.str()), EC(EC) {} 120 : Msg(S.str()), EC(EC), PrintMsgOnly(true) {} 124 OS << Msg; 127 if (!Msg.empty()) 128 OS << (" " + Msg); 136 Error createStringError(std::error_code EC, char const *Msg) { 137 return make_error<StringError>(Msg, EC);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86InsertPrefetch.cpp | 164 std::string Msg = "Could not open profile: " + EC.message(); 165 Ctx.diagnose(DiagnosticInfoSampleProfile(Filename, Msg,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/ |
| MCAsmParser.h | 131 SmallString<64> Msg; 211 /// Emit a note at the location \p L, with the message \p Msg. 212 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 214 /// Emit a warning at the location \p L, with the message \p Msg. 217 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 219 /// Return an error at the location \p L, with the message \p Msg. This 224 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 226 /// Emit an error at the location \p L, with the message \p Msg. 230 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 237 printError(Err.Loc, Twine(Err.Msg), Err.Range) [all...] |