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

1 2 3 4 5 6 7 8 91011>>

  /build/soong/cc/config/
tidy_test.go 15 package config package
  /frameworks/base/media/java/android/media/
AudioDevicePortConfig.java 34 AudioDevicePortConfig(AudioDevicePortConfig config) {
35 this(config.port(), config.samplingRate(), config.channelMask(), config.format(),
36 config.gain());
  /bionic/libc/malloc_debug/tests/
malloc_debug_config_tests.cpp 24 #include "Config.h"
34 std::unique_ptr<Config> config; member in class:MallocDebugConfigTest
37 config.reset(new Config);
38 return config->Init(options);
220 ASSERT_EQ(BACKTRACE | TRACK_ALLOCS, config->options());
221 ASSERT_EQ(10U, config->backtrace_frames());
229 ASSERT_EQ(BACKTRACE | TRACK_ALLOCS, config->options());
230 ASSERT_EQ(10U, config->backtrace_frames())
    [all...]
  /build/soong/java/config/
kotlin.go 15 package config package
makevars.go 15 package config package
32 if ctx.Config().TargetOpenJDK9() {
49 if ctx.Config().UseD8Desugar() {
62 if ctx.Config().IsEnvTrue("RUN_ERROR_PRONE") {
70 if ctx.Config().UseOpenJDK9() {
  /device/google/cuttlefish_common/host/commands/launch/
screen_region_handler.cc 21 #include "host/libs/config/cuttlefish_config.h"
26 auto config = vsoc::CuttlefishConfig::Get(); local
32 dest->x_res = config->x_res();
33 dest->y_res = config->y_res();
34 dest->dpi = config->dpi();
35 dest->refresh_rate_hz = config->refresh_rate_hz();
wifi_region_handler.cc 23 #include "host/libs/config/cuttlefish_config.h"
29 auto config = vsoc::CuttlefishConfig::Get(); local
35 if (!WifiExchangeView::ParseMACAddress(config->wifi_guest_mac_addr(),
38 << config->wifi_guest_mac_addr();
41 LOG(INFO) << "Setting guest mac to " << config->wifi_guest_mac_addr();
43 if (!WifiExchangeView::ParseMACAddress(config->wifi_host_mac_addr(),
46 << config->wifi_guest_mac_addr();
49 LOG(INFO) << "Setting host mac to " << config->wifi_host_mac_addr();
  /external/autotest/client/cros/cellular/
base_station_8960_test_noautorun.py 16 config = labconfig.Configuration(['--cell', 'mtv', '--technology', 'CDMA']) variable
23 x = config.cell['basestations'][0]
  /external/autotest/frontend/afe/
rpcserver_logging.py 7 config = global_config.global_config variable
8 LOGGING_ENABLED = config.get_config_value('SERVER', 'rpc_logging', type=bool)
14 logserver_enabled = config.get_config_value(
  /external/pdfium/testing/libfuzzer/
pdf_fuzzer_init.cc 12 memset(&config, '\0', sizeof(config));
13 config.version = 2;
14 config.m_pUserFontPaths = nullptr;
15 config.m_pIsolate = nullptr;
16 config.m_v8EmbedderSlot = 0;
17 FPDF_InitLibraryWithConfig(&config);
19 FPDF_LIBRARY_CONFIG config; member in struct:TestCase
  /external/perfetto/src/ftrace_reader/
ftrace_config_unittest.cc 28 FtraceConfig config; local
29 *config.add_ftrace_events() = "aaa";
30 *config.add_ftrace_events() = "bbb";
31 *config.add_ftrace_events() = "aaa";
33 EXPECT_EQ(FtraceEventsAsSet(config), std::set<std::string>({
39 FtraceConfig config = CreateFtraceConfig({ local
43 EXPECT_THAT(config.ftrace_events(), Contains("aaa"));
44 EXPECT_THAT(config.ftrace_events(), Contains("bbb"));
  /external/tensorflow/tensorflow/c/
c_api_experimental.cc 20 #include "tensorflow/core/protobuf/config.pb.h"
23 tensorflow::ConfigProto& config = options->options.config; local
25 config.mutable_graph_options()->mutable_optimizer_options();
  /external/toolchain-utils/crosperf/
config.py 5 config = {} variable
9 return config.get(key)
13 config[key] = value
  /external/webrtc/webrtc/modules/audio_processing/
echo_cancellation_impl_unittest.cc 32 Config config; local
33 config.Set<ExtendedFilter>(new ExtendedFilter(true));
34 ap->SetExtraOptions(config);
41 config.Set<ExtendedFilter>(new ExtendedFilter(false));
42 ap->SetExtraOptions(config);
62 Config config; local
63 config.Set<DelayAgnostic>(new DelayAgnostic(true));
64 ap->SetExtraOptions(config);
    [all...]
audio_processing_impl_unittest.cc 15 #include "webrtc/config.h"
26 explicit MockInitialize(const Config& config) : AudioProcessingImpl(config) {
36 Config config; local
37 MockInitialize mock(config);
  /frameworks/base/tools/aapt/tests/
AaptConfig_test.cpp 27 static ::testing::AssertionResult TestParse(const String8& input, ConfigDescription* config=NULL) {
28 if (AaptConfig::parse(String8(input), config)) {
34 static ::testing::AssertionResult TestParse(const char* input, ConfigDescription* config=NULL) {
35 return TestParse(String8(input), config);
53 ConfigDescription config; local
54 EXPECT_TRUE(TestParse("", &config));
55 EXPECT_EQ(String8(""), config.toString());
57 EXPECT_TRUE(TestParse("fr-land", &config));
58 EXPECT_EQ(String8("fr-land"), config.toString());
61 "xhdpi-keyssoft-qwerty-navexposed-nonav", &config));
67 ConfigDescription config; local
73 ConfigDescription config; local
82 ConfigDescription config; local
88 ConfigDescription config; local
103 ConfigDescription config; local
118 ConfigDescription config; local
    [all...]
  /frameworks/base/tools/aapt2/
ConfigDescription_test.cpp 31 const StringPiece& input, ConfigDescription* config = nullptr) {
32 if (ConfigDescription::Parse(input, config)) {
53 ConfigDescription config; local
54 EXPECT_TRUE(TestParse("", &config));
55 EXPECT_EQ(std::string(""), config.toString().string());
57 EXPECT_TRUE(TestParse("fr-land", &config));
58 EXPECT_EQ(std::string("fr-land"), config.toString().string());
63 &config));
66 config.toString().string());
70 ConfigDescription config; local
76 ConfigDescription config; local
85 ConfigDescription config; local
91 ConfigDescription config; local
106 ConfigDescription config; local
121 ConfigDescription config; local
136 ConfigDescription config; local
    [all...]
  /frameworks/native/libs/gui/
GuiConfig.cpp 23 static const char* config = local
29 configStr.append(config);
  /frameworks/native/libs/ui/
UiConfig.cpp 23 static const char* config = local
25 configStr.append(config);
  /system/extras/perfprofd/
perfprofdmain.cc 22 #include "config.h"
27 extern int perfprofd_main(int argc, char** argv, Config* config);
35 struct PosixSleepConfig : public Config {
41 // Check for existence of semaphore file in config directory
44 PLOG(WARNING) << "unable to open config directory " << config_directory;
58 PosixSleepConfig config; local
59 return perfprofd_main(argc, argv, &config);
  /frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
RemoteHardwareConfig.java 46 public RemoteHardwareConfig(@NotNull HardwareConfig config) {
47 this(config.getScreenWidth(), config.getScreenHeight(), config.getDensity(),
48 config.getXdpi(), config.getYdpi(), config.getScreenSize(), config.getOrientation(),
49 config.getScreenRoundness(), config.hasSoftwareButtons())
    [all...]
  /external/arm-neon-tests/
retarget.c 40 struct __initial_stackheap config; local
42 config.heap_base = (unsigned int)&Image$$HEAP$$ZI$$Base; // placed by scatterfile
43 config.stack_base = SP; // inherit SP from the execution environment
45 return config;
  /external/curl/src/macos/src/
curl_GUSIConfig.cpp 71 /**************** BEGIN GUSI CONFIGURATION **************************** * * GUSI Configuration section generated by GUSI Configurator * last modified: Mon Oct 29 15:41:51 2001 * * This section will be overwritten by the next run of Configurator. */ #define GUSI_SOURCE #include <GUSIConfig.h> #include <sys/cdefs.h> /* Declarations of Socket Factories */ __BEGIN_DECLS void GUSIwithInetSockets(); void GUSIwithLocalSockets(); void GUSIwithMTInetSockets(); void GUSIwithMTTcpSockets(); void GUSIwithMTUdpSockets(); void GUSIwithOTInetSockets(); void GUSIwithOTTcpSockets(); void GUSIwithOTUdpSockets(); void GUSIwithPPCSockets(); void GUSISetupFactories(); __END_DECLS /* Configure Socket Factories */ void GUSISetupFactories() { #ifdef GUSISetupFactories_BeginHook GUSISetupFactories_BeginHook #endif GUSIwithInetSockets(); #ifdef GUSISetupFactories_EndHook GUSISetupFactories_EndHook #endif } /* Declarations of File Devices */ __BEGIN_DECLS void GUSIwithNullSockets(); void GUSISetupDevices(); __END_DECLS /* Configure File Devices */ void GUSISetupDevices() { #ifdef GUSISetupDevices_BeginHook GUSISetupDevices_BeginHook #endif GUSIwithNullSockets(); #ifdef GUSISetupDevices_EndHook GUSISetupDevices_EndHook #endif } #ifndef __cplusplus #error GUSISetupConfig() needs to be written in C++ #endif GUSIConfiguration::FileSuffix sSuffices[] = { "", '????', '????' }; extern "C" void GUSISetupConfig() { GUSIConfiguration * config = GUSIConfiguration::CreateInstance(GUSIConfiguration::kNoResource); config->ConfigureDefaultTypeCreator('TEXT', 'CWIE'); config->ConfigureSuffices( sizeof(sSuffices)/sizeof(GUSIConfiguration::FileSuffix)-1, sSuffices); } /* (…)
1 \/**************** BEGIN GUSI CONFIGURATION **************************** local
  /external/libxml2/macos/src/
libxml2_GUSIConfig.cp 71 /**************** BEGIN GUSI CONFIGURATION **************************** * * GUSI Configuration section generated by GUSI Configurator * last modified: Wed Oct 31 17:07:45 2001 * * This section will be overwritten by the next run of Configurator. */ #define GUSI_SOURCE #include <GUSIConfig.h> #include <sys/cdefs.h> /* Declarations of Socket Factories */ __BEGIN_DECLS void GUSIwithInetSockets(); void GUSIwithLocalSockets(); void GUSIwithMTInetSockets(); void GUSIwithMTTcpSockets(); void GUSIwithMTUdpSockets(); void GUSIwithOTInetSockets(); void GUSIwithOTTcpSockets(); void GUSIwithOTUdpSockets(); void GUSIwithPPCSockets(); void GUSISetupFactories(); __END_DECLS /* Configure Socket Factories */ void GUSISetupFactories() { #ifdef GUSISetupFactories_BeginHook GUSISetupFactories_BeginHook #endif GUSIwithInetSockets(); #ifdef GUSISetupFactories_EndHook GUSISetupFactories_EndHook #endif } /* Declarations of File Devices */ __BEGIN_DECLS void GUSIwithNullSockets(); void GUSISetupDevices(); __END_DECLS /* Configure File Devices */ void GUSISetupDevices() { #ifdef GUSISetupDevices_BeginHook GUSISetupDevices_BeginHook #endif GUSIwithNullSockets(); #ifdef GUSISetupDevices_EndHook GUSISetupDevices_EndHook #endif } #ifndef __cplusplus #error GUSISetupConfig() needs to be written in C++ #endif GUSIConfiguration::FileSuffix sSuffices[] = { "", '????', '????' }; extern "C" void GUSISetupConfig() { GUSIConfiguration * config = GUSIConfiguration::CreateInstance(GUSIConfiguration::kNoResource); config->ConfigureDefaultTypeCreator('TEXT', 'CWIE'); config->ConfigureSuffices( sizeof(sSuffices)/sizeof(GUSIConfiguration::FileSuffix)-1, sSuffices); } /* (…)
1 \/**************** BEGIN GUSI CONFIGURATION **************************** local
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_surface.c 39 union nouveau_bo_config config = {}; local
55 config.nv04.surf_pitch = s->pitch;
58 config.nv04.surf_flags = NV04_BO_32BPP;
60 config.nv04.surf_flags = NV04_BO_16BPP;
63 config.nv04.surf_flags |= NV04_BO_ZETA;
71 &config, &s->bo);

Completed in 759 milliseconds

1 2 3 4 5 6 7 8 91011>>