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

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormatter.java 73 AndroidXmlFormattingStrategy strategy = new AndroidXmlFormattingStrategy(); local
76 strategy.formatterStarts(context);
77 strategy.format();
78 strategy.formatterStops();
  /external/guava/src/com/google/common/base/
Splitter.java 94 private final Strategy strategy; field in class:Splitter
96 private Splitter(Strategy strategy) {
97 this(strategy, false, CharMatcher.NONE);
100 private Splitter(Strategy strategy, boolean omitEmptyStrings,
102 this.strategy = strategy;
132 return new Splitter(new 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...]
LSDocumentBuilderFactory.java 38 * Abstract class for a strategy to map a DocumentBuilderSetting
109 * A strategy for a setting that can be applied by setting a DOMConfiguration
195 * A strategy for the validation settings which require
297 Object strategy = strategies.get(settings[i].getProperty()); local
298 if (strategy == null) {
302 ( (LSStrategy) strategy).applySetting(settings[i], parser);
  /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...]
  /bootable/recovery/applypatch/
imgpatch.c 121 int strategy = Read4(deflate_header+56); local
194 ret = deflateInit2(&strm, level, method, windowBits, memLevel, strategy);
imgdiff.c 82 * strategy (4)
96 * strategy (4)
149 int level, method, windowBits, memLevel, strategy; member in struct:__anon657
527 chunk->memLevel, chunk->strategy);
538 chunk->memLevel, chunk->strategy);
563 * strategy fields in the chunk to the encoding parameters needed to
581 chunk->strategy = Z_DEFAULT_STRATEGY;
986 Write4(tgt_chunks[i].strategy, f);
  /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.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...]
  /external/zlib/
gzguts.h 106 int strategy; /* compression strategy */ member in struct:__anon14467
gzio.c 100 int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */ local
140 strategy = Z_FILTERED;
142 strategy = Z_HUFFMAN_ONLY;
144 strategy = Z_RLE;
156 Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
232 * Update the compression level and strategy
234 int ZEXPORT gzsetparams (file, level, strategy)
237 int strategy;
253 return deflateParams (&(s->stream), level, strategy);
    [all...]
deflate.h 183 int strategy; /* favor or force Huffman coding*/ member in struct:internal_state
  /external/chromium/webkit/glue/media/
buffered_data_source.cc 321 BufferedResourceLoader::DeferStrategy strategy = ChooseDeferStrategy(); local
322 loader_->UpdateDeferStrategy(strategy);
358 BufferedResourceLoader::DeferStrategy strategy = ChooseDeferStrategy(); local
359 loader_->UpdateDeferStrategy(strategy);
376 BufferedResourceLoader::DeferStrategy strategy = ChooseDeferStrategy(); local
377 loader_->UpdateDeferStrategy(strategy);
  /libcore/luni/src/main/java/java/util/zip/
Deflater.java 72 * The default compression strategy.
82 * A compression strategy.
87 * A compression strategy.
140 private int strategy = DEFAULT_STRATEGY; field in class:Deflater
154 * level. The strategy can be specified with {@link #setStrategy}. A
164 * level {@code level}. The strategy can be specified with {@link #setStrategy}.
179 * 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/qemu/distrib/zlib-1.2.3/
gzio.c 100 int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */ local
140 strategy = Z_FILTERED;
142 strategy = Z_HUFFMAN_ONLY;
144 strategy = Z_RLE;
156 Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
232 * Update the compression level and strategy
234 int ZEXPORT gzsetparams (file, level, strategy)
237 int strategy;
253 return deflateParams (&(s->stream), level, strategy);
    [all...]
deflate.h 183 int strategy; /* favor or force Huffman coding*/ member in struct:internal_state
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 44 * instance. Client libraries implement {@link Strategy}, and this class
74 * <p>For example, the following strategy emulates the behavior of
79 * implements CustomConcurrentHashMap.Strategy<K, V,
119 * To create a {@link java.util.concurrent.ConcurrentMap} using the strategy
197 * Creates a new concurrent hash map backed by the given strategy.
199 * @param strategy used to implement and manipulate the entries
205 * @throws NullPointerException if strategy is null
207 public <K, V, E> ConcurrentMap<K, V> buildMap(Strategy<K, V, E> strategy) {
208 if (strategy == null)
572 final Strategy<K, V, E> strategy; field in class:CustomConcurrentHashMap.Impl
1908 static final Field strategy = findField("strategy"); field in class:CustomConcurrentHashMap.Impl.Fields
1927 Strategy<K, V, E> strategy = (Strategy<K, V, E>) in.readObject(); local
    [all...]
  /frameworks/base/media/libmedia/
IAudioPolicyService.cpp 293 uint32_t strategy,
301 data.writeInt32(strategy);
573 uint32_t strategy = data.readInt32(); local
578 strategy,
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 237 // pertaining to sonification strategy see handleIncallSonification()
245 // store previous phone state for management of sonification strategy below
300 // pertaining to sonification strategy see handleIncallSonification()
433 routing_strategy strategy = getStrategy((AudioSystem::stream_type)stream); local
434 uint32_t device = getDeviceForStrategy(strategy);
562 routing_strategy strategy = getStrategy((AudioSystem::stream_type)stream); local
566 (strategy == STRATEGY_SONIFICATION || strategy == STRATEGY_ENFORCED_AUDIBLE)) {
609 routing_strategy strategy = getStrategy((AudioSystem::stream_type)stream); local
626 (strategy == STRATEGY_SONIFICATION || strategy == STRATEGY_ENFORCED_AUDIBLE))
1602 AudioPolicyManagerBase::routing_strategy strategy = getStrategy(stream); local
    [all...]
  /bionic/libc/kernel/common/linux/
pkt_sched.h 323 unsigned char strategy; member in struct:tc_cbq_ovl
  /development/ndk/platforms/android-3/include/linux/
pkt_sched.h 289 unsigned char strategy; member in struct:tc_cbq_ovl
  /external/iproute2/include/linux/
pkt_sched.h 357 unsigned char strategy; member in struct:tc_cbq_ovl
  /external/kernel-headers/original/linux/
pkt_sched.h 383 unsigned char strategy; member in struct:tc_cbq_ovl
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pkt_sched.h 356 unsigned char strategy; member in struct:tc_cbq_ovl
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
pkt_sched.h 289 unsigned char strategy; member in struct:tc_cbq_ovl

Completed in 1620 milliseconds

1 2 3