| /NextBSD/contrib/llvm/tools/bugpoint/ |
| HD | ExecutionDriver.cpp | 149 std::string Message; in initializeExecutionEnvironment() local 155 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment() 160 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment() 166 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment() 171 Message = "Sorry, I can't automatically select an interpreter!\n"; in initializeExecutionEnvironment() 175 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment() 181 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment() 187 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment() 192 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand); in initializeExecutionEnvironment() 196 AbstractInterpreter::createCustomExecutor(Message, CustomExecCommand); in initializeExecutionEnvironment() [all …]
|
| HD | ToolRunner.cpp | 270 std::string &Message, in createLLI() argument 275 Message = "Found lli: " + LLIPath + "\n"; in createLLI() 279 Message = "Cannot find `lli' in executable directory!\n"; in createLLI() 409 static void lexCommand(std::string &Message, const std::string &CommandLine, in lexCommand() argument 432 Message = in lexCommand() 439 Message = "Found command in: " + CmdPath + "\n"; in lexCommand() 445 std::string &Message, in createCustomCompiler() argument 450 lexCommand(Message, CompileCommandLine, CmdPath, Args); in createCustomCompiler() 460 std::string &Message, in createCustomExecutor() argument 466 lexCommand(Message, ExecCommandLine, CmdPath, Args); in createCustomExecutor() [all …]
|
| HD | ToolRunner.h | 50 static GCC *create(std::string &Message, 90 static LLC *createLLC(const char *Argv0, std::string &Message, 97 createLLI(const char *Argv0, std::string &Message, 101 createJIT(const char *Argv0, std::string &Message, 105 createCustomCompiler(std::string &Message, 109 createCustomExecutor(std::string &Message,
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/ |
| HD | DiagnosticRenderer.cpp | 125 StringRef Message, in emitDiagnostic() argument 136 emitDiagnosticMessage(Loc, PresumedLoc(), Level, Message, Ranges, SM, D); in emitDiagnostic() 166 emitDiagnosticMessage(Loc, PLoc, Level, Message, Ranges, SM, D); in emitDiagnostic() 193 void DiagnosticRenderer::emitBasicNote(StringRef Message) { in emitBasicNote() argument 195 SourceLocation(), PresumedLoc(), DiagnosticsEngine::Note, Message, in emitBasicNote() 442 llvm::raw_svector_ostream Message(MessageStorage); in emitMacroExpansions() local 443 Message << "(skipping " << (MacroSkipEnd - MacroSkipStart) in emitMacroExpansions() 446 emitBasicNote(Message.str()); in emitMacroExpansions() 465 llvm::raw_svector_ostream Message(MessageStorage); in emitMacroExpansions() local 468 Message << "expanded from here"; in emitMacroExpansions() [all …]
|
| HD | SerializedDiagnosticPrinter.cpp | 70 StringRef Message, 80 void emitNote(SourceLocation Loc, StringRef Message, 118 unsigned Category, unsigned Flag, StringRef Message) override; 200 StringRef Message, 660 StringRef Message, in EmitDiagnosticMessage() argument 684 Record.push_back(Message.size()); in EmitDiagnosticMessage() 685 Stream.EmitRecordWithBlob(Abbrevs.get(RECORD_DIAG), Record, Message); in EmitDiagnosticMessage() 692 StringRef Message, in emitDiagnosticMessage() argument 696 Writer.EmitDiagnosticMessage(Loc, PLoc, Level, Message, SM, D); in emitDiagnosticMessage() 757 void SDiagsRenderer::emitNote(SourceLocation Loc, StringRef Message, in emitNote() argument [all …]
|
| HD | LogDiagnosticPrinter.cpp | 61 if (!DE.Message.empty()) { in EmitDiagEntry() 64 EmitString(OS, DE.Message) << '\n'; in EmitDiagEntry() 138 DE.Message = MessageStr.str(); in HandleDiagnostic()
|
| /NextBSD/contrib/llvm/include/llvm/Analysis/ |
| HD | LoopAccessAnalysis.h | 40 std::string Message; variable 44 LoopAccessReport(const Twine &Message, const Instruction *I) in LoopAccessReport() argument 45 : Message(Message.str()), Instr(I) {} in LoopAccessReport() 51 raw_string_ostream Out(Message); 58 std::string &str() { return Message; } in str() 59 const std::string &str() const { return Message; } in str() 60 operator Twine() { return Message; } in Twine() 65 static void emitAnalysis(const LoopAccessReport &Message, 521 void emitAnalysis(LoopAccessReport &Message);
|
| /NextBSD/sys/contrib/dev/acpica/components/dispatcher/ |
| HD | dsdebug.c | 63 const char *Message); 81 const char *Message) in AcpiDsPrintNodePathname() argument 102 if (Message) in AcpiDsPrintNodePathname() 104 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_DISPATCH, "%s ", Message)); in AcpiDsPrintNodePathname()
|
| /NextBSD/contrib/llvm/lib/Bitcode/Reader/ |
| HD | BitReader.cpp | 38 std::string Message; in LLVMParseBitcodeInContext() local 39 raw_string_ostream Stream(Message); in LLVMParseBitcodeInContext() 47 *OutMessage = strdup(Message.c_str()); in LLVMParseBitcodeInContext() 64 std::string Message; in LLVMGetBitcodeModuleInContext() local
|
| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| HD | PthreadLockChecker.cpp | 264 StringRef Message; in DestroyLock() local 267 Message = "This lock is still locked"; in DestroyLock() 269 Message = "This lock has already been destroyed"; in DestroyLock() 278 auto Report = llvm::make_unique<BugReport>(*BT_destroylock, Message, N); in DestroyLock() 299 StringRef Message; in InitLock() local 302 Message = "This lock is still being held"; in InitLock() 304 Message = "This lock has already been initialized"; in InitLock() 313 auto Report = llvm::make_unique<BugReport>(*BT_initlock, Message, N); in InitLock()
|
| HD | IdenticalExprChecker.cpp | 64 StringRef Message; in reportIdenticalExpr() local 66 Message = "identical expressions on both sides of bitwise operator"; in reportIdenticalExpr() 68 Message = "identical expressions on both sides of logical operator"; in reportIdenticalExpr() 75 Message, ELoc, Sr); in reportIdenticalExpr() 239 StringRef Message; in checkComparisonOp() local 241 Message = "comparison of identical expressions always evaluates to true"; in checkComparisonOp() 243 Message = "comparison of identical expressions always evaluates to false"; in checkComparisonOp() 246 categories::LogicError, Message, ELoc); in checkComparisonOp()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | DeclBase.cpp | 209 OS << Message; in print() 349 std::string *Message) { in CheckAvailability() argument 386 if (Message) { in CheckAvailability() 387 Message->clear(); in CheckAvailability() 388 llvm::raw_string_ostream Out(*Message); in CheckAvailability() 399 if (Message) { in CheckAvailability() 400 Message->clear(); in CheckAvailability() 401 llvm::raw_string_ostream Out(*Message); in CheckAvailability() 413 if (Message) { in CheckAvailability() 414 Message->clear(); in CheckAvailability() [all …]
|
| /NextBSD/contrib/file/magic/Magdir/ |
| HD | communications | 20 0 string mscdocument Message Sequence Chart (document) 21 0 string msc Message Sequence Chart (chart) 22 0 string submsc Message Sequence Chart (subchart)
|
| /NextBSD/contrib/ntp/sntp/libevent/test/ |
| HD | regress_rpc.c | 98 EVRPC_HEADER(Message, msg, kill) 101 EVRPC_GENERATE(Message, msg, kill) 108 MessageCb(EVRPC_STRUCT(Message)* rpc, void *arg) in MessageCb() 147 EVRPC_REGISTER(base, Message, msg, kill, MessageCb, NULL); in rpc_setup() 161 assert(EVRPC_UNREGISTER(base, Message) == 0); in rpc_teardown() 479 EVRPC_MAKE_REQUEST(Message, pool, msg, kill, GotKillCb, NULL); in rpc_basic_client() 490 EVRPC_MAKE_REQUEST(Message, pool, msg, kill, GotKillCb, NULL); in rpc_basic_client() 501 EVRPC_MAKE_CTX(Message, msg, kill, in rpc_basic_client() 555 EVRPC_MAKE_REQUEST(Message, pool, msg, kill_one, GotKillCbTwo, NULL); in rpc_basic_queued_client() 556 EVRPC_MAKE_REQUEST(Message, pool, msg, kill_two, GotKillCb, NULL); in rpc_basic_queued_client() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Frontend/ |
| HD | DiagnosticRenderer.h | 77 StringRef Message, 109 void emitBasicNote(StringRef Message); 143 StringRef Message, ArrayRef<CharSourceRange> Ranges, 172 virtual void emitNote(SourceLocation Loc, StringRef Message,
|
| /NextBSD/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/ |
| HD | Diagnostics.cpp | 167 printMessageToStream(const Diagnostics::ErrorContent::Message &Message, in printMessageToStream() argument 169 maybeAddLineAndColumn(Message.Range, OS); in printMessageToStream() 171 formatErrorString(errorTypeToFormatString(Message.Type), Message.Args, OS); in printMessageToStream()
|
| /NextBSD/usr.bin/mail/misc/ |
| HD | mail.rc | 2 ignore Received Message-Id Resent-Message-Id Status Mail-From Return-Path Via
|
| /NextBSD/sys/mips/rmi/ |
| HD | msgring_xls.cfg | 42 * Message ring has an in-built flow control mechanism. Every agent/station on the ring has to 139 // CPU_0 Message Station 205 // CPU_1 Message Station 270 // CPU_2 Message Station 336 // CPU_3 Message Station 401 // GMAC Message Station 488 // Security Message Station 538 // Compression Message Station
|
| HD | msgring.cfg | 40 * Message ring has an in-built flow control mechanism. Every agent/station on the ring has to 231 // CPU_0 Message Station 287 // CPU_1 Message Station 344 // CPU_2 Message Station 400 // CPU_3 Message Station 456 // CPU_4 Message Station 512 // CPU_5 Message Station 569 // CPU_6 Message Station 626 // CPU_7 Message Station 683 // GMAC Message Station [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | PrettyStackTrace.h | 30 const char *Message; variable 33 : SM(sm), Loc(L), Message(Msg) {} in PrettyStackTraceLoc()
|
| /NextBSD/crypto/openssl/doc/ |
| HD | standards.txt | 30 1319 The MD2 Message-Digest Algorithm. B. Kaliski. April 1992. 33 1320 The MD4 Message-Digest Algorithm. R. Rivest. April 1992. (Format: 36 1321 The MD5 Message-Digest Algorithm. R. Rivest. April 1992. (Format: 45 2315 PKCS 7: Cryptographic Message Syntax Version 1.5. B. Kaliski. 122 1421 Privacy Enhancement for Internet Electronic Mail: Part I: Message 147 2511 Internet X.509 Certificate Request Message Format. M. Myers, C. 239 3274 Compressed Data Content Type for Cryptographic Message Syntax 244 Cryptographic Message Syntax (CMS). S. Blake-Wilson, D. Brown, P. 252 3369 Cryptographic Message Syntax (CMS). R. Housley. August 2002. 256 3370 Cryptographic Message Syntax (CMS) Algorithms. R. Housley. August [all …]
|
| /NextBSD/contrib/compiler-rt/lib/ubsan/ |
| HD | ubsan_diag.h | 138 const char *Message; variable 200 Diag(Location Loc, DiagLevel Level, const char *Message) in Diag() argument 201 : Loc(Loc), Level(Level), Message(Message), NumArgs(0), NumRanges(0) {} in Diag()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | PrettyDeclStackTrace.h | 35 const char *Message; variable 40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {} in PrettyDeclStackTraceEntry()
|
| /NextBSD/tools/regression/sysvmsg/ |
| HD | README | 3 SysV IPC Message Queue Regression Utility. 5 This regression utility will test the SysV Message Queue facility
|
| /NextBSD/contrib/llvm/tools/clang/lib/Basic/ |
| HD | Diagnostic.cpp | 951 StringRef Message) in StoredDiagnostic() argument 952 : ID(ID), Level(Level), Loc(), Message(Message) { } in StoredDiagnostic() 962 SmallString<64> Message; in StoredDiagnostic() local 963 Info.FormatDiagnostic(Message); in StoredDiagnostic() 964 this->Message.assign(Message.begin(), Message.end()); in StoredDiagnostic() 970 StringRef Message, FullSourceLoc Loc, in StoredDiagnostic() argument 973 : ID(ID), Level(Level), Loc(Loc), Message(Message), in StoredDiagnostic()
|