/external/bison/src/ |
scan-code-c.c | 1 #include <config.h>
|
scan-gram-c.c | 1 #include <config.h>
|
scan-skel-c.c | 1 #include <config.h>
|
/external/compiler-rt/test/esan/ |
lit.site.cfg.in | 4 # Tool-specific config options. 5 config.name_suffix = "@ESAN_TEST_CONFIG_SUFFIX@" 6 config.esan_lit_source_dir = "@ESAN_LIT_SOURCE_DIR@" 7 config.target_cflags = "@ESAN_TEST_TARGET_CFLAGS@" 8 config.target_arch = "@ESAN_TEST_TARGET_ARCH@" 10 # Load common config for all compiler-rt lit tests. 11 lit_config.load_config(config, "@COMPILER_RT_BINARY_DIR@/test/lit.common.configured") 13 # Load tool-specific config that would do the real work. 14 lit_config.load_config(config, "@ESAN_LIT_SOURCE_DIR@/lit.cfg")
|
/external/webp/src/enc/ |
config_enc.c | 15 #include "../webp/config.h" 24 int WebPConfigInitInternal(WebPConfig* config, 29 if (config == NULL) return 0; 31 config->quality = quality; 32 config->target_size = 0; 33 config->target_PSNR = 0.; 34 config->method = 4; 35 config->sns_strength = 50; 36 config->filter_strength = 60; // mid-filtering 37 config->filter_sharpness = 0 [all...] |
/external/swiftshader/third_party/LLVM/test/ |
lit.site.cfg.in | 3 config.llvm_src_root = "@LLVM_SOURCE_DIR@" 4 config.llvm_obj_root = "@LLVM_BINARY_DIR@" 5 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" 6 config.llvmgcc_dir = "@LLVMGCCDIR@" 7 config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@" 8 config.python_executable = "@PYTHON_EXECUTABLE@" 9 config.enable_shared = @ENABLE_SHARED@ 10 config.enable_assertions = @ENABLE_ASSERTIONS@ 15 config.llvm_tools_dir = config.llvm_tools_dir % lit.param [all...] |
/external/toolchain-utils/crosperf/ |
config_unittest.py | 4 """Unit tests for config.py""" 8 import config 14 """Class for the config unit tests.""" 17 # Verify that config exists, that it's a dictionary, and that it's 19 self.assertTrue(type(config.config) is dict) 20 self.assertEqual(len(config.config), 0) 24 self.assertIsNone(config.GetConfig('rabbit')) 25 self.assertIsNone(config.GetConfig('key1') [all...] |
config.py | 5 config = {} variable 9 return config.get(key) 13 config[key] = value
|
/external/curl/src/ |
tool_cfgable.c | 29 void config_init(struct OperationConfig* config) 31 memset(config, 0, sizeof(struct OperationConfig)); 33 config->postfieldsize = -1; 34 config->use_httpget = FALSE; 35 config->create_dirs = FALSE; 36 config->maxredirs = DEFAULT_MAXREDIRS; 37 config->proto = CURLPROTO_ALL; /* FIXME: better to read from library */ 38 config->proto_present = FALSE; 39 config->proto_redir = CURLPROTO_ALL & /* All except FILE, SCP and SMB */ 42 config->proto_redir_present = FALSE [all...] |
/system/bt/build/ |
BUILD.gn | 17 config("default_include_dirs") { 23 config("linux") { 68 config("pic") { 72 config("gc") {
|
/toolchain/binutils/binutils-2.25/binutils/ |
syslex_wrap.c | 18 /* Wrapper source to ensure that config.h is the first header file seen by 22 #include <config.h>
|
/external/icu/icu4c/source/config/ |
test-icu-config.sh | 8 # Just a script to test out icu-config. 12 which icu-config 13 icu-config 14 icu-config -? 15 icu-config --BAD ARGUMENT 16 icu-config --bindir 17 icu-config --cflags 18 icu-config --cxx 19 icu-config --cc 20 icu-config --cxxflags [all...] |
/external/swiftshader/third_party/LLVM/test/Unit/ |
lit.site.cfg.in | 3 config.llvm_src_root = "@LLVM_SOURCE_DIR@" 4 config.llvm_obj_root = "@LLVM_BINARY_DIR@" 5 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" 6 config.llvmgcc_dir = "@LLVMGCCDIR@" 7 config.llvm_build_mode = "@LLVM_BUILD_MODE@" 8 config.enable_shared = @ENABLE_SHARED@ 9 config.shlibdir = "@SHLIBDIR@" 10 config.shlibpath_var = "@SHLIBPATH_VAR@" 15 config.llvm_tools_dir = config.llvm_tools_dir % lit.param [all...] |
/packages/services/NetworkRecommendation/src/com/android/networkrecommendation/util/ |
WifiConfigurationUtil.java | 39 * Helper method to check if the provided |config| corresponds to a PSK network or not. 41 public static boolean isConfigForPskNetwork(WifiConfiguration config) { 42 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK); 46 * Helper method to check if the provided |config| corresponds to a EAP network or not. 48 public static boolean isConfigForEapNetwork(WifiConfiguration config) { 49 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP) 50 || config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X)); 54 * Helper method to check if the provided |config| corresponds to a WEP network or not. 56 public static boolean isConfigForWepNetwork(WifiConfiguration config) { 57 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE [all...] |
/frameworks/base/native/android/ |
configuration.cpp | 27 AConfiguration* config = new AConfiguration; local 28 memset(config, 0, sizeof(AConfiguration)); 29 return config; 32 void AConfiguration_delete(AConfiguration* config) { 33 delete config; 44 int32_t AConfiguration_getMcc(AConfiguration* config) { 45 return config->mcc; 48 int32_t AConfiguration_getMnc(AConfiguration* config) { 49 return config->mnc; 52 void AConfiguration_getLanguage(AConfiguration* config, char* outLanguage) [all...] |
/external/bison/lib/ |
binary-io.c | 1 #include <config.h>
|
bitrotate.c | 1 #include <config.h>
|
math.c | 1 #include <config.h>
|
mbuiter.c | 1 #include <config.h>
|
sig-handler.c | 1 #include <config.h>
|
stdio.c | 1 #include <config.h>
|
unistd.c | 1 #include <config.h>
|
wctype-h.c | 2 #include <config.h>
|
xsize.c | 1 #include <config.h>
|
/external/f2fs-tools/mkfs/ |
f2fs_format_utils.h | 13 extern struct f2fs_configuration config;
|