OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:template_file
(Results
1 - 5
of
5
) 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
"
/external/chromium-trace/catapult/dashboard/dashboard/
chart_handler.py
22
def RenderHtml(self,
template_file
, template_values, status=200):
28
template_file
, template_values, status)
request_handler.py
29
def RenderHtml(self,
template_file
, template_values, status=200):
33
template_file
: string. File name under templates directory.
39
template = JINJA2_ENVIRONMENT.get_template(
template_file
)
/external/vixl/third_party/android/
generate_android_mk.py
62
with open(android_mk_template, 'r') as
template_file
:
63
template =
template_file
.read()
/external/selinux/libsemanage/src/
genhomedircon.c
479
FILE *
template_file
= NULL;
local
482
template_file
= fopen(s->homedir_template_path, "r");
483
if (!
template_file
)
485
template_data = semanage_slurp_file_filter(
template_file
, pred);
486
fclose(
template_file
);
Completed in 540 milliseconds