HomeSort by relevance Sort by last modified time
    Searched refs:Config (Results 126 - 150 of 1082) sorted by null

1 2 3 4 56 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
PorterDuffColorFilterTest.java 24 import android.graphics.Bitmap.Config;
34 Bitmap b1 = Bitmap.createBitmap(width / 2, height, Config.ARGB_8888);
36 Bitmap b2 = Bitmap.createBitmap(width, height / 2, Config.ARGB_8888);
39 Bitmap target = Bitmap.createBitmap(width, height, Config.ARGB_8888);
PorterDuffXfermodeTest.java 25 import android.graphics.Bitmap.Config;
35 Bitmap target = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888);
37 Bitmap b1 = Bitmap.createBitmap(WIDTH / 2, HEIGHT, Config.ARGB_8888);
39 Bitmap b2 = Bitmap.createBitmap(WIDTH, HEIGHT / 2, Config.ARGB_8888);
  /external/aac/libSYS/src/mips/
genericStds_mips.cpp 96 /* value below is defined in simulator config (MipsMemIntf-{24KE,4KE}.cfg) */
186 unsigned int Config;
188 Config = mips_getconfig();
189 hasISPRAM = (Config >> 24) & 1;
190 hasDSPRAM = (Config >> 23) & 1;
192 FDKprintf("Config ISP/DSP: %d/%d\n", hasISPRAM, hasDSPRAM);
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 133 template <class Config>
142 template<class Config>
143 struct TypeImpl<Config>::BitsetType {
145 Config::from_bitset();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifBitmapProvider.java 17 public Bitmap obtain(int width, int height, Bitmap.Config config) {
18 return bitmapPool.getDirty(width, height, config);
  /external/parameter-framework/upstream/test/functional-tests/
FloatingPoint.cpp 31 #include "Config.hpp"
46 const auto validInstances = Config{&Config::instances,
67 create(Config{&Config::instances, vec.payload});
  /external/skia/bench/
nanobenchAndroid.h 17 explicit HWUITarget(const Config& c, Benchmark* bench);
  /external/toybox/scripts/
genconfig.sh 15 # Probe for a single config symbol with a "compiles or not" test.
21 echo -e "config $1\n\tbool" || exit 1
107 # extract config stanzas from each source file, in alphabetical order
110 # Grab the config block for Config.in
112 sed -n '/^\*\//q;/^config [A-Z]/,$p' $i || return 1
120 probeconfig > generated/Config.probed || rm generated/Config.probed
121 genconfig > generated/Config.in || rm generated/Config.i
    [all...]
  /external/v8/tools/release/
merge_to_branch.py 42 if os.path.exists(self.Config("ALREADY_MERGING_SENTINEL_FILE")):
44 os.remove(self.Config("ALREADY_MERGING_SENTINEL_FILE"))
47 open(self.Config("ALREADY_MERGING_SENTINEL_FILE"), "a").close()
63 self.GitCreateBranch(self.Config("BRANCHNAME"),
142 TextToFile(patch, self.Config("TEMPORARY_PATCH_FILE"))
143 self.ApplyPatch(self.Config("TEMPORARY_PATCH_FILE"))
187 TextToFile(self["new_commit_msg"], self.Config("COMMITMSG_FILE"))
188 self.GitCommit(file_name=self.Config("COMMITMSG_FILE"))
195 self.GitCheckout(self.Config("BRANCHNAME"))
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/
audio_encoder_pcm.cc 24 typename T::Config CreateConfig(const CodecInst& codec_inst) {
25 typename T::Config config; local
26 config.frame_size_ms = codec_inst.pacsize / 8;
27 config.num_channels = codec_inst.channels;
28 config.payload_type = codec_inst.pltype;
29 return config;
34 bool AudioEncoderPcm::Config::IsOk() const {
38 AudioEncoderPcm::AudioEncoderPcm(const Config& config, int sample_rate_hz
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
audio_encoder_ilbc.cc 25 AudioEncoderIlbc::Config CreateConfig(const CodecInst& codec_inst) {
26 AudioEncoderIlbc::Config config; local
27 config.frame_size_ms = codec_inst.pacsize / 8;
28 config.payload_type = codec_inst.pltype;
29 return config;
37 bool AudioEncoderIlbc::Config::IsOk() const {
44 AudioEncoderIlbc::AudioEncoderIlbc(const Config& config)
45 : config_(config),
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/include/
audio_coding_module.h 63 struct Config {
64 Config() : id(0), neteq_config(), clock(Clock::GetRealTimeClock()) {
71 NetEq::Config neteq_config;
84 static AudioCodingModule* Create(const Config& config);
  /external/webrtc/webrtc/modules/audio_coding/test/
TestRedFec.h 22 class Config;
  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
after_initialization_fixture.cc 26 webrtc::Config config; local
27 config.Set<webrtc::ExperimentalAgc>(new webrtc::ExperimentalAgc(false));
28 webrtc::AudioProcessing* audioproc = webrtc::AudioProcessing::Create(config);
before_initialization_fixture.h 70 webrtc::Config config_;
  /external/webrtc/webrtc/voice_engine/
voice_engine_impl.cc 33 VoiceEngine* GetVoiceEngine(const Config* config, bool owns_config) {
34 VoiceEngineImpl* self = new VoiceEngineImpl(config, owns_config);
76 Config* config = new Config(); local
77 return GetVoiceEngine(config, true);
80 VoiceEngine* VoiceEngine::Create(const Config& config) {
81 return GetVoiceEngine(&config, false)
    [all...]
  /frameworks/compile/mclinker/
mcld-device-build.mk 9 -include $(MCLD_ROOT_PATH)/include/mcld/Config/Config.h \
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
StaggeredGridLayoutManagerGapTest.java 36 private final Config mConfig;
40 public StaggeredGridLayoutManagerGapTest(Config config, int deletePosition, int deleteCount) {
41 mConfig = config;
46 @Parameterized.Parameters(name = "config={0} deletePos={1} deleteCount={2}")
48 List<Config> variations = createBaseVariations();
50 for (Config config : variations) {
51 for (int deleteCount = 1; deleteCount < config.mSpanCount * 2; deleteCount++) {
52 for (int deletePosition = config.mSpanCount - 1
    [all...]
BaseLinearLayoutManagerTest.java 48 protected static List<Config> createBaseVariations() {
49 List<Config> variations = new ArrayList<>();
55 new Config(orientation, reverseLayout, stackFromBottom).wrap(wrap));
67 protected static List<Config> addConfigVariation(List<Config> base, String fieldName,
70 List<Config> newConfigs = new ArrayList<Config>();
71 Field field = Config.class.getDeclaredField(fieldName);
72 for (Config config : base)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterApp.java 51 Config.init(this);
  /packages/services/Car/car-support-lib/src/android/support/car/app/menu/
Utils.java 28 Bitmap bitmap = Bitmap.createBitmap(metrics, width, height, Bitmap.Config.ARGB_8888);
  /system/connectivity/apmanager/dbus/
config_dbus_adaptor.h 24 #include <dbus_bindings/org.chromium.apmanager.Config.h>
30 class Config;
39 Config* config,
85 Config* config_;
  /external/webrtc/webrtc/test/
call_test.cc 12 #include "webrtc/config.h"
46 Call::Config send_config(test->GetSenderCallConfig());
49 AudioState::Config audio_state_config;
55 Call::Config recv_config(test->GetReceiverCallConfig());
57 AudioState::Config audio_state_config;
159 void CallTest::CreateCalls(const Call::Config& sender_config,
160 const Call::Config& receiver_config) {
165 void CallTest::CreateSenderCall(const Call::Config& config) {
166 sender_call_.reset(Call::Create(config));
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
debug_dump_test.cc 32 const StreamConfig& config) {
34 if (!buffer_ref.get() || buffer_ref->num_frames() != config.num_frames() ||
35 buffer_ref->num_channels() != config.num_channels()) {
36 buffer_ref.reset(new ChannelBuffer<float>(config.num_frames(),
37 config.num_channels()));
49 const Config& config,
53 explicit DebugDumpGenerator(const Config& config);
85 const StreamConfig& config,
384 Config config; local
472 Config config; local
481 Config config; local
498 Config config; local
510 Config config; local
522 Config config; local
536 Config config; local
551 Config config; local
574 Config config; local
588 Config config; local
602 Config config; local
    [all...]
  /bionic/libc/malloc_debug/
BacktraceData.cpp 39 #include "Config.h"
44 BacktraceData::BacktraceData(const Config& config, size_t* offset) {
45 size_t hdr_len = sizeof(BacktraceHeader) + sizeof(uintptr_t) * config.backtrace_frames;
60 bool BacktraceData::Initialize(const Config& config) {
61 enabled_ = config.backtrace_enabled;
62 if (config.backtrace_enable_on_signal) {
71 if (sigaction(config.backtrace_signal, &enable_act, nullptr) != 0) {
76 config.backtrace_signal, getpid())
    [all...]

Completed in 275 milliseconds

1 2 3 4 56 7 8 91011>>