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

  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 186 Range *Best = 0;
189 (!Best ||
190 Best->getStart().getMemoryLocation() >
192 Best = &Ranges[I];
193 return Best;
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 325 const MachineBasicBlock *Best = nullptr;
337 if (!Best || Depth < BestDepth)
338 Best = Pred, BestDepth = Depth;
340 return Best;
349 const MachineBasicBlock *Best = nullptr;
367 if (!Best || Height < BestHeight)
368 Best = Succ, BestHeight = Height;
370 return Best;
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsnamed.c 302 int Best = -1;
315 if (Best == -1) Best = i;
330 if (Best == -1)
331 Best = 0;
333 v = mlu ->Entries + Best;
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 556 StringRef Best;
567 Best = "";
570 Best = i->getName();
575 return Best;
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 466 SDNode *Best = nullptr;
473 if (!Best || (MyMaxNest > BestMaxNest)) {
474 Best = New;
478 assert(Best);
480 return Best;
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 440 // just compare against the regex itself and hope for the best.
493 // Attempt to find the closest/best fuzzy match. Usually an error happens
495 // would like to show the user a best guess at what "should have" matched, to
498 size_t Best = StringRef::npos;
516 if (Quality < BestQuality || Best == StringRef::npos) {
517 Best = i;
525 if (Best && Best != StringRef::npos && BestQuality < 50) {
526 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
SemaLookup.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp 387 OverloadCandidateSet::iterator Best;
390 .BestViableFunction(SemaRef, Kind.getLocation(), Best);
393 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
    [all...]
SemaTemplate.cpp     [all...]
SemaExpr.cpp 573 // generally best to say that void types just doesn't undergo
    [all...]
SemaOverload.cpp     [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 242 Option *Best = nullptr;
258 if (!Best || Distance < BestDistance) {
259 Best = O;
269 return Best;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 340 // register and hope for the best.
    [all...]

Completed in 987 milliseconds