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

  /external/chromium_org/third_party/jinja2/_markupsafe/
_native.py 19 if hasattr(s, '__html__'):
20 return s.__html__()
__init__.py 24 needing to be escaped. This implements the `__html__` interface a couple
34 when passed an object with an HTML representation (has an `__html__`
41 ... def __html__(self):
68 if hasattr(base, '__html__'):
69 base = base.__html__()
74 def __html__(self): member in class:Markup
78 if hasattr(other, '__html__') or isinstance(other, basestring):
83 if hasattr(other, '__html__') or isinstance(other, basestring):
201 if hasattr(value, '__html__') or isinstance(value, basestring):
  /external/chromium_org/third_party/jinja2/
filters.py 68 if hasattr(value, '__html__'):
69 value = value.__html__()
93 if hasattr(old, '__html__') or hasattr(new, '__html__') and \
94 not hasattr(s, '__html__'):
290 if not hasattr(d, '__html__'):
294 if hasattr(item, '__html__'):
514 if hasattr(value, '__html__'):
515 value = value.__html__()
tests.py 141 return hasattr(value, '__html__')
runtime.py 40 if hasattr(arg, '__html__'):
compiler.py     [all...]
environment.py 998 def __html__(self): member in class:TemplateModule
    [all...]

Completed in 94 milliseconds