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

  /external/chromium_org/chrome/common/extensions/docs/server2/
template_renderer_test.py 9 from third_party.handlebar import Handlebar
23 template = Handlebar('hello {{?true}}{{strings.extension}}{{/}}')
template_data_source_test.py 15 from third_party.handlebar import Handlebar
34 template_a1 = Handlebar(ReadFile(self._base_path, 'simple', 'test1.html'))
39 template_a2 = Handlebar(ReadFile(self._base_path, 'simple', 'test2.html'))
content_provider.py 12 from third_party.handlebar import Handlebar
31 Handlebar templates (if supports_templates is True on construction), in which
64 content = Handlebar(content, name=path)
intro_data_source.py 13 from third_party.handlebar import Handlebar
36 return Handlebar(
permissions_data_source_test.py 13 from third_party.handlebar import Handlebar
165 if isinstance(value, Handlebar):
template_renderer.py 6 from third_party.handlebar import Handlebar
30 assert isinstance(template, Handlebar), type(template)
content_provider_test.py 16 from third_party.handlebar import Handlebar
95 self.assertEqual(Handlebar, type(content_and_type.content))
render_servlet.py 13 from third_party.handlebar import Handlebar
96 if isinstance(content, Handlebar):
compiled_file_system.py 11 from third_party.handlebar import Handlebar
124 SingleFile(lambda path, text: Handlebar(ToUnicode(text), name=path)),
api_data_source.py 65 a Handlebar template can use for a data source.
445 # converted to a Handlebar object, transform it to a template.
  /external/chromium_org/third_party/handlebar/
handlebar.py 15 # TODO: New name, not "handlebar".
21 '''Handlebar templates are data binding templates more-than-loosely inspired by
24 from handlebar import Handlebar
26 template = Handlebar('hello {{#foo bar/}} world')
36 Handlebar will use get() on contexts to return values, so to create custom
43 print(Handlebar('hello {{world}}').render(CustomContext()).text)
655 if isinstance(partial, Handlebar):
669 if isinstance(partial, Handlebar):
710 if not isinstance(value, (Handlebar, _Node))
    [all...]

Completed in 617 milliseconds