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

1 2 3 4 56 7 8 91011>>

  /external/bison/lib/
iswblank.c 17 #include <config.h>
printf-frexpl.c 17 #include <config.h>
  /external/curl/src/
tool_operate.h 26 CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]);
  /external/elfutils/libasm/
disasm_end.c 31 # include <config.h>
  /external/elfutils/libdwfl/
libdwfl_crc32.c 29 # include <config.h>
  /external/elfutils/libebl/
eblelfclass.c 31 # include <config.h>
eblelfdata.c 31 # include <config.h>
eblelfmachine.c 31 # include <config.h>
eblsysvhashentrysize.c 31 # include <config.h>
  /external/elfutils/libelf/
elf_fill.c 31 # include <config.h>
libelf_crc32.c 29 # include <config.h>
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillType.java 11 static final Bitmap.Config DEFAULT_CONFIG = Bitmap.Config.RGB_565;
14 private final Bitmap.Config config; field in class:PreFillType
24 * @param config The {@link android.graphics.Bitmap.Config} of the {@link android.graphics.Bitmap Bitmaps} to
29 PreFillType(int width, int height, Bitmap.Config config, int weight) {
30 if (config == null) {
31 throw new NullPointerException("Config must not be null")
106 private Bitmap.Config config; field in class:PreFillType.Builder
    [all...]
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
configcheck.sh 2 # Usage: configcheck.sh .config .config-template
22 T=/tmp/abat-chk-config.sh.$$
26 cat $1 > $T/.config
31 print "if grep -q \"" $0 "\" < '"$T/.config"'";
36 print "\tif grep -q \"" $2 "\" < '"$T/.config"'";
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreatePixmapSurface.java 1 // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
6 EGLConfig config,
  /packages/apps/Launcher3/src_config/com/android/launcher3/config/
ProviderConfig.java 17 package com.android.launcher3.config;
  /external/syslinux/com32/hdt/
hdt-dump.h 38 #define APPEND_ARRAY ZZJSON *temp_array; temp_array = zzjson_array_append(config, *item, zzjson_create_object(config,
39 #define APPEND_OBJECT_ARRAY(value) ZZJSON *temp_ar; temp_ar = zzjson_array_append(config, *item, value); *item=temp_ar;
40 #define CREATE_ARRAY *item = zzjson_create_array(config, zzjson_create_object(config,
41 #define add_ai(name,value) name,zzjson_create_number_i(config,value),
43 #define add_as(name,value) name,zzjson_create_string(config,value),
49 #define CREATE_NEW_OBJECT *item = zzjson_create_object(config, NULL);
50 #define FLUSH_OBJECT flush(config, item);
53 #define add_i(name,value) *item = zzjson_object_append(config, *item, name, zzjson_create_number_i(config, value)
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
AudioRecordingLocal.cpp 45 struct pcm_config config; local
47 memset(&config, 0, sizeof(config));
48 config.channels = 2;
49 config.rate = samplingRate;
50 config.period_size = 1024;
51 config.period_count = 32;
52 config.format = PCM_FORMAT_S16_LE;
53 config.start_threshold = 0;
54 config.stop_threshold = 0
    [all...]
  /external/webrtc/webrtc/test/
common_unittest.cc 35 TEST(Config, ReturnsDefaultInstanceIfNotConfigured) {
36 Config config; local
37 const MyExperiment& my_exp = config.Get<MyExperiment>();
42 TEST(Config, ReturnOptionWhenSet) {
43 Config config; local
44 config.Set<MyExperiment>(new MyExperiment(5, 1));
45 const MyExperiment& my_exp = config.Get<MyExperiment>();
50 TEST(Config, SetNullSetsTheOptionBackToDefault)
51 Config config; local
78 Config config; local
    [all...]
  /frameworks/base/core/java/android/security/net/config/
ConfigNetworkSecurityPolicy.java 17 package android.security.net.config;
27 public ConfigNetworkSecurityPolicy(ApplicationConfig config) {
28 mConfig = config;
  /frameworks/base/tools/aapt2/filter/
ConfigFilter.h 37 virtual bool Match(const ConfigDescription& config) const = 0;
41 * Implements config axis matching. An axis is one component of a configuration,
53 void AddConfig(ConfigDescription config);
55 bool Match(const ConfigDescription& config) const override;
  /frameworks/support/compat/java/android/support/v4/view/
ViewConfigurationCompat.java 57 public static int getScaledPagingTouchSlop(ViewConfiguration config) {
58 return config.getScaledPagingTouchSlop();
68 public static boolean hasPermanentMenuKey(ViewConfiguration config) {
69 return config.hasPermanentMenuKey();
73 * @param config Used to get the scaling factor directly from the {@link ViewConfiguration}.
80 public static float getScaledHorizontalScrollFactor(@NonNull ViewConfiguration config,
83 return config.getScaledHorizontalScrollFactor();
85 return getLegacyScrollFactor(config, context);
90 * @param config Used to get the scaling factor directly from the {@link ViewConfiguration}.
97 public static float getScaledVerticalScrollFactor(@NonNull ViewConfiguration config,
    [all...]
  /external/autotest/client/site_tests/kernel_ConfigVerify/
kernel_ConfigVerify.py 11 """Examine a kernel build CONFIG list to make sure various things are
55 'CHARLIE_THE_UNICORN', # Config not in real kernel config var list.
147 # Load the list of kernel config variables.
148 config = kernel_config.KernelConfig()
149 config.initialize()
176 map(config.has_builtin, self.IS_BUILTIN)
177 map(config.has_module, self.IS_MODULE)
178 map(config.is_enabled, self.IS_ENABLED)
179 map(config.is_missing, self.IS_MISSING
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/tools/
video_quality_measurement.cc 146 int HandleCommandLineFlags(webrtc::test::TestConfig* config) {
152 config->name = FLAGS_test_name;
153 config->description = FLAGS_test_description;
164 config->input_filename = FLAGS_input_filename;
174 config->output_dir = FLAGS_output_dir;
192 config->output_filename = FLAGS_output_filename;
194 config->output_filename = FLAGS_output_dir + "/" + FLAGS_output_filename;
196 test_file = fopen(config->output_filename.c_str(), "wb");
199 config->output_filename.c_str());
205 config->use_single_core = FLAGS_use_single_core
478 webrtc::test::TestConfig config; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
Makefile.am 21 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
40 TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
42 TARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h
43 OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
45 OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
46 TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
47 ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
53 IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
124 # CPU files in config.
127 config/tc-aarch64.c
    [all...]
  /frameworks/opt/net/wifi/libwifi_system/tests/
hostapd_manager_unittest.cpp 46 // If you generate your config file with both the test ssid
47 // and the test passphrase, you'll get this line in the config.
99 string config = GetConfigForEncryptionType( local
101 EXPECT_FALSE(config.empty());
102 EXPECT_EQ(kExpectedOpenConfig, config);
106 string config = GetConfigForEncryptionType( local
108 EXPECT_FALSE(config.empty());
109 EXPECT_EQ(kExpectedWpaConfig, config);
113 string config = GetConfigForEncryptionType( local
115 EXPECT_FALSE(config.empty())
120 string config = HostapdManager().CreateHostapdConfig( local
132 string config = HostapdManager().CreateHostapdConfig( local
    [all...]

Completed in 935 milliseconds

1 2 3 4 56 7 8 91011>>