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

1 2 3 4 5 6 7 8 91011>>

  /external/objenesis/main/src/org/objenesis/
ObjenesisBase.java 22 import org.objenesis.strategy.InstantiatorStrategy;
25 * Base class to extend if you want to have a class providing your own default strategy. Can also be
32 /** Strategy used by this Objenesi implementation to create classes */
33 protected final InstantiatorStrategy strategy; field in class:ObjenesisBase
35 /** Strategy cache. Key = Class, Value = InstantiatorStrategy */
39 * Constructor allowing to pick a strategy and using cache
41 * @param strategy Strategy to use
43 public ObjenesisBase(InstantiatorStrategy strategy) {
44 this(strategy, true);
    [all...]
ObjenesisSerializer.java 18 import org.objenesis.strategy.SerializingInstantiatorStrategy;
28 * Default constructor using the {@link org.objenesis.strategy.SerializingInstantiatorStrategy}
35 * Instance using the {@link org.objenesis.strategy.SerializingInstantiatorStrategy} with or without caching
ObjenesisStd.java 18 import org.objenesis.strategy.StdInstantiatorStrategy;
21 * Objenesis implementation using the {@link org.objenesis.strategy.StdInstantiatorStrategy}.
28 * Default constructor using the {@link org.objenesis.strategy.StdInstantiatorStrategy}
35 * Instance using the {@link org.objenesis.strategy.StdInstantiatorStrategy} with or without
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByAttribute.java 27 private final MatchStrategy<? super T> strategy; field in class:ByAttribute
30 protected ByAttribute(Attribute attribute, MatchStrategy<? super T> strategy, T expected) {
32 this.strategy = checkNotNull(strategy);
39 return strategy.match(expected, value);
44 return String.format("ByAttribute{%s %s %s}", attribute, strategy, expected);
  /external/objenesis/main/src/org/objenesis/strategy/
InstantiatorStrategy.java 16 package org.objenesis.strategy;
21 * Defines a strategy to determine the best instantiator for a class.
BaseInstantiatorStrategy.java 16 package org.objenesis.strategy;
  /external/mockito/src/org/mockito/internal/configuration/injection/
MockInjectionStrategy.java 12 * Injector strategy contract
17 * NOP Strategy that will always try the next strategy.
31 * Enqueue next injection strategy.
37 * @param strategy Queued strategy.
38 * @return The passed strategy instance to allow chaining.
40 public MockInjectionStrategy thenTry(MockInjectionStrategy strategy) {
42 nextStrategy.thenTry(strategy);
44 nextStrategy = strategy;
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DocumentBuilderSetting.java 33 * strategy used to set or get property value.
35 private final DocumentBuilderSettingStrategy strategy; field in class:DocumentBuilderSetting
204 * @param strategy strategy, may not be null
209 DocumentBuilderSettingStrategy strategy) {
215 this.strategy = strategy;
232 return strategy.hasConflict(other.strategy);
241 return strategy.hasSetting(factory) == value
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentBuilderSetting.java 33 * strategy used to set or get property value.
35 private final DocumentBuilderSettingStrategy strategy; field in class:DocumentBuilderSetting
204 * @param strategy strategy, may not be null
209 DocumentBuilderSettingStrategy strategy) {
215 this.strategy = strategy;
232 return strategy.hasConflict(other.strategy);
241 return strategy.hasSetting(factory) == value
    [all...]
  /external/chromium_org/chrome/test/chromedriver/client/
webelement.py 20 def FindElement(self, strategy, target):
22 Command.FIND_CHILD_ELEMENT, {'using': strategy, 'value': target})
24 def FindElements(self, strategy, target):
26 Command.FIND_CHILD_ELEMENTS, {'using': strategy, 'value': target})
  /frameworks/base/core/java/android/view/
VelocityTracker.java 40 private static native int nativeInitialize(String strategy);
63 * Obtains a velocity tracker with the specified strategy.
66 * @param strategy The strategy, or null to use the default.
71 public static VelocityTracker obtain(String strategy) {
72 if (strategy == null) {
75 return new VelocityTracker(strategy);
89 private VelocityTracker(String strategy) {
90 mPtr = nativeInitialize(strategy);
91 mStrategy = 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...]
  /libcore/luni/src/main/java/java/util/zip/
Deflater.java 88 * The default compression strategy.
98 * A compression strategy.
103 * A compression strategy.
145 private int strategy = DEFAULT_STRATEGY; field in class:Deflater
160 * The compression strategy can be specified with {@link #setStrategy}. A
171 * The compression strategy can be specified with {@link #setStrategy}.
184 * header. The strategy can be specified using {@link #setStrategy}.
191 streamHandle = createStream(compressLevel, strategy, noHeader);
350 * previously made settings for the compression strategy or level. This
406 setLevelsImpl(compressLevel, strategy, streamHandle)
    [all...]
  /external/ceres-solver/internal/ceres/
dogleg_strategy_test.cc 139 DoglegStrategy strategy(options_);
142 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso,
159 DoglegStrategy strategy(options_);
162 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso,
179 DoglegStrategy strategy(options_);
182 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso,
206 DoglegStrategy strategy(options_);
209 strategy.ComputeStep(pso, jacobian_.get(), residual_.data(), x_.data());
212 const Matrix basis = strategy.subspace_basis();
218 const Vector gradient = strategy.gradient()
    [all...]
  /external/chromium/chrome/browser/renderer_host/
web_cache_manager.cc 88 // Revise our allocation strategy to account for this new renderer.
215 AllocationStrategy* strategy) {
216 DCHECK(strategy);
244 AddToStrategy(active_renderers_, active_tactic, active_extra, strategy);
245 AddToStrategy(inactive_renderers_, inactive_tactic, inactive_extra, strategy);
247 // We succeeded in computing an allocation strategy.
254 AllocationStrategy* strategy) {
255 DCHECK(strategy);
274 // Record the allocation in our strategy.
275 strategy->push_back(Allocation(*iter, cache_size))
357 AllocationStrategy strategy; local
    [all...]
web_cache_manager_unittest.cc 64 std::list< std::pair<int,size_t> >* strategy) {
70 strategy);
76 std::list< std::pair<int,size_t> >* strategy) {
80 strategy);
233 AllocationStrategy strategy; local
240 &strategy));
241 EXPECT_TRUE(strategy.empty());
248 &strategy));
249 EXPECT_EQ(2U, strategy.size());
251 AllocationStrategy::iterator iter = strategy.begin()
279 AllocationStrategy strategy; local
284 &strategy); local
    [all...]
