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

  /external/llvm/lib/Support/
TargetRegistry.cpp 29 const Target *Best = 0, *EquallyBest = 0;
33 if (!Best || Qual > BestQuality) {
34 Best = &*it;
42 if (!Best) {
48 // Otherwise, take the best target, but make sure we don't have two equally
49 // good best targets.
52 Best->Name + "\" and \"" + EquallyBest->Name + "\"";
56 return Best;
CommandLine.cpp 199 Option *Best = 0;
215 if (!Best || Distance < BestDistance) {
216 Best = O;
226 return Best;
    [all...]
  /external/llvm/lib/Target/
TargetRegisterInfo.cpp 113 const TargetRegisterClass *Best = 0;
124 if (!Best || Best->hasSuperClass(X)) {
125 Best = X;
130 if (Best->hasSubClass(X))
133 // Best and *I have no super/sub class relation - pick the larger class, or
135 int nb = std::distance(Best->begin(), Best->end());
137 if (ni>nb || (ni==nb && X->getSize() < Best->getSize()))
138 Best = X
    [all...]
  /external/llvm/lib/CodeGen/
LatencyPriorityQueue.cpp 121 std::vector<SUnit *>::iterator Best = Queue.begin();
124 if (Picker(*Best, *I))
125 Best = I;
126 SUnit *V = *Best;
127 if (Best != prior(Queue.end()))
128 std::swap(*Best, Queue.back());
  /external/clang/lib/Sema/
SemaOverload.cpp 867 // C++ [over.best.ics]p4:
    [all...]
SemaInit.cpp     [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaLookup.cpp     [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 350 // just compare against the regex itself and hope for the best.
391 // Attempt to find the closest/best fuzzy match. Usually an error happens
393 // would like to show the user a best guess at what "should have" matched, to
396 size_t Best = StringRef::npos;
414 if (Quality < BestQuality || Best == StringRef::npos) {
415 Best = i;
423 if (Best && Best != StringRef::npos && BestQuality < 50) {
424 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 97 /// chooses a best Filter to do its job.
197 /// FilterChooser - FilterChooser chooses the best filter among a set of Filters
235 // Index of the best filter from Filters.
332 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,Filter &Best);
344 // builds up a list of candidate filters. It chooses the best filter and
348 // Decides on the best configuration of filter(s) to use in order to decode
829 Filter &Best) {
831 unsigned Opc = Best.getSingletonOpc();
839 Best.getVariableFC().emit(o, Indentation);
865 // builds up a list of candidate filters. It chooses the best filter an
    [all...]
ARMDecoderEmitter.cpp 236 /// chooses a best Filter to do its job.
337 /// ARMFilterChooser - FilterChooser chooses the best filter among a set of Filters
374 // Index of the best filter from Filters.
506 ARMFilter &Best);
518 // builds up a list of candidate filters. It chooses the best filter and
522 // Decides on the best configuration of filter(s) to use in order to decode
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_failures.py 41 """Takes a set of test_failures and returns which result type best fits
42 the list of failures. "Best fits" means we use the worst type of failure.
  /external/clang/lib/AST/
DeclCXX.cpp 286 /// cv-qualifiers on a single parameter, and return the best overload candidate
296 unsigned Best = 0, N = Cands.size();
298 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
299 Best = I;
302 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
305 return Cands[Best].first;
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 74 ICK_Derived_To_Base, ///< Derived-to-base (C++ [over.best.ics])
361 /// ambiguous conversion (C++0x [over.best.ics]p10).
441 /// per C++ [over.best.ics]p10.
682 /// Find the best viable function on this overload set, if it exists.
684 OverloadCandidateSet::iterator& Best,
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 288 // register and hope for the best.
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]
  /frameworks/base/docs/html/guide/
guide_toc.cs     [all...]
  /frameworks/base/docs/html/resources/
resources-data.js 12 'bestpractice': 'Best Practices',
212 en: 'This article describes best practices and user experience guidelines for multi-tasking on Android.'
232 en: 'This article discusses the threading model used by Android applications and how applications can ensure best UI performance by spawning worker threads to handle long-running operations, rather than handling them in the main thread. The article also explains the API that your application can use to interact with Android UI toolkit components running on the main thread and spawn managed worker threads.'
  /frameworks/base/libs/utils/
ResourceTypes.cpp     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 433 milliseconds