Searched refs:config (Results 1 - 25 of 2963) sorted by relevance

1234567891011>>

/external/bison/src/
H A Dscan-code-c.c1 #include <config.h>
H A Dscan-gram-c.c1 #include <config.h>
H A Dscan-skel-c.c1 #include <config.h>
/external/compiler-rt/test/esan/
H A Dlit.site.cfg.in4 # 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/
H A Dconfig_enc.c15 #include "../webp/config.h"
24 int WebPConfigInitInternal(WebPConfig* config, argument
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
96 WebPValidateConfig(const WebPConfig* config) argument
144 WebPConfigLosslessPreset(WebPConfig* config, int level) argument
[all...]
/external/swiftshader/third_party/LLVM/test/
H A Dlit.site.cfg.in3 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
[all...]
/external/toolchain-utils/crosperf/
H A Dconfig_unittest.py4 """Unit tests for config.py"""
8 import config namespace
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
[all...]
H A Dconfig.py5 config = {} variable
9 return config.get(key)
13 config[key] = value
/external/curl/src/
H A Dtool_cfgable.c29 void config_init(struct OperationConfig* config) argument
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
46 free_config_fields(struct OperationConfig *config) argument
148 config_free(struct OperationConfig *config) argument
[all...]
/external/icu/icu4c/source/config/
H A Dtest-icu-config.sh8 # 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
[all...]
/external/swiftshader/third_party/LLVM/test/Unit/
H A Dlit.site.cfg.in3 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
[all...]
/external/bison/lib/
H A Dbinary-io.c1 #include <config.h>
H A Dbitrotate.c1 #include <config.h>
H A Dmath.c1 #include <config.h>
H A Dmbuiter.c1 #include <config.h>
H A Dsig-handler.c1 #include <config.h>
H A Dstdio.c1 #include <config.h>
H A Dunistd.c1 #include <config.h>
H A Dwctype-h.c2 #include <config.h>
H A Dxsize.c1 #include <config.h>
/external/deqp/scripts/build/
H A Dbuild.py28 from config import *
30 def initBuildDir (config, generator):
34 cfgArgs += config.getArgs()
37 cfgArgs += generator.getGenerateArgs(config.getBuildType())
39 if not os.path.exists(config.buildDir):
40 os.makedirs(config.buildDir)
42 pushWorkingDir(config.getBuildDir())
45 execute(["cmake", config.getSrcPath()] + cfgArgs)
49 def build (config, generator, targets = None):
50 if os.path.exists(config
[all...]
/external/f2fs-tools/mkfs/
H A Df2fs_format_utils.h13 extern struct f2fs_configuration config;
/external/valgrind/none/tests/
H A Dtls2.c1 #include <config.h>
H A Dtls2_so.c1 #include <config.h>
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Daudio_encoder_isac_unittest.cc20 void TestBadConfig(const AudioEncoderIsac::Config& config) { argument
21 EXPECT_FALSE(config.IsOk());
24 void TestGoodConfig(const AudioEncoderIsac::Config& config) { argument
25 EXPECT_TRUE(config.IsOk());
26 AudioEncoderIsac aei(config);
37 AudioEncoderIsac::Config config; local
40 EXPECT_GT(config.bit_rate, 1);
41 S(TestGoodConfig(config));
44 config.bit_rate = 0;
45 S(TestGoodConfig(config));
[all...]

Completed in 455 milliseconds

1234567891011>>