Home
last modified time | relevance | path

Searched refs:template_file (Results 1 – 5 of 5) 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/chromium-trace/catapult/dashboard/dashboard/
Dchart_handler.py22 def RenderHtml(self, template_file, template_values, status=200): argument
28 template_file, template_values, status)
Drequest_handler.py29 def RenderHtml(self, template_file, template_values, status=200): argument
39 template = JINJA2_ENVIRONMENT.get_template(template_file)
/external/vixl/third_party/android/
Dgenerate_android_mk.py62 with open(android_mk_template, 'r') as template_file:
63 template = template_file.read()
/external/selinux/libsemanage/src/
Dgenhomedircon.c479 FILE *template_file = NULL; in make_template() local
482 template_file = fopen(s->homedir_template_path, "r"); in make_template()
483 if (!template_file) in make_template()
485 template_data = semanage_slurp_file_filter(template_file, pred); in make_template()
486 fclose(template_file); in make_template()