HomeSort by relevance Sort by last modified time
    Searched refs:template_file (Results 1 - 7 of 7) sorted by null

  /external/testng/
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." >&2
59 sed -e "s:$template_variable:$stored_value:g" "$template_file"
  /test/vts-testcase/fuzz/script/config/
config_gen.py 79 with open(mk_template_path) as template_file:
80 mk_template = str(template_file.read())
81 with open(xml_template_path) as template_file:
82 xml_template = str(template_file.read())
  /test/vts-testcase/fuzz/script/build/
func_fuzzer_build_rule_gen.py 136 with open(template_path) as template_file:
137 build_template = str(template_file.read())
  /external/toolchain-utils/dejagnu/
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()
run_dejagnu.py 212 with open('%s/chromeos.exp.in' % self._base_dir, 'r') as template_file:
213 content = template_file.read()
  /test/vts-testcase/hal/script/build/
build_rule_gen.py 116 with open(template_path) as template_file:
117 build_template = str(template_file.read())
  /external/selinux/libsemanage/src/
genhomedircon.c 507 FILE *template_file = NULL; local
510 template_file = fopen(s->homedir_template_path, "r");
511 if (!template_file)
513 template_data = semanage_slurp_file_filter(template_file, pred);
514 fclose(template_file);
    [all...]

Completed in 102 milliseconds