Home
last modified time | relevance | path

Searched refs:template_name (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/jinja2/
Dmeta.py77 for template_name in node.template.items:
80 if isinstance(template_name, nodes.Const):
81 if isinstance(template_name.value, string_types):
82 yield template_name.value
98 for template_name in node.template.value:
99 if isinstance(template_name, string_types):
100 yield template_name
Druntime.py53 def new_context(environment, template_name, blocks, vars=None, argument
70 return Context(environment, parent, template_name, blocks)
Dnodes.py81 def __init__(self, environment, template_name=None): argument
84 self.autoescape = environment.autoescape(template_name)
/external/chromium_org/tools/gn/
Dfunction_template.cc162 std::string template_name = args[0].string_value(); in RunTemplate() local
164 const Template* existing_template = scope->GetTemplate(template_name); in RunTemplate()
173 scope->AddTemplate(template_name, new Template(scope, function)); in RunTemplate()
/external/chromium_org/remoting/webapp/
Dbuild-html.py96 template_name = m.group(2)
97 if not self.validateTemplate(template_name):
99 template_name)
100 self.processTemplate(output, template_name, indent + len(prefix))
Dbuild-webapp.py70 (template_path, template_name) = os.path.split(input_file)
72 template = env.get_template(template_name)
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
Dtest-template.rb84 for template_name in TEMPLATE_NAMES
85 names.should include template_name
86 template_class = templates[ template_name ]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
Dtemplate_expander.py35 template_directory, template_name = os.path.split(path_to_template)
45 template = jinja_env.get_template(template_name)
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
Dgenerate_manifest.py27 (template_path, template_name) = os.path.split(input_file)
30 template = env.get_template(template_name)
/external/chromium_org/chrome/common/extensions/
DPRESUBMIT.py48 def _FindMatchingTemplates(template_name, template_path_list): argument
50 unix_name = _UnixName(template_name)
/external/chromium_org/remoting/tools/
Dregister_local_nm_hosts.sh21 local template_name="$(basename ${manifest_template})"
/external/chromium_org/remoting/tools/build/
Dremoting_localize.py691 (template_path, template_name) = os.path.split(source)
708 template = env.get_template(template_name)
/external/chromium_org/third_party/cython/src/Cython/Tempita/
D_tempita.py1158 template_name = args[0]
1172 if template_name == '-':
1174 template_name = '<stdin>'
1176 f = open(template_name, 'rb')
1183 template = TemplateClass(template_content, name=template_name)
/external/chromium_org/build/config/android/
Drules.gni1042 template_name = target_name
1044 libraries_list = "${target_gen_dir}/${template_name}_library_dependencies.list"
1052 final_deps += [ ":${template_name}__find_library_dependencies" ]
1053 action("${template_name}__find_library_dependencies") {
1074 final_deps += [ ":${template_name}__copy_libraries_and_exe" ]
1075 copy_ex("${template_name}__copy_libraries_and_exe") {
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DNodes.py1329 …template_types = [PyrexTypes.TemplatePlaceholderType(template_name) for template_name in self.temp…
1347 …template_types = [PyrexTypes.TemplatePlaceholderType(template_name) for template_name in self.temp…