HomeSort by relevance Sort by last modified time
    Searched defs:Best (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Support/
TargetRegistry.cpp 74 const Target *Best = 0, *EquallyBest = 0;
78 if (!Best || Qual > BestQuality) {
79 Best = &*it;
87 if (!Best) {
93 // Otherwise, take the best target, but make sure we don't have two equally
94 // good best targets.
97 Best->Name + "\" and \"" + EquallyBest->Name + "\"";
101 return Best;
CommandLine.cpp 203 Option *Best = 0;
219 if (!Best || Distance < BestDistance) {
220 Best = O;
230 return Best;
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 147 Range *Best = 0;
150 (!Best ||
151 Best->getStart().getMemoryLocation() >
153 Best = &Ranges[I];
154 return Best;
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 232 const MachineBasicBlock *Best = 0;
244 if (!Best || Depth < BestDepth)
245 Best = Pred, BestDepth = Depth;
247 return Best;
256 const MachineBasicBlock *Best = 0;
274 if (!Best || Height < BestHeight)
275 Best = Succ, BestHeight = Height;
277 return Best;
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 437 // just compare against the regex itself and hope for the best.
490 // Attempt to find the closest/best fuzzy match. Usually an error happens
492 // would like to show the user a best guess at what "should have" matched, to
495 size_t Best = StringRef::npos;
513 if (Quality < BestQuality || Best == StringRef::npos) {
514 Best = i;
522 if (Best && Best != StringRef::npos && BestQuality < 50) {
523 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 586 StringRef Best;
597 Best = "";
600 Best = i->getName();
605 return Best;
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaLookup.cpp     [all...]
SemaInit.cpp     [all...]
SemaExpr.cpp 479 // generally best to say that void types just doesn't undergo
    [all...]
SemaOverload.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 464 SDNode *Best = 0;
471 if (!Best || (MyMaxNest > BestMaxNest)) {
472 Best = New;
476 assert(Best);
478 return Best;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 325 // register and hope for the best.
    [all...]

Completed in 202 milliseconds