HomeSort by relevance Sort by last modified time
    Searched refs:strategy (Results 51 - 75 of 889) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/objenesis/main/src/main/java/org/objenesis/strategy/
StdInstantiatorStrategy.java 16 package org.objenesis.strategy;
31 import static org.objenesis.strategy.PlatformDescription.*;
SingleInstantiatorStrategy.java 16 package org.objenesis.strategy;
25 * Strategy returning only one instantiator type. Useful if you know on which JVM Objenesis
35 * Create a strategy that will return always the same instantiator type. We assume this instantiator
  /libcore/benchmarks/src/benchmarks/regression/
SchemePrefixBenchmark.java 26 enum Strategy {
73 @Param Strategy strategy; field in class:SchemePrefixBenchmark
77 strategy.execute("http://android.com");
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/
AndroidDoubleClickStrategyTest.java 55 AndroidDoubleClickStrategy strategy = new AndroidDoubleClickStrategy(); local
63 Point positions = strategy.getWord(before, cursor);
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
DeflateCompressorTest.java 134 for (int strategy = 0; strategy <= 2; strategy++) {
137 compressor.setStrategy(strategy);
138 Assert.assertEquals(strategy, compressor.getStrategy());
140 content[strategy] = new Content();
141 content[strategy].compressed = compressedContentOut.toByteArray();
142 content[strategy].uncompressed =
143 uncompressWithJavaInflater(compressor.isNowrap(), content[strategy].compressed);
144 Assert.assertArrayEquals(CONTENT, content[strategy].uncompressed)
    [all...]
  /external/caliper/examples/src/main/java/examples/
CopyArrayBenchmark.java 48 public enum Strategy {
241 @Param Strategy strategy; field in class:CopyArrayBenchmark
284 dummy += System.identityHashCode(strategy.copy(objectArray));
292 dummy += System.identityHashCode(strategy.copy(booleanArray));
300 dummy += System.identityHashCode(strategy.copy(byteArray));
308 dummy += System.identityHashCode(strategy.copy(charArray));
316 dummy += System.identityHashCode(strategy.copy(doubleArray));
324 dummy += System.identityHashCode(strategy.copy(floatArray));
332 dummy += System.identityHashCode(strategy.copy(intArray))
    [all...]
VarargsBenchmark.java 32 enum Strategy {
128 @Param private Strategy strategy; field in class:VarargsBenchmark
164 dummy += strategy.one(data[i % dataLength]);
174 dummy += strategy.two(data[i % dataLength], data[(i + 1) % dataLength]);
184 dummy += strategy.three(
197 dummy += strategy.four(
211 dummy += strategy.five(
226 dummy += strategy.six(
  /external/guava/guava/src/com/google/common/base/
Splitter.java 106 private final Strategy strategy; field in class:Splitter
109 private Splitter(Strategy strategy) {
110 this(strategy, false, CharMatcher.NONE, Integer.MAX_VALUE);
113 private Splitter(Strategy strategy, boolean omitEmptyStrings,
115 this.strategy = strategy;
146 return new Splitter(new Strategy() {
    [all...]
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/2.4/
objenesis-2.4.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/2.5/
objenesis-2.5.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/1.0/
objenesis-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/1.2/
objenesis-1.2.jar 
  /prebuilts/tools/common/objenesis/
objenesis-1.2.jar 
  /art/compiler/optimizing/
register_allocator_test.cc 35 using Strategy = RegisterAllocator::Strategy;
44 static void SameAsFirstInputHint(Strategy strategy);
45 static void ExpectedInRegisterHint(Strategy strategy);
51 test_name(Strategy::kRegisterAllocatorLinearScan);\
54 test_name(Strategy::kRegisterAllocatorGraphColor);\
57 static bool Check(const uint16_t* data, Strategy strategy) {
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/progress/
MockingProgress.java 50 void setVerificationStrategy(VerificationStrategy strategy);
  /external/objenesis/main/src/test/java/org/objenesis/instantiator/sun/
MagicInstantiatorTest.java 22 import org.objenesis.strategy.PlatformDescription;
  /external/zlib/src/contrib/minizip/
zip.h 229 int strategy,
246 int strategy,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
272 int strategy,
293 int strategy,
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
EffectDescriptor.h 34 routing_strategy mStrategy; // routing strategy the effect is associated to
46 uint32_t strategy, int session, int id);
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
Stream.cpp 34 // Declares the strategy to audio policy engine
44 static_cast<routing_strategy>(params.strategy));
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Engine.cpp 28 #include "Strategy.h"
146 audio_devices_t Engine::ManagerInterfaceImpl::getDeviceForStrategy(routing_strategy strategy) const
160 if (strategy == STRATEGY_SONIFICATION_RESPECTFUL &&
167 if (strategy == STRATEGY_ACCESSIBILITY &&
175 return mPolicyEngine->getPropertyForKey<audio_devices_t, routing_strategy>(strategy);
  /frameworks/av/services/audiopolicy/enginedefault/src/
Engine.cpp 79 // store previous phone state for management of sonification strategy below
166 // stream to strategy mapping
181 // NOTE: SYSTEM stream uses MEDIA strategy because muting music and switching outputs
198 // usage to strategy mapping
233 audio_devices_t Engine::getDeviceForStrategy(routing_strategy strategy) const
240 return getDeviceForStrategyInt(strategy, availableOutputDevices,
246 audio_devices_t Engine::getDeviceForStrategyInt(routing_strategy strategy,
254 switch (strategy) {
303 // when off call, DTMF strategy follows the same rules as MEDIA strategy
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
target-reloc.h 480 // Return the strategy to use for a local symbol which is not a
492 // Return the strategy to use for a local symbol which is a section
520 // Return the strategy to use for a global symbol, given the
560 Relocatable_relocs::Reloc_strategy strategy; local
565 strategy = Relocatable_relocs::RELOC_DISCARD;
574 strategy = scan.global_strategy(r_type, object, r_sym);
590 strategy = Relocatable_relocs::RELOC_DISCARD;
593 strategy = scan.local_non_section_strategy(r_type, object,
597 strategy = scan.local_section_strategy(r_type, object);
598 if (strategy != Relocatable_relocs::RELOC_DISCARD
643 Relocatable_relocs::Reloc_strategy strategy = rr->strategy(i); local
    [all...]
  /external/freetype/src/gzip/
zlib.h 154 /* 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 parameter.
    [all...]
  /external/junit-params/src/test/java/junitparams/naming/
MacroSubstitutionNamingStrategyTest.java 40 TestCaseNamingStrategy strategy = createNamingStrategyForMethod(methodName, String.class); local
42 String name = strategy.getTestCaseName(0, new Object[]{"value"});
  /frameworks/rs/tests/lldb/java/SingleSource/src/rs/
rs_single_source.rs 65 .strategy=RS_FOR_EACH_STRATEGY_DONT_CARE,

Completed in 1032 milliseconds

1 23 4 5 6 7 8 91011>>