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

1 2 3 4 5 6 7 8 910

  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
Strategy.h 27 class Strategy : public CFormattedSubsystemObject
30 Strategy(const std::string &mappingValue,
46 android::routing_strategy mId; /**< strategy identifier to link with audio.h.*/
Strategy.cpp 17 #include "Strategy.h"
24 Strategy::Strategy(const string &mappingValue,
40 // Declares the strategy to audio policy engine
44 bool Strategy::sendToHW(string & /*error*/)
Android.mk 11 Strategy.cpp \
PolicySubsystem.cpp 20 #include "Strategy.h"
39 const char *const PolicySubsystem::mStrategyComponentName = "Strategy";
71 new TSubsystemObjectFactory<Strategy>(
  /packages/apps/Messaging/src/com/android/messaging/util/
FallbackStrategies.java 50 public interface Strategy<Input, Output> {
54 private final List<Strategy<Input, Output>> mChainedStrategies;
56 private FallbackStrategies(final Strategy<Input, Output> primaryStrategy) {
57 mChainedStrategies = new ArrayList<Strategy<Input, Output>>();
62 final Strategy<Input, Output> primaryStrategy) {
66 public FallbackStrategies<Input, Output> thenTry(final Strategy<Input, Output> strategy) {
68 mChainedStrategies.add(strategy);
75 final Strategy<Input, Output> strategy = mChainedStrategies.get(i) local
    [all...]
  /external/skia/include/android/
SkBitmapRegionDecoder.h 23 enum Strategy {
30 * @param strategy Strategy used for scaling and subsetting
34 SkData* data, Strategy strategy);
38 * @param strategy Strategy used for scaling and subsetting
42 SkStreamRewindable* stream, Strategy strategy);
  /external/skia/bench/
BitmapRegionDecoderBench.h 30 SkBitmapRegionDecoder::Strategy strategy, SkColorType colorType,
43 const SkBitmapRegionDecoder::Strategy fStrategy;
BitmapRegionDecoderBench.cpp 14 SkBitmapRegionDecoder::Strategy strategy, SkColorType colorType,
18 , fStrategy(strategy)
23 // Choose a useful name for the region decoding strategy
25 switch (strategy) {
  /hardware/qcom/display/msm8996/sdm/libs/core/
strategy.cpp 28 #include "strategy.h"
30 #define __CLASS__ "Strategy"
34 Strategy::Strategy(ExtensionInterface *extension_intf, DisplayType type,
44 DisplayError Strategy::Init() {
52 DLOGE("Failed to create strategy");
64 DisplayError Strategy::Deinit() {
76 DisplayError Strategy::Start(HWLayersInfo *hw_layers_info, uint32_t *max_attempts,
115 DisplayError Strategy::Stop() {
123 DisplayError Strategy::GetNextStrategy(StrategyConstraints *constraints)
    [all...]
strategy.h 33 class Strategy {
35 Strategy(ExtensionInterface *extension_intf, DisplayType type,
comp_manager.h 33 #include "strategy.h"
81 Strategy *strategy = NULL; member in struct:sdm::CompManager::DisplayCompositionContext
101 // mode, where strategy manager chooses the best strategy
  /hardware/qcom/display/msmcobalt/sdm/libs/core/
strategy.cpp 28 #include "strategy.h"
30 #define __CLASS__ "Strategy"
34 Strategy::Strategy(ExtensionInterface *extension_intf, DisplayType type,
44 DisplayError Strategy::Init() {
52 DLOGE("Failed to create strategy");
64 DisplayError Strategy::Deinit() {
76 DisplayError Strategy::Start(HWLayersInfo *hw_layers_info, uint32_t *max_attempts,
102 DisplayError Strategy::Stop() {
110 DisplayError Strategy::GetNextStrategy(StrategyConstraints *constraints)
    [all...]
strategy.h 33 class Strategy {
35 Strategy(ExtensionInterface *extension_intf, DisplayType type,
comp_manager.h 33 #include "strategy.h"
81 Strategy *strategy = NULL; member in struct:sdm::CompManager::DisplayCompositionContext
101 // mode, where strategy manager chooses the best strategy
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Strategy.h 28 * @tparam audio_devices_t: Applicable output device(s) for this strategy.
81 audio_devices_t mApplicableDevices; /**< Applicable output device(s) for this strategy. */
84 typedef Element<routing_strategy> Strategy;
  /external/skia/src/android/
SkBitmapRegionDecoder.cpp 17 SkData* data, Strategy strategy) {
19 strategy);
23 SkStreamRewindable* stream, Strategy strategy) {
25 switch (strategy) {
  /libcore/benchmarks/src/benchmarks/regression/
SchemePrefixBenchmark.java 26 enum Strategy {
73 @Param Strategy strategy; field in class:SchemePrefixBenchmark
77 strategy.execute("http://android.com");
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Splitter.java 96 private final Strategy strategy; field in class:Splitter
98 private Splitter(Strategy strategy) {
99 this(strategy, false, CharMatcher.NONE);
102 private Splitter(Strategy strategy, boolean omitEmptyStrings,
104 this.strategy = strategy;
134 return new Splitter(new Strategy() {
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 103 private final Strategy strategy; field in class:Splitter
106 private Splitter(Strategy strategy) {
107 this(strategy, false, CharMatcher.NONE, Integer.MAX_VALUE);
110 private Splitter(Strategy strategy, boolean omitEmptyStrings,
112 this.strategy = strategy;
143 return new Splitter(new Strategy() {
    [all...]
  /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...]
  /external/guava/guava/src/com/google/common/hash/
BloomFilter.java 64 * A strategy to translate T instances, to {@code numHashFunctions} bit indexes.
68 interface Strategy extends java.io.Serializable {
85 * Identifier used to encode this strategy, when marshalled as part of a BloomFilter.
88 * negative values are reserved for any custom, stateful strategy we may define
89 * (e.g. any kind of strategy that would depend on user input).
104 * The strategy we employ to map an element T to {@code numHashFunctions} bit indexes.
106 private final Strategy strategy; field in class:BloomFilter
112 Strategy strategy) {
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/
Android.mk 14 src/Strategy.cpp \
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
FrequentContactsCursorQueryData.java 26 import com.android.messaging.util.FallbackStrategies.Strategy;
54 private abstract class StrequentContactsQueryStrategy implements Strategy<Void, Cursor> {
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 299 /// strategy, for example 'minimum resource height'. There is one trace for
341 enum Strategy {
348 /// Get the trace ensemble representing the given trace selection strategy.
351 Ensemble *getEnsemble(Strategy);
374 // One ensemble per strategy.
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MembersInjectionBinding.java 71 enum Strategy {
76 Strategy injectionStrategy() {
77 return injectionSites().isEmpty() ? Strategy.NO_OP : Strategy.INJECT_MEMBERS;

Completed in 754 milliseconds

1 2 3 4 5 6 7 8 910