Searched refs:template_file (Results 1 – 5 of 5) 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/chromium-trace/catapult/dashboard/dashboard/ |
D | chart_handler.py | 22 def RenderHtml(self, template_file, template_values, status=200): argument 28 template_file, template_values, status)
|
D | request_handler.py | 29 def RenderHtml(self, template_file, template_values, status=200): argument 39 template = JINJA2_ENVIRONMENT.get_template(template_file)
|
/external/vixl/third_party/android/ |
D | generate_android_mk.py | 62 with open(android_mk_template, 'r') as template_file: 63 template = template_file.read()
|
/external/selinux/libsemanage/src/ |
D | genhomedircon.c | 479 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()
|