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 33 const Target *Best = 0, *EquallyBest = 0;
37 if (!Best || Qual > BestQuality) {
38 Best = &*it;
46 if (!Best) {
52 // Otherwise, take the best target, but make sure we don't have two equally
53 // good best targets.
56 Best->Name + "\" and \"" + EquallyBest->Name + "\"";
60 return Best;
CommandLine.cpp 200 Option *Best = 0;
216 if (!Best || Distance < BestDistance) {
217 Best = O;
227 return Best;
    [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     [all...]
SemaInit.cpp     [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaLookup.cpp     [all...]
SemaExpr.cpp 389 // generally best to say that void types just doesn't undergo
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 353 // just compare against the regex itself and hope for the best.
394 // Attempt to find the closest/best fuzzy match. Usually an error happens
396 // would like to show the user a best guess at what "should have" matched, to
399 size_t Best = StringRef::npos;
417 if (Quality < BestQuality || Best == StringRef::npos) {
418 Best = i;
426 if (Best && Best != StringRef::npos && BestQuality < 50) {
427 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
  /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/llvm/utils/TableGen/
ARMDecoderEmitter.cpp 237 /// chooses a best Filter to do its job.
338 /// ARMFilterChooser - FilterChooser chooses the best filter among a set of Filters
375 // Index of the best filter from Filters.
507 ARMFilter &Best);
519 // builds up a list of candidate filters. It chooses the best filter and
523 // Decides on the best configuration of filter(s) to use in order to decode
    [all...]
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.
342 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,Filter &Best);
357 // builds up a list of candidate filters. It chooses the best filter and
361 // Decides on the best configuration of filter(s) to use in order to decode
898 Filter &Best) {
900 unsigned Opc = Best.getSingletonOpc();
908 Best.getVariableFC().emit(o, Indentation);
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 284 /// cv-qualifiers on a single parameter, and return the best overload candidate
294 unsigned Best = 0, N = Cands.size();
296 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
297 Best = I;
300 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
303 return Cands[Best].first;
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 75 ICK_Derived_To_Base, ///< Derived-to-base (C++ [over.best.ics])
367 /// ambiguous conversion (C++0x [over.best.ics]p10).
447 /// per C++ [over.best.ics]p10.
689 /// Find the best viable function on this overload set, if it exists.
691 OverloadCandidateSet::iterator& Best,
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 303 // 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.'
567 en: 'A sample app demonstrating best practices to support multiple screen sizes and densities.'
  /frameworks/base/libs/utils/
ResourceTypes.cpp     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 619 milliseconds