web_cache_manager.h 90 // An allocation strategy is a list of allocations specifying the resources
107 // The various tactics used as part of an allocation strategy. To decide
112 // Determining a resource allocation strategy amounts to picking a tactic
136 // Helper functions for devising an allocation strategy
149 // Attempt to use the specified tactics to compute an allocation strategy
150 // and place the result in |strategy|. |active_stats| and |inactive_stats|
155 // |strategy| on failure.
160 AllocationStrategy* strategy);
163 // |tactic| and add the result to |strategy|. Any |extra_bytes_to_allocate|
168 AllocationStrategy* strategy);
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/
web_cache_manager.cc 96 // Revise our allocation strategy to account for this new renderer.
243 AllocationStrategy* strategy) {
244 DCHECK(strategy);
272 AddToStrategy(active_renderers_, active_tactic, active_extra, strategy);
273 AddToStrategy(inactive_renderers_, inactive_tactic, inactive_extra, strategy);
275 // We succeeded in computing an allocation strategy.
282 AllocationStrategy* strategy) {
283 DCHECK(strategy);
302 // Record the allocation in our strategy.
303 strategy->push_back(Allocation(*iter, cache_size))
387 AllocationStrategy strategy; local
    [all...]
web_cache_manager_unittest.cc 65 std::list< std::pair<int,size_t> >* strategy) {
71 strategy);
77 std::list< std::pair<int,size_t> >* strategy) {
81 strategy);
234 AllocationStrategy strategy; local
241 &strategy));
242 EXPECT_TRUE(strategy.empty());
249 &strategy));
250 EXPECT_EQ(2U, strategy.size());
252 AllocationStrategy::iterator iter = strategy.begin()
280 AllocationStrategy strategy; local
285 &strategy); local
    [all...]
web_cache_manager.h 101 // An allocation strategy is a list of allocations specifying the resources
118 // The various tactics used as part of an allocation strategy. To decide
123 // Determining a resource allocation strategy amounts to picking a tactic
147 // Helper functions for devising an allocation strategy
160 // Attempt to use the specified tactics to compute an allocation strategy
161 // and place the result in |strategy|. |active_stats| and |inactive_stats|
166 // |strategy| on failure.
171 AllocationStrategy* strategy);
174 // |tactic| and add the result to |strategy|. Any |extra_bytes_to_allocate|
179 AllocationStrategy* strategy);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormatter.java 76 AndroidXmlFormattingStrategy strategy = new AndroidXmlFormattingStrategy(); local
79 strategy.formatterStarts(context);
80 strategy.format();
81 strategy.formatterStops();
  /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...]
  /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/emma/core/java12/com/vladium/util/
ClassLoaderResolver.java 110 * Gets the current classloader selection strategy setting.
118 * Sets the classloader selection strategy to be used by subsequent calls
122 * @param strategy new strategy [may not be null]
125 public static synchronized IClassLoadStrategy setStrategy (final IClassLoadStrategy strategy)
127 if (strategy == null) throw new IllegalArgumentException ("null input: strategy");
130 s_strategy = strategy;
  /external/chromium_org/ui/compositor/
scoped_layer_animation_settings.h 38 void SetPreemptionStrategy(LayerAnimator::PreemptionStrategy strategy);

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 91011>>