Home
last modified time | relevance | path

Searched refs:template_file (Results 1 – 6 of 6) sorted by relevance

/external/testng/
Dgenerate-version-file28 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/
Dgen_archrast.py172 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/
Dgenerate_tests.py692 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/
Dgdb_dejagnu.py133 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()
Drun_dejagnu.py212 with open('%s/chromeos.exp.in' % self._base_dir, 'r') as template_file:
213 content = template_file.read()
/external/selinux/libsemanage/src/
Dgenhomedircon.c507 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()