Searched defs:__html__ (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/markupsafe/
H A D__init__.py25 needing to be escaped. This implements the `__html__` interface a couple
35 when passed an object with an HTML representation (has an `__html__`
42 ... def __html__(self):
69 if hasattr(base, '__html__'):
70 base = base.__html__()
75 def __html__(self): member in class:Markup
79 if isinstance(other, string_types) or hasattr(other, '__html__'):
84 if hasattr(other, '__html__') or isinstance(other, string_types):
206 if hasattr(value, '__html__') or isinstance(value, string_types):
/external/chromium_org/third_party/cython/src/Cython/Tempita/
H A D_tempita.py436 def __html__(self): member in class:html
445 if not force and hasattr(value, '__html__'):
446 return value.__html__()
493 if hasattr(value, '__html__'):
494 value = value.__html__()
/external/chromium_org/third_party/jinja2/
H A Denvironment.py1074 def __html__(self): member in class:TemplateModule

Completed in 201 milliseconds