| /freebsd-9-stable/contrib/llvm/lib/Support/ |
| D | ErrorHandling.cpp | 53 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { in report_fatal_error() argument 54 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error() 57 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { in report_fatal_error() argument 58 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error() 61 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { in report_fatal_error() argument 62 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error() 65 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { in report_fatal_error() argument 67 ErrorHandler(ErrorHandlerUserData, Reason.str(), GenCrashDiag); in report_fatal_error() 74 OS << "LLVM ERROR: " << Reason << "\n"; in report_fatal_error()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Frontend/ |
| D | HeaderIncludeGen.cpp | 43 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 78 FileChangeReason Reason, in FileChanged() argument 88 if (Reason == PPCallbacks::EnterFile) { in FileChanged() 90 } else if (Reason == PPCallbacks::ExitFile) { in FileChanged() 111 if (ShowHeader && Reason == PPCallbacks::EnterFile) { in FileChanged()
|
| D | DependencyFile.cpp | 56 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 103 FileChangeReason Reason, in FileChanged() argument 106 if (Reason != PPCallbacks::EnterFile) in FileChanged()
|
| D | PrintPreprocessedOutput.cpp | 127 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 262 FileChangeReason Reason, in FileChanged() argument 275 if (Reason == PPCallbacks::EnterFile) { in FileChanged() 279 } else if (Reason == PPCallbacks::SystemHeaderPragma) { in FileChanged() 308 if (Reason == PPCallbacks::EnterFile && !IsFirstFileEntered) { in FileChanged() 313 switch (Reason) { in FileChanged()
|
| D | VerifyDiagnosticConsumer.cpp | 63 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument
|
| /freebsd-9-stable/contrib/llvm/lib/CodeGen/ |
| D | MachineScheduler.cpp | 1338 static const char *getReasonStr(GenericScheduler::CandReason Reason); 1378 CandReason Reason; member 1390 : Policy(policy), SU(NULL), Reason(NoCand), RepeatReasonSet(0) {} in SchedCandidate() 1396 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest() 1398 Reason = Best.Reason; in setBest() 2323 GenericScheduler::CandReason Reason) { in tryLess() argument 2325 TryCand.Reason = Reason; in tryLess() 2329 if (Cand.Reason > Reason) in tryLess() 2330 Cand.Reason = Reason; in tryLess() 2333 Cand.setRepeat(Reason); in tryLess() [all …]
|
| /freebsd-9-stable/contrib/llvm/patches/ |
| D | patch-r296800-llvm-r219512-out-of-registers.diff | 28 - Reason)) { 30 + Reason)) {
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Lex/ |
| D | PPCallbacks.h | 49 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 332 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument 335 First->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged() 336 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/ |
| D | InclusionRewriter.cpp | 58 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 145 FileChangeReason Reason, in FileChanged() argument 148 if (Reason != EnterFile) in FileChanged()
|
| /freebsd-9-stable/contrib/ntp/html/hints/ |
| D | aix | 47 > AIX asserted in psx_timeo(). Reason for the assert was that
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Lex/ |
| D | PPDirectives.cpp | 1150 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile; in HandleDigitDirective() local 1152 Reason = PPCallbacks::EnterFile; in HandleDigitDirective() 1154 Reason = PPCallbacks::ExitFile; in HandleDigitDirective() 1161 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind); in HandleDigitDirective()
|
| /freebsd-9-stable/tools/regression/ |
| D | README | 32 A test may be skipped by printing '# skip Reason for skipping' after the
|
| /freebsd-9-stable/contrib/wpa/patches/ |
| D | openssl-0.9.8-tls-extensions.patch | 64 /* Reason codes. */ 315 /* Reason codes. */
|
| D | openssl-0.9.8d-tls-extensions.patch | 64 /* Reason codes. */ 304 /* Reason codes. */
|
| D | openssl-0.9.8g-tls-extensions.patch | 177 /* Reason codes. */
|
| D | openssl-0.9.8h-tls-extensions.patch | 191 /* Reason codes. */
|
| D | openssl-0.9.9-session-ticket.patch | 213 /* Reason codes. */
|
| D | openssl-0.9.8i-tls-extensions.patch | 215 /* Reason codes. */
|
| D | openssl-0.9.8e-tls-extensions.patch | 228 /* Reason codes. */
|
| /freebsd-9-stable/contrib/llvm/utils/TableGen/ |
| D | CodeGenDAGPatterns.cpp | 1761 bool TreePatternNode::canPatternMatch(std::string &Reason, in canPatternMatch() argument 1766 if (!getChild(i)->canPatternMatch(Reason, CDP)) in canPatternMatch() 1787 Reason="Immediate value must be on the RHS of commutative operators!"; in canPatternMatch() 2944 std::string Reason; in AddPatternToMatch() local 2945 if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this)) { in AddPatternToMatch() 2947 Twine("Pattern can never match: ") + Reason); in AddPatternToMatch()
|
| D | CodeGenDAGPatterns.h | 485 bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
|
| /freebsd-9-stable/sys/dev/mps/mpi/ |
| D | mpi2_history.txt | 281 * Modified Reason Code defines for SAS Topology Change 283 * status, and adding a mask for the Reason Code.
|
| /freebsd-9-stable/sys/dev/mpr/mpi/ |
| D | mpi2_history.txt | 344 * Modified Reason Code defines for SAS Topology Change 346 * status, and adding a mask for the Reason Code.
|
| /freebsd-9-stable/crypto/openssl/ |
| D | PROBLEMS | 96 endless loop. Reason: the BN_kronecker test calls BN_generate_prime()
|
| /freebsd-9-stable/usr.sbin/bsdconfig/share/ |
| D | strings.subr | 373 # Status Reason
|