Searched refs:strategy (Results 26 - 50 of 155) sorted by relevance

1234567

/external/chromium_org/ui/events/gesture_detection/
H A Dvelocity_tracker_unittest.cc26 const char* GetStrategyName(VelocityTracker::Strategy strategy) { argument
27 switch (strategy) {
37 NOTREACHED() << "Invalid strategy";
94 VelocityTracker::Strategy strategy = local
97 SCOPED_TRACE(GetStrategyName(strategy));
98 VelocityTrackerState state(strategy);
150 VelocityTracker::Strategy strategy = local
153 SCOPED_TRACE(GetStrategyName(strategy));
154 VelocityTrackerState state(strategy);
H A Dvelocity_tracker.h68 // 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 fo
[all...]
H A Dvelocity_tracker_state.cc20 VelocityTrackerState::VelocityTrackerState(VelocityTracker::Strategy strategy) argument
21 : velocity_tracker_(strategy), active_pointer_id_(ACTIVE_POINTER_ID) {}
/external/chromium_org/components/web_cache/browser/
H A Dweb_cache_manager.h118 // An allocation strategy is a list of allocations specifying the resources
135 // The various tactics used as part of an allocation strategy. To decide
140 // Determining a resource allocation strategy amounts to picking a tactic
164 // Helper functions for devising an allocation strategy
177 // Attempt to use the specified tactics to compute an allocation strategy
178 // and place the result in |strategy|. |active_stats| and |inactive_stats|
183 // |strategy| on failure.
188 AllocationStrategy* strategy);
191 // |tactic| and add the result to |strategy|. Any |extra_bytes_to_allocate|
196 AllocationStrategy* strategy);
[all...]
/external/deqp/modules/egl/
H A DteglCreateContextExtTests.cpp199 const char* eglResetNotificationStrategyToString (EGLint strategy) argument
201 switch (strategy)
865 deInt32 strategy; local
867 gl.getIntegerv(GL_RESET_NOTIFICATION_STRATEGY_ARB, &strategy);
870 if (notificationStrategy == EGL_NO_RESET_NOTIFICATION_KHR && strategy != GL_NO_RESET_NOTIFICATION_ARB)
872 log << TestLog::Message << "glGetIntegerv(GL_RESET_NOTIFICATION_STRATEGY_ARB) returned '" << strategy << "', expected 'GL_NO_RESET_NOTIFICATION_ARB'" << TestLog::EndMessage;
875 else if (notificationStrategy == EGL_LOSE_CONTEXT_ON_RESET_KHR && strategy != GL_LOSE_CONTEXT_ON_RESET_ARB)
877 log << TestLog::Message << "glGetIntegerv(GL_RESET_NOTIFICATION_STRATEGY_ARB) returned '" << strategy << "', expected 'GL_LOSE_CONTEXT_ON_RESET_ARB'" << TestLog::EndMessage;
883 deInt32 strategy; local
885 gl.getIntegerv(GL_RESET_NOTIFICATION_STRATEGY_EXT, &strategy);
905 deInt32 strategy; local
923 deInt32 strategy; local
[all...]
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dcontents_layout_manager.h23 // Sets the contents resizing strategy.
25 const DevToolsContentsResizingStrategy& strategy);
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dzip.h229 int strategy,
246 int strategy,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
272 int strategy,
293 int strategy,
/external/chromium_org/ui/compositor/
H A Dscoped_layer_animation_settings.h46 void SetPreemptionStrategy(LayerAnimator::PreemptionStrategy strategy);
/external/objenesis/main/src/org/objenesis/strategy/
H A DSerializingInstantiatorStrategy.java16 package org.objenesis.strategy;
H A DStdInstantiatorStrategy.java16 package org.objenesis.strategy;
/external/zlib/src/contrib/minizip/
H A Dzip.h229 int strategy,
246 int strategy,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
272 int strategy,
293 int strategy,
/external/chromium_org/extensions/renderer/
H A Dapi_activity_logger.cc58 ActivityLogConverterStrategy strategy; local
60 converter->SetStrategy(&strategy);
H A Ddom_activity_logger.cc30 ActivityLogConverterStrategy strategy; local
32 converter->SetStrategy(&strategy);
/external/freetype/src/gzip/
H A Dzlib.h154 /* compression strategy; see deflateInit2() below for details */
401 int strategy));
422 The strategy parameter is used to tune the compression algorithm. Use the
429 between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
479 compression state which can be quite large, so this strategy is slow and
499 Dynamically update the compression level and compression strategy. The
500 interpretation of level and strategy is as in deflateInit2. This can be
503 strategy. If the compression level is changed, the input available so far
635 ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for
637 of deflateInit2 for more information about the strategy paramete
[all...]
/external/chromium_org/chrome/browser/chromeos/net/
H A Dnetwork_portal_detector_impl_browsertest.cc138 PortalDetectorStrategy* strategy() { function in class:chromeos::NetworkPortalDetectorImplBrowserTest
154 ASSERT_EQ(PortalDetectorStrategy::STRATEGY_ID_LOGIN_SCREEN, strategy()->Id());
174 ASSERT_EQ(PortalDetectorStrategy::STRATEGY_ID_SESSION, strategy()->Id());
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DMethodProxy.java98 GeneratorStrategy strategy; field in class:MethodProxy.CreateInfo
108 strategy = fromEnhancer.getStrategy();
119 g.setStrategy(ci.strategy);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
H A Dtester.js94 * @type {Object.<string, number>} Map from a navigation strategy name
95 * to the Navigation Manager strategy enum.
104 * Switches to a different navigation strategy.
105 * @param {string} strategy The desired navigation strategy.
107 cvox.ChromeVoxTester.setStrategy = function(strategy) {
110 cvox.ChromeVoxTester.STRATEGY_MAP[strategy]);
/external/chromium_org/components/policy/core/common/
H A Dschema.h27 // the strategy to handle unknown properties or invalid values for dict type.
91 // Validate |value| against current schema, |strategy| is the strategy to
96 // |strategy|, false will be returned and |error_path| and |error| will
100 SchemaOnErrorStrategy strategy,
112 SchemaOnErrorStrategy strategy,
H A Dschema.cc88 bool StrategyAllowInvalidOnTopLevel(SchemaOnErrorStrategy strategy) { argument
89 return strategy == SCHEMA_ALLOW_INVALID ||
90 strategy == SCHEMA_ALLOW_INVALID_TOPLEVEL ||
91 strategy == SCHEMA_ALLOW_INVALID_TOPLEVEL_AND_ALLOW_UNKNOWN;
94 bool StrategyAllowUnknownOnTopLevel(SchemaOnErrorStrategy strategy) { argument
95 return strategy != SCHEMA_STRICT;
98 SchemaOnErrorStrategy StrategyForNextLevel(SchemaOnErrorStrategy strategy) { argument
107 return next_level_strategy[(int)strategy];
773 SchemaOnErrorStrategy strategy,
805 if (!StrategyAllowUnknownOnTopLevel(strategy))
772 Validate(const base::Value& value, SchemaOnErrorStrategy strategy, std::string* error_path, std::string* error) const argument
853 Normalize(base::Value* value, SchemaOnErrorStrategy strategy, std::string* error_path, std::string* error, bool* changed) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLContentElement.cpp121 ShadowDOMSiblingTraversalStrategy strategy(siblings, nth);
122 return selectorChecker.match(context, strategy) == SelectorChecker::SelectorMatches;
/external/chromium_org/third_party/skia/src/core/
H A DSkBBoxHierarchyRecord.cpp74 SkCanvas::SaveLayerStrategy strategy = this->INHERITED::willSaveLayer(bounds, paint, flags); local
79 return strategy;
/external/skia/src/core/
H A DSkBBoxHierarchyRecord.cpp54 SkCanvas::SaveLayerStrategy strategy = this->INHERITED::willSaveLayer(bounds, paint, flags); local
59 return strategy;
/external/chromium_org/chrome/browser/prefs/
H A Dpref_hash_filter.h49 // tracked independently. Note: preferences using this strategy must be kept
58 PrefTrackingStrategy strategy; member in struct:PrefHashFilter::TrackedPreferenceMetadata
/external/objenesis/main/test/org/objenesis/
H A DObjenesisTest.java21 import org.objenesis.strategy.InstantiatorStrategy;
31 "org.objenesis.ObjenesisStd using org.objenesis.strategy.StdInstantiatorStrategy with caching",
38 "org.objenesis.ObjenesisStd using org.objenesis.strategy.StdInstantiatorStrategy without caching",
63 "org.objenesis.ObjenesisTest$1 using org.objenesis.strategy.StdInstantiatorStrategy with caching",
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzlib.h194 /* compression strategy; see deflateInit2() below for details */
485 int strategy));
517 The strategy parameter is used to tune the compression algorithm. Use the
526 Z_HUFFMAN_ONLY, but give better compression for PNG image data. The strategy
586 compression state which can be quite large, so this strategy is slow and
608 int strategy));
610 Dynamically update the compression level and compression strategy. The
611 interpretation of level and strategy is as in deflateInit2. This can be
614 strategy. If the compression level is changed, the input available so far
1072 ("wb9") or a strategy
[all...]

Completed in 2294 milliseconds

1234567