HomeSort by relevance Sort by last modified time
    Searched full:strategy (Results 1 - 25 of 1010) 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...]
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
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
  /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...]
  /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);
MatchStrategy.java 20 * Encapsulates the matching strategy.
33 * strategy, for example, "matches pattern".
  /prebuilts/tools/common/m2/internal/org/objenesis/objenesis/1.2/
objenesis-1.2-sources.jar 
  /prebuilts/tools/common/objenesis/
objenesis-1.2-sources.jar 
objenesis-1.2-javadoc.jar 
  /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/docs/html/training/
distribute.jd 8 <p>These classes focus on the business aspects of your app strategy, including techniques
  /external/chromium/chrome/browser/renderer_host/
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_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...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 37 private BufferStrategy strategy; field in class:AwtPanel
105 if (strategy != null){
106 // strategy.dispose();
107 strategy = null;
108 System.out.println("OGL: Not visible. Destroy strategy.");
144 // All operations on strategy should be synchronized (?)
145 if (strategy == null){
156 strategy = getBufferStrategy();
157 System.out.println("OGL: Visible. Create strategy.");
163 Graphics2D g2d = (Graphics2D) strategy.getDrawGraphics()
    [all...]
  /external/iptables/extensions/
libxt_string.man 1 This modules matches a given string by using some pattern matching strategy. It requires a linux kernel >= 2.6.14.
4 Select the pattern matching strategy. (bm = Boyer-Moore, kmp = Knuth-Pratt-Morris)
  /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.
  /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...]
  /external/junit/src/org/junit/runners/model/
RunnerScheduler.java 4 * Represents a strategy for scheduling when individual test methods
  /external/llvm/tools/llvm-symbolizer/
CMakeLists.txt 4 # targets as well. Currently, there is no support for such a build strategy.
  /external/objenesis/main/test/org/objenesis/
ObjenesisTest.java 21 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",
  /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/content/renderer/
v8_value_converter_impl.h 33 virtual void SetStrategy(Strategy* strategy) OVERRIDE;
86 // Strategy object that changes the converter's behavior.
87 Strategy* strategy_;

Completed in 407 milliseconds

1 2 3 4 5 6 7 8 91011>>