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

  /external/chromium_org/chrome/common/extensions/docs/server2/
template_renderer_test.py 9 from third_party.motemplate import Motemplate
23 template = Motemplate('hello {{?true}}{{strings.extension}}{{/}}')
template_data_source_test.py 13 from third_party.motemplate import Motemplate
41 template_a1 = Motemplate(_ReadFile('simple', 'test1.html'))
46 template_a2 = Motemplate(_ReadFile('simple', 'test2.html'))
template_renderer.py 6 from third_party.motemplate import Motemplate
30 assert isinstance(template, Motemplate), type(template)
permissions_data_source_test.py 13 from third_party.motemplate import Motemplate
167 if isinstance(value, Motemplate):
render_servlet.py 16 from third_party.motemplate import Motemplate
114 if isinstance(content, Motemplate):
content_provider.py 18 from third_party.motemplate import Motemplate
44 Motemplate templates (if |supports_templates| is True on construction), in
91 content = Motemplate(content, name=path)
99 content = Motemplate(content, name=path)
content_provider_test.py 17 from third_party.motemplate import Motemplate
102 self.assertEqual(Motemplate, type(content_and_type.content))
compiled_file_system.py 13 from third_party.motemplate import Motemplate
134 SingleFile(lambda path, text: Motemplate(ToUnicode(text), name=path)),
jsc_view.py 65 a Motemplate template can use for a data source.
557 # converted to a Motemplate object, transform it to a template.
  /external/chromium_org/third_party/motemplate/
motemplate.py 20 '''Motemplate templates are data binding templates more-than-loosely inspired by
23 from motemplate import Motemplate
25 template = Motemplate('hello {{#foo bar/}} world')
35 Motemplate will use get() on contexts to return values, so to create custom
42 print(Motemplate('hello {{world}}').render(CustomContext()).text)
652 if isinstance(partial, Motemplate):
666 if isinstance(partial, Motemplate):
707 if not isinstance(value, (Motemplate, _Node)):
711 if isinstance(value, Motemplate)
    [all...]

Completed in 97 milliseconds