HomeSort by relevance Sort by last modified time
    Searched refs:Strategy (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/cc/output/
overlay_processor.h 20 class CC_EXPORT Strategy {
22 virtual ~Strategy() {}
23 // Returns false if the strategy cannot be made to work with the
24 // current set of render passes. Returns true if the strategy was successful
30 typedef ScopedPtrVector<Strategy> StrategyList;
overlay_strategy_single_on_top.h 18 class CC_EXPORT OverlayStrategySingleOnTop : public OverlayProcessor::Strategy {
overlay_processor.cc 26 strategies_.push_back(scoped_ptr<Strategy>(
  /external/chromium_org/extensions/renderer/
activity_log_converter_strategy.h 21 : public content::V8ValueConverter::Strategy {
23 typedef content::V8ValueConverter::Strategy::FromV8ValueCallback
29 // content::V8ValueConverter::Strategy implementation.
  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker.h 36 enum Strategy {
68 // more tolerant of errors. Like 'lsq1', this strategy tends to
70 // the velocity of a fling but this strategy tends to respond to changes in
75 // For comparison purposes only. Unlike 'int1' this strategy can compensate
80 // The default velocity tracker strategy.
82 // purposes, this is the strategy that applications will actually use. Be
83 // very careful when adjusting the default strategy because it can
88 // Creates a velocity tracker using the default strategy for the platform.
91 // Creates a velocity tracker using the specified strategy.
92 // If strategy is NULL, uses the default strategy for the platform
    [all...]
velocity_tracker_state.h 24 explicit VelocityTrackerState(VelocityTracker::Strategy strategy);
velocity_tracker_unittest.cc 26 const char* GetStrategyName(VelocityTracker::Strategy strategy) {
27 switch (strategy) {
37 NOTREACHED() << "Invalid strategy";
94 VelocityTracker::Strategy strategy = local
95 static_cast<VelocityTracker::Strategy>(i);
97 SCOPED_TRACE(GetStrategyName(strategy));
98 VelocityTrackerState state(strategy);
150 VelocityTracker::Strategy strategy local
    [all...]
velocity_tracker_state.cc 20 VelocityTrackerState::VelocityTrackerState(VelocityTracker::Strategy strategy)
21 : velocity_tracker_(strategy), active_pointer_id_(ACTIVE_POINTER_ID) {}
velocity_tracker.cc 196 VelocityTrackerStrategy* CreateStrategy(VelocityTracker::Strategy strategy) {
197 switch (strategy) {
218 NOTREACHED() << "Unrecognized velocity tracker strategy: " << strategy;
231 VelocityTracker::VelocityTracker(Strategy strategy)
234 strategy_(CreateStrategy(strategy)) {}
  /external/chromium_org/content/public/renderer/
v8_value_converter.h 29 class CONTENT_EXPORT Strategy {
34 virtual ~Strategy() {}
101 virtual void SetStrategy(Strategy* strategy) = 0;
  /external/guava/guava/src/com/google/common/base/
Splitter.java 101 private final Strategy strategy; field in class:Splitter
104 private Splitter(Strategy strategy) {
105 this(strategy, false, CharMatcher.NONE, Integer.MAX_VALUE);
108 private Splitter(Strategy strategy, boolean omitEmptyStrings,
110 this.strategy = strategy;
141 return new Splitter(new Strategy() {
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
SchemePrefixBenchmark.java 27 enum Strategy {
74 @Param Strategy strategy; field in class:SchemePrefixBenchmark
78 strategy.execute("http://android.com");
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Splitter.java 96 private final Strategy strategy; field in class:Splitter
98 private Splitter(Strategy strategy) {
99 this(strategy, false, CharMatcher.NONE);
102 private Splitter(Strategy strategy, boolean omitEmptyStrings,
104 this.strategy = strategy;
134 return new Splitter(new Strategy() {
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 98 private final Strategy strategy; field in class:Splitter
101 private Splitter(Strategy strategy) {
102 this(strategy, false, CharMatcher.NONE, Integer.MAX_VALUE);
105 private Splitter(Strategy strategy, boolean omitEmptyStrings,
107 this.strategy = strategy;
138 return new Splitter(new Strategy() {
    [all...]
  /external/guava/guava/src/com/google/common/hash/
BloomFilter.java 44 * A strategy to translate T instances, to {@code numHashFunctions} bit indexes.
46 interface Strategy extends java.io.Serializable {
70 * The strategy we employ to map an element T to {@code numHashFunctions} bit indexes.
72 private final Strategy strategy; field in class:BloomFilter
78 Strategy strategy) {
83 this.strategy = strategy;
91 return strategy.mightContain(object, funnel, numHashFunctions, bits)
220 final Strategy strategy; field in class:BloomFilter.SerialForm
    [all...]
BloomFilterStrategies.java 19 enum BloomFilterStrategies implements BloomFilter.Strategy {
  /external/chromium_org/content/renderer/
v8_value_converter_impl.h 33 virtual void SetStrategy(Strategy* strategy) OVERRIDE;
91 // Strategy object that changes the converter's behavior.
92 Strategy* strategy_;
v8_value_converter_impl.cc 22 // Default implementation of V8ValueConverter::Strategy
24 bool V8ValueConverter::Strategy::FromV8Object(
32 bool V8ValueConverter::Strategy::FromV8Array(
40 bool V8ValueConverter::Strategy::FromV8ArrayBuffer(v8::Handle<v8::Object> value,
46 bool V8ValueConverter::Strategy::FromV8Number(v8::Handle<v8::Number> value,
51 bool V8ValueConverter::Strategy::FromV8Undefined(base::Value** out) const {
148 void V8ValueConverterImpl::SetStrategy(Strategy* strategy) {
149 strategy_ = strategy;
384 // These base::Unretained's are safe, because Strategy::FromV8Value shoul
    [all...]
  /external/chromium_org/content/renderer/java/
gin_java_bridge_value_converter.h 14 class GinJavaBridgeValueConverter : public content::V8ValueConverter::Strategy {
26 // content::V8ValueConverter::Strategy
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 292 /// strategy, for example 'minimum resource height'. There is one trace for
334 enum Strategy {
341 /// Get the trace ensemble representing the given trace selection strategy.
344 Ensemble *getEnsemble(Strategy);
367 // One ensemble per strategy.
  /external/chromium_org/chrome/browser/extensions/api/copresence/
copresence_translations.cc 22 using extensions::api::copresence::Strategy;
36 BroadcastScanConfiguration TranslateStrategy(const Strategy& strategy) {
37 bool only_broadcast = strategy.only_broadcast && *strategy.only_broadcast;
38 bool only_scan = strategy.only_scan && *strategy.only_scan;
50 // The strategy may be null (unspecified), so we pass it as a pointer.
51 void SetTokenExchangeStrategy(const Strategy* strategy,
    [all...]
copresence_api_unittest.cc 34 using api::copresence::Strategy;
149 publish->strategies.reset(new Strategy);
175 subscribe->strategies.reset(new Strategy);
  /external/aac/libAACdec/src/
rvlc.cpp 820 CHAR Strategy[60]="No";
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/boot/
plexus-classworlds-2.5.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
org.eclipse.sisu.inject-0.0.0.M5.jar 

Completed in 360 milliseconds

1 2 3