Searched refs:template_file (Results 1 – 6 of 6) sorted by relevance
/external/testng/ |
D | generate-version-file | 28 template_file="$1" 33 if ! [[ -f $template_file ]]; then 34 echo "Error: Template file $template_file does not exist." >&2 51 if ! grep --silent "$template_variable" "$template_file"; then 52 …echo "Error: Template file $template_file has no instances of template variable $template_variable… 59 sed -e "s:$template_variable:$stored_value:g" "$template_file"
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/ |
D | gen_archrast.py | 172 template_file = os.sep.join([curdir, 'templates', 'ar_event_h.template']) 175 write_template_to_file(template_file, output_fullpath, 182 template_file = os.sep.join([curdir, 'templates', 'ar_event_cpp.template']) 185 write_template_to_file(template_file, output_fullpath, 192 template_file = os.sep.join([curdir, 'templates', 'ar_eventhandler_h.template']) 195 write_template_to_file(template_file, output_fullpath, 203 template_file = os.sep.join([curdir, 'templates', 'ar_eventhandlerfile_h.template']) 206 write_template_to_file(template_file, output_fullpath,
|
/external/vixl/tools/ |
D | generate_tests.py | 692 def DoNotEditComment(template_file): argument 700 """.format(template_file) 703 template_file = template_files[generator.test_type] 705 with open(template_file, "r") as f: 713 'do_not_edit_comment': DoNotEditComment(template_file),
|
/external/toolchain-utils/dejagnu/ |
D | gdb_dejagnu.py | 133 with open('%s/boards/gdb.exp.in' % self._base_dir, 'r') as template_file: 134 content = template_file.read() 154 as template_file: 155 content = template_file.read()
|
D | run_dejagnu.py | 212 with open('%s/chromeos.exp.in' % self._base_dir, 'r') as template_file: 213 content = template_file.read()
|
/external/selinux/libsemanage/src/ |
D | genhomedircon.c | 507 FILE *template_file = NULL; in make_template() local 510 template_file = fopen(s->homedir_template_path, "r"); in make_template() 511 if (!template_file) in make_template() 513 template_data = semanage_slurp_file_filter(template_file, pred); in make_template() 514 fclose(template_file); in make_template()
|