Home
last modified time | relevance | path

Searched refs:config (Results 1 – 25 of 9195) sorted by relevance

12345678910>>...368

/external/webp/src/enc/
Dconfig_enc.c24 int WebPConfigInitInternal(WebPConfig* config, in WebPConfigInitInternal() argument
29 if (config == NULL) return 0; in WebPConfigInitInternal()
31 config->quality = quality; in WebPConfigInitInternal()
32 config->target_size = 0; in WebPConfigInitInternal()
33 config->target_PSNR = 0.; in WebPConfigInitInternal()
34 config->method = 4; in WebPConfigInitInternal()
35 config->sns_strength = 50; in WebPConfigInitInternal()
36 config->filter_strength = 60; // mid-filtering in WebPConfigInitInternal()
37 config->filter_sharpness = 0; in WebPConfigInitInternal()
38 config->filter_type = 1; // default: strong (so U/V is filtered too) in WebPConfigInitInternal()
[all …]
/external/grpc-grpc/test/core/end2end/
Dend2end_tests.cc33 extern void authority_not_supported(grpc_end2end_test_config config);
35 extern void bad_hostname(grpc_end2end_test_config config);
37 extern void bad_ping(grpc_end2end_test_config config);
39 extern void binary_metadata(grpc_end2end_test_config config);
41 extern void call_creds(grpc_end2end_test_config config);
43 extern void call_host_override(grpc_end2end_test_config config);
45 extern void cancel_after_accept(grpc_end2end_test_config config);
47 extern void cancel_after_client_done(grpc_end2end_test_config config);
49 extern void cancel_after_invoke(grpc_end2end_test_config config);
51 extern void cancel_after_round_trip(grpc_end2end_test_config config);
[all …]
Dend2end_nosec_tests.cc33 extern void authority_not_supported(grpc_end2end_test_config config);
35 extern void bad_hostname(grpc_end2end_test_config config);
37 extern void bad_ping(grpc_end2end_test_config config);
39 extern void binary_metadata(grpc_end2end_test_config config);
41 extern void call_host_override(grpc_end2end_test_config config);
43 extern void cancel_after_accept(grpc_end2end_test_config config);
45 extern void cancel_after_client_done(grpc_end2end_test_config config);
47 extern void cancel_after_invoke(grpc_end2end_test_config config);
49 extern void cancel_after_round_trip(grpc_end2end_test_config config);
51 extern void cancel_before_invoke(grpc_end2end_test_config config);
[all …]
/external/llvm-project/compiler-rt/test/
Dlit.common.cfg.py27 config.recursiveExpansionLimit = 10
30 config.test_format = lit.formats.ShTest(execute_external)
32 config.available_features.add('shell')
34 compiler_id = getattr(config, 'compiler_id', None)
37 config.cxx_mode_flags = ["--driver-mode=g++"]
39 config.cxx_mode_flags = []
42 config.debug_info_flags = ["-gline-tables-only"]
47 config.debug_info_flags.append("-gcodeview")
48 config.debug_info_flags.append("-gcolumn-info")
50 config.cxx_mode_flags = ["-x c++"]
[all …]
/external/curl/src/
Dtool_cfgable.c29 void config_init(struct OperationConfig *config) in config_init() argument
31 memset(config, 0, sizeof(struct OperationConfig)); in config_init()
33 config->postfieldsize = -1; in config_init()
34 config->use_httpget = FALSE; in config_init()
35 config->create_dirs = FALSE; in config_init()
36 config->maxredirs = DEFAULT_MAXREDIRS; in config_init()
37 config->proto = CURLPROTO_ALL; in config_init()
38 config->proto_present = FALSE; in config_init()
39 config->proto_redir = CURLPROTO_ALL & /* All except FILE, SCP and SMB */ in config_init()
42 config->proto_redir_present = FALSE; in config_init()
[all …]
Dtool_getparam.c510 struct OperationConfig *config) in getparameter() argument
622 GetStr(&config->dns_ipv4_addr, nextarg); in getparameter()
626 GetStr(&config->dns_ipv6_addr, nextarg); in getparameter()
629 GetStr(&config->random_file, nextarg); in getparameter()
632 GetStr(&config->egd_file, nextarg); in getparameter()
635 GetStr(&config->oauth_bearer, nextarg); in getparameter()
636 config->authtype |= CURLAUTH_BEARER; in getparameter()
639 err = str2udouble(&config->connecttimeout, nextarg, in getparameter()
645 GetStr(&config->doh_url, nextarg); in getparameter()
648 GetStr(&config->cipher_list, nextarg); in getparameter()
[all …]
/external/llvm-project/compiler-rt/test/asan/
Dlit.cfg.py18 def get_required_attr(config, attr_name): argument
19 attr_value = getattr(config, attr_name, None)
27 def push_dynamic_library_lookup_path(config, new_path): argument
36 (new_path, config.environment.get(dynamic_library_lookup_var, '')))
37 config.environment[dynamic_library_lookup_var] = new_ld_library_path
42 (new_path, config.environment.get(dynamic_library_lookup_var, '')))
43 config.environment[dynamic_library_lookup_var] = new_ld_32_library_path
48 (new_path, config.environment.get(dynamic_library_lookup_var, '')))
49 config.environment[dynamic_library_lookup_var] = new_ld_library_path_32
53 (new_path, config.environment.get(dynamic_library_lookup_var, '')))
[all …]
/external/robolectric-shadows/resources/src/test/java/org/robolectric/res/android/
DConfigDescriptionTest.java57 ResTable_config config = new ResTable_config(); in parse_mcc() local
58 ConfigDescription.parse("mcc310", config); in parse_mcc()
59 assertThat(config.mcc).isEqualTo(310); in parse_mcc()
64 ResTable_config config = new ResTable_config(); in parse_mcc_upperCase() local
65 ConfigDescription.parse("MCC310", config); in parse_mcc_upperCase()
66 assertThat(config.mcc).isEqualTo(310); in parse_mcc_upperCase()
71 ResTable_config config = new ResTable_config(); in parse_mcc_mnc_upperCase() local
72 ConfigDescription.parse("mcc310-mnc004", config); in parse_mcc_mnc_upperCase()
73 assertThat(config.mcc).isEqualTo(310); in parse_mcc_mnc_upperCase()
74 assertThat(config.mnc).isEqualTo(4); in parse_mcc_mnc_upperCase()
[all …]
/external/python/cpython3/Python/
Dinitconfig.c570 PyConfig_Clear(PyConfig *config) in PyConfig_Clear() argument
578 CLEAR(config->pycache_prefix); in PyConfig_Clear()
579 CLEAR(config->pythonpath_env); in PyConfig_Clear()
580 CLEAR(config->home); in PyConfig_Clear()
581 CLEAR(config->program_name); in PyConfig_Clear()
583 _PyWideStringList_Clear(&config->argv); in PyConfig_Clear()
584 _PyWideStringList_Clear(&config->warnoptions); in PyConfig_Clear()
585 _PyWideStringList_Clear(&config->xoptions); in PyConfig_Clear()
586 _PyWideStringList_Clear(&config->module_search_paths); in PyConfig_Clear()
587 config->module_search_paths_set = 0; in PyConfig_Clear()
[all …]
Dpreconfig.c17 preconfig_copy(PyPreConfig *config, const PyPreConfig *config2);
131 precmdline_get_preconfig(_PyPreCmdline *cmdline, const PyPreConfig *config) in precmdline_get_preconfig() argument
134 if (config->ATTR != -1) { \ in precmdline_get_preconfig()
135 cmdline->ATTR = config->ATTR; \ in precmdline_get_preconfig()
147 precmdline_set_preconfig(const _PyPreCmdline *cmdline, PyPreConfig *config) in precmdline_set_preconfig() argument
150 config->ATTR = cmdline->ATTR in precmdline_set_preconfig()
161 _PyPreCmdline_SetConfig(const _PyPreCmdline *cmdline, PyConfig *config) in _PyPreCmdline_SetConfig() argument
164 config->ATTR = cmdline->ATTR in _PyPreCmdline_SetConfig()
166 PyStatus status = _PyWideStringList_Extend(&config->xoptions, &cmdline->xoptions); in _PyPreCmdline_SetConfig()
274 _PyPreConfig_InitCompatConfig(PyPreConfig *config) in _PyPreConfig_InitCompatConfig() argument
[all …]
/external/llvm-project/lldb/test/API/
Dlit.site.cfg.py.in3 config.test_exec_root = "@LLDB_BINARY_DIR@"
4 config.llvm_src_root = "@LLVM_SOURCE_DIR@"
5 config.llvm_obj_root = "@LLVM_BINARY_DIR@"
6 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
7 config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
8 config.llvm_shlib_dir = "@SHLIBDIR@"
9 config.llvm_build_mode = "@LLVM_BUILD_MODE@"
10 config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
11 config.lldb_obj_root = "@LLDB_BINARY_DIR@"
12 config.lldb_src_root = "@LLDB_SOURCE_DIR@"
[all …]
/external/llvm-project/llvm/test/
Dlit.cfg.py18 config.name = 'LLVM'
21 config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
25 config.suffixes = ['.ll', '.c', '.test', '.txt', '.s', '.mir', '.yaml']
30 config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
33 config.test_source_root = os.path.dirname(__file__)
36 config.test_exec_root = os.path.join(config.llvm_obj_root, 'test')
39 llvm_config.with_environment('PATH', config.llvm_tools_dir, append_path=True)
47 top_ocaml_lib = os.path.join(config.llvm_lib_dir, 'ocaml')
66 if not 'Address' in config.llvm_use_sanitizer or \
67 not 'Darwin' in config.host_os or \
[all …]
Dlit.site.cfg.py.in5 config.host_triple = "@LLVM_HOST_TRIPLE@"
6 config.target_triple = "@TARGET_TRIPLE@"
7 config.llvm_src_root = path(r"@LLVM_SOURCE_DIR@")
8 config.llvm_obj_root = path(r"@LLVM_BINARY_DIR@")
9 config.llvm_tools_dir = path(r"@LLVM_TOOLS_DIR@")
10 config.llvm_lib_dir = path(r"@LLVM_LIBRARY_DIR@")
11 config.llvm_shlib_dir = path(r"@SHLIBDIR@")
12 config.llvm_shlib_ext = "@SHLIBEXT@"
13 config.llvm_exe_ext = "@EXEEXT@"
14 config.lit_tools_dir = path(r"@LLVM_LIT_TOOLS_DIR@")
[all …]
/external/llvm-project/clang/test/
Dlit.cfg.py19 config.name = 'Clang'
25 config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
28 config.suffixes = ['.c', '.cpp', '.i', '.cppm', '.m', '.mm', '.cu',
34 config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt', 'debuginfo-tests']
37 config.test_source_root = os.path.dirname(__file__)
40 config.test_exec_root = os.path.join(config.clang_obj_root, 'test')
46 config.substitutions.append(
47 ('%src_include_dir', config.clang_src_dir + '/include'))
49 config.substitutions.append(
50 ('%target_triple', config.target_triple))
[all …]
/external/swiftshader/src/Main/
DSwiftConfig.cpp58 if(!config.disableServer) in SwiftConfig()
115 configuration = config; in getConfiguration()
212 if(config.disableServer) in respond()
274 …html += "<option value='0'" + (config.pixelShaderVersion == 0 ? selected : empty) + ">0.0</optio… in page()
275 …html += "<option value='11'" + (config.pixelShaderVersion == 11 ? selected : empty) + ">1.1</optio… in page()
276 …html += "<option value='12'" + (config.pixelShaderVersion == 12 ? selected : empty) + ">1.2</optio… in page()
277 …html += "<option value='13'" + (config.pixelShaderVersion == 13 ? selected : empty) + ">1.3</optio… in page()
278 …html += "<option value='14'" + (config.pixelShaderVersion == 14 ? selected : empty) + ">1.4</optio… in page()
279 …html += "<option value='20'" + (config.pixelShaderVersion == 20 ? selected : empty) + ">2.0</optio… in page()
280 …html += "<option value='21'" + (config.pixelShaderVersion == 21 ? selected : empty) + ">2.x</optio… in page()
[all …]
/external/ImageMagick/config/
DMakefile.am21 config/english.xml \
22 config/francais.xml \
23 config/locale.xml
29 config/configure.xml
35 config/colors.xml \
36 config/delegates.xml \
37 config/log.xml \
38 config/mime.xml \
39 config/policy.xml \
40 config/quantization-table.xml \
[all …]
/external/llvm-project/mlir/test/
Dlit.site.cfg.py.in5 config.host_triple = "@LLVM_HOST_TRIPLE@"
6 config.target_triple = "@TARGET_TRIPLE@"
7 config.llvm_src_root = "@LLVM_SOURCE_DIR@"
8 config.llvm_obj_root = "@LLVM_BINARY_DIR@"
9 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
10 config.llvm_lib_dir = "@LLVM_LIBRARY_DIR@"
11 config.llvm_shlib_dir = "@SHLIBDIR@"
12 config.llvm_shlib_ext = "@SHLIBEXT@"
13 config.llvm_exe_ext = "@EXEEXT@"
14 config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/cfg/
DSerConfigTest.java16 SerializationConfig config = MAPPER.getSerializationConfig(); in testSerConfig() local
17 … assertTrue(config.hasSerializationFeatures(SerializationFeature.FAIL_ON_EMPTY_BEANS.getMask())); in testSerConfig()
18 … assertFalse(config.hasSerializationFeatures(SerializationFeature.CLOSE_CLOSEABLE.getMask())); in testSerConfig()
19 assertEquals(JsonInclude.Value.empty(), config.getDefaultPropertyInclusion()); in testSerConfig()
20 assertEquals(JsonInclude.Value.empty(), config.getDefaultPropertyInclusion(String.class)); in testSerConfig()
21 assertFalse(config.useRootWrapping()); in testSerConfig()
24 assertSame(config, config.without()); in testSerConfig()
25 assertSame(config, config.with()); in testSerConfig()
26 assertSame(config, config.with(MAPPER.getSubtypeResolver())); in testSerConfig()
29 …SerializationConfig newConfig = config.with(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true… in testSerConfig()
[all …]
/external/llvm-project/compiler-rt/test/lsan/
Dlit.common.cfg.py10 def get_required_attr(config, attr_name): argument
11 attr_value = getattr(config, attr_name, None)
20 config.test_source_root = os.path.dirname(__file__)
23 lsan_lit_test_mode = get_required_attr(config, 'lsan_lit_test_mode')
26 config.name = "LeakSanitizer-Standalone"
29 config.name = "LeakSanitizer-AddressSanitizer"
31 config.available_features.add('asan')
32 if config.host_os == 'NetBSD':
33 config.substitutions.insert(0, ('%run', config.netbsd_noaslr_prefix))
36 config.name += config.name_suffix
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_file.c266 static int wpa_config_process_blob(struct wpa_config *config, FILE *f, in wpa_config_process_blob() argument
286 wpa_config_set_blob(config, blob); in wpa_config_process_blob()
299 struct wpa_config *config; in wpa_config_read() local
306 config = cfgp; in wpa_config_read()
308 config = wpa_config_alloc_empty(NULL, NULL); in wpa_config_read()
309 if (config == NULL) { in wpa_config_read()
314 tail = head = config->ssid; in wpa_config_read()
317 cred_tail = cred_head = config->cred; in wpa_config_read()
326 if (config != cfgp) in wpa_config_read()
327 os_free(config); in wpa_config_read()
[all …]
/external/llvm-project/openmp/runtime/test/
Dlit.cfg9 # Tell pylint that we know config and lit_config exist somewhere.
11 config = object()
15 if config.operating_system == 'Windows':
18 elif config.operating_system == 'Darwin':
24 if name in config.environment:
25 config.environment[name] = path + sep + config.environment[name]
27 config.environment[name] = path
30 config.name = 'libomp'
33 config.suffixes = ['.c', '.cpp']
36 config.test_source_root = os.path.dirname(__file__)
[all …]
/external/llvm-project/compiler-rt/test/sanitizer_common/
Dlit.common.cfg.py4 config.test_source_root = os.path.join(os.path.dirname(__file__), "TestCases")
6 config.name = "SanitizerCommon-" + config.name_suffix
10 if config.tool_name == "asan":
13 elif config.tool_name == "tsan":
16 elif config.tool_name == "msan":
20 elif config.tool_name == "lsan":
23 elif config.tool_name == "ubsan":
27 lit_config.fatal("Unknown tool for sanitizer_common tests: %r" % config.tool_name)
29 config.available_features.add(config.tool_name)
31 if config.host_os == 'Linux' and config.tool_name == "lsan" and config.target_arch == 'i386':
[all …]
/external/llvm/test/
Dlit.site.cfg.in5 config.host_triple = "@LLVM_HOST_TRIPLE@"
6 config.target_triple = "@TARGET_TRIPLE@"
7 config.llvm_src_root = "@LLVM_SOURCE_DIR@"
8 config.llvm_obj_root = "@LLVM_BINARY_DIR@"
9 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
10 config.llvm_lib_dir = "@LLVM_LIBRARY_DIR@"
11 config.llvm_shlib_dir = "@SHLIBDIR@"
12 config.llvm_shlib_ext = "@SHLIBEXT@"
13 config.llvm_exe_ext = "@EXEEXT@"
14 config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
[all …]
/external/llvm-project/compiler-rt/test/memprof/
Dlit.cfg.py18 def get_required_attr(config, attr_name): argument
19 attr_value = getattr(config, attr_name, None)
28 config.name = 'MemProfiler' + config.name_suffix
31 default_memprof_opts = list(config.default_sanitizer_opts)
35 config.environment['MEMPROF_OPTIONS'] = default_memprof_opts_str
36 config.substitutions.append(('%env_memprof_opts=',
40 config.test_source_root = os.path.dirname(__file__)
46 target_cflags = [get_required_attr(config, 'target_cflags')]
47 target_cxxflags = config.cxx_mode_flags + target_cflags
52 config.debug_info_flags + target_cflags)
[all …]
/external/libcxx/test/
Dlit.site.cfg.in2 config.cxx_under_test = "@LIBCXX_COMPILER@"
3 config.project_obj_root = "@CMAKE_BINARY_DIR@"
4 config.libcxx_src_root = "@LIBCXX_SOURCE_DIR@"
5 config.libcxx_obj_root = "@LIBCXX_BINARY_DIR@"
6 config.cxx_library_root = "@LIBCXX_LIBRARY_DIR@"
7 config.enable_exceptions = "@LIBCXX_ENABLE_EXCEPTIONS@"
8 config.enable_experimental = "@LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY@"
9 config.enable_filesystem = "@LIBCXX_ENABLE_FILESYSTEM@"
10 config.enable_rtti = "@LIBCXX_ENABLE_RTTI@"
11 config.enable_shared = "@LIBCXX_ENABLE_SHARED@"
[all …]

12345678910>>...368