/external/vulkan-validation-layers/layers/ |
D | CMakeLists.txt | 30 foreach (config_file ${LAYER_JSON_FILES}) 31 … FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/windows/${config_file}.json src_json) 32 … FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIGURATION>/${config_file}.json dst_json) 33 add_custom_target(${config_file}-json ALL 37 add_dependencies(${config_file}-json ${config_file}) 38 endforeach(config_file) 40 foreach (config_file ${LAYER_JSON_FILES}) 41 … FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/windows/${config_file}.json src_json) 42 FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_BINARY_DIR}/${config_file}.json dst_json) 43 add_custom_target(${config_file}-json ALL [all …]
|
/external/vulkan-validation-layers/tests/layers/ |
D | CMakeLists.txt | 13 foreach (config_file ${LAYER_JSON_FILES}) 14 FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/windows/${config_file}.json src_json) 16 … FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIGURATION>/${config_file}.json dst_json) 18 FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_BINARY_DIR}/${config_file}.json dst_json) 20 add_custom_target(${config_file}-json ALL 24 add_dependencies(${config_file}-json ${config_file}) 25 endforeach(config_file) 30 foreach (config_file ${LAYER_JSON_FILES}) 31 add_custom_target(${config_file}-json ALL 32 COMMAND ln -sf ${CMAKE_CURRENT_SOURCE_DIR}/linux/${config_file}.json [all …]
|
/external/autotest/client/site_tests/platform_CrosDisksFilesystem/ |
D | control | 22 config_file='exfat_tests', tag='exfat') 24 config_file='ext2_tests', tag='ext2') 26 config_file='ext3_tests', tag='ext3') 28 config_file='ext4_tests', tag='ext4') 30 config_file='ntfs_tests', tag='ntfs') 32 config_file='vfat_tests', tag='vfat')
|
/external/autotest/server/site_tests/android_ACTS/ |
D | control | 13 This test runs ACTS against a inputed config_file, test_bed, test_case. 17 config_file = args_dict.get('config_file') 24 config_file=config_file, testbed_name=test_bed,
|
D | control.SampleTest | 18 config_file = args_dict.get('config_file') 24 config_file='sample_config.txt',
|
/external/libvpx/libvpx/build/make/ |
D | iosbuild.sh | 101 local config_file="${HEADER_DIR}/vpx_config.h" 123 printf "%s" "${file_header}" > "${config_file}" 126 printf " ${preproc_symbol}\n" >> "${config_file}" 127 printf "#define VPX_FRAMEWORK_TARGET \"${target}\"\n" >> "${config_file}" 128 printf "#include \"VPX/vpx/${target}/vpx_config.h\"\n" >> "${config_file}" 129 printf "#elif defined" >> "${config_file}" 135 sed -i '' -e '$d' "${config_file}" 137 printf "#endif\n\n" >> "${config_file}" 138 printf "#endif // ${include_guard}" >> "${config_file}"
|
/external/autotest/client/common_lib/ |
D | global_config.py | 84 config_file = DEFAULT_CONFIG_FILE variable in global_config_class 119 def set_config_files(self, config_file=DEFAULT_CONFIG_FILE, argument 122 self.config_file = config_file 296 if self.config_file and os.path.exists(self.config_file): 297 self.config.read(self.config_file) 299 raise ConfigError('%s not found' % (self.config_file))
|
/external/vboot_reference/scripts/image_signing/ |
D | make_dev_ssd.sh | 76 local config_file 79 config_file="$mount_point/efi/boot/grub.cfg" 80 [ ! -f "$config_file" ] || 81 sudo sed -i 's/^ *set default=2 *$/set default=0/g' "$config_file" 82 config_file="$mount_point/syslinux/default.cfg" 83 [ ! -f "$config_file" ] || 84 sudo sed -i 's/-vusb/-usb/g; s/-vhd/-hd/g' "$config_file"
|
/external/google-breakpad/src/testing/gtest/xcode/Scripts/ |
D | versiongenerate.py | 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable 66 opening_string = config_file.read(buffer_size) 67 config_file.close()
|
/external/v8/testing/gtest/xcode/Scripts/ |
D | versiongenerate.py | 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable 66 opening_string = config_file.read(buffer_size) 67 config_file.close()
|
/external/googletest/googletest/xcode/Scripts/ |
D | versiongenerate.py | 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable 66 opening_string = config_file.read(buffer_size) 67 config_file.close()
|
/external/protobuf/gtest/xcode/Scripts/ |
D | versiongenerate.py | 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable 66 opening_string = config_file.read(buffer_size) 67 config_file.close()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/Scripts/ |
D | versiongenerate.py | 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable 66 opening_string = config_file.read(buffer_size) 67 config_file.close()
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | exceptions.py | 12 def __init__(self, config_type, config_file): argument 15 'due to no specified config type' % config_file) 18 'by the dependency manager.' % (config_file, config_type))
|
/external/autotest/client/cros/ |
D | network_chroot.py | 237 for config_file in self._copied_config_files: 238 src_path = os.path.join('/', config_file) 239 dst_path = self.chroot_path(config_file) 265 for config_file, template in self._config_file_templates.iteritems(): 266 with open(self.chroot_path(config_file), 'w') as f:
|
D | hostapd_server.py | 117 config_file = '%s/%s' % (self._config_directory, filename) 118 with open(config_file, 'w') as f: 125 config_file = self.write_config() 127 [self.HOSTAPD_EXECUTABLE, '-dd', config_file])
|
/external/vboot_reference/futility/ |
D | cmd_vbutil_kernel.c | 228 char *config_file = NULL; in do_vbutil_kernel() local 348 config_file = optarg; in do_vbutil_kernel() 406 if (!config_file) in do_vbutil_kernel() 409 Debug("Reading %s\n", config_file); in do_vbutil_kernel() 411 ReadConfigFile(config_file, &t_config_size); in do_vbutil_kernel() 498 if (config_file) { in do_vbutil_kernel() 499 Debug("Reading %s\n", config_file); in do_vbutil_kernel() 501 ReadConfigFile(config_file, &t_config_size); in do_vbutil_kernel()
|
/external/autotest/client/common_lib/cros/ |
D | avahi_utils.py | 83 def avahi_start(config_file=None, host=None): argument 96 if config_file is not None: 97 env = ' AVAHI_DAEMON_CONF="%s"' % config_file 130 avahi_start(config_file=conf, host=host)
|
/external/autotest/client/site_tests/desktopui_SonicExtension/ |
D | config_json_iterator.py | 91 with open(config_path, 'r') as config_file: 93 return json.load(config_file) 96 'invalid JSON file %s' % config_file)
|
/external/autotest/frontend/afe/ |
D | moblab_rpc_interface.py | 83 def _write_config_file(config_file, config_values, overwrite=False): argument 90 if not config_file: 92 if not overwrite and os.path.exists(config_file): 96 with open(config_file, 'w') as config_file: 97 config_values.write(config_file) 110 def _read_raw_config(config_file): argument 118 shadow_config.read(config_file) 187 with open(_CONFIG.shadow_file, 'w') as config_file:
|
/external/vixl/tools/test_generator/ |
D | parser.py | 426 (GetTestNameFromFileName(config_file), GetISAFromFileName(config_file), 427 LoadJSON(config_file)) 428 for config_file in config_files
|
/external/syslinux/core/fs/pxe/ |
D | pxe.c | 435 char *config_file; in pxe_open_config() local 449 config_file = stpcpy(ConfigName, cfgprefix); in pxe_open_config() 453 strcpy(config_file, sysappend_strings[SYSAPPEND_SYSUUID]+8); in pxe_open_config() 459 strcpy(config_file, sysappend_strings[SYSAPPEND_BOOTIF]+7); in pxe_open_config() 464 sprintf(config_file, "%08X", ntohl(IPInfo.myip)); in pxe_open_config() 465 last = &config_file[8]; in pxe_open_config() 475 strcpy(config_file, default_str); in pxe_open_config()
|
/external/jsoncpp/ |
D | doxybuild.py | 49 def run_doxygen(doxygen_path, config_file, working_dir, is_silent): argument 50 config_file = os.path.abspath( config_file ) 55 cmd = [doxygen_path, config_file]
|
/external/autotest/server/hosts/ |
D | servo_repair.py | 44 def _get_config_val(host, config_file, attr): argument 56 '. $CONFIG && echo $%s' % (config_file, attr)) 61 def _validate_attr(host, val, expected_val, attr, config_file): argument 81 'is not set' % (attr, config_file))
|
/external/autotest/site_utils/lxc/ |
D | config.py | 206 def __init__(self, container, config_file=None): argument 217 if config_file is None: 220 config_file = ( 226 with open(config_file) as f:
|