Home
last modified time | relevance | path

Searched refs:text_type (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/markupsafe/
D__init__.py12 from markupsafe._compat import text_type, string_types, int_types, \
23 class Markup(text_type):
72 return text_type.__new__(cls, base)
73 return text_type.__new__(cls, base, encoding, errors)
90 return self.__class__(text_type.__mul__(self, num))
99 return self.__class__(text_type.__mod__(self, arg))
104 text_type.__repr__(self)
108 return self.__class__(text_type.join(self, map(self.escape, seq)))
109 join.__doc__ = text_type.join.__doc__
112 return list(map(self.__class__, text_type.split(self, *args, **kwargs)))
[all …]
D_native.py12 from markupsafe._compat import text_type
22 return Markup(text_type(s)
44 if not isinstance(s, text_type):
45 s = text_type(s)
D_compat.py16 text_type = str variable
21 text_type = unicode variable
/external/chromium_org/third_party/jinja2/
Dfilters.py21 from jinja2._compat import next, imap, string_types, text_type, iteritems
77 return escape(text_type(value))
119 return text_type(s).replace(text_type(old), text_type(new), count)
318 return text_type(d).join(imap(text_type, value))
329 value[idx] = text_type(item)
333 d = text_type(d)
342 return text_type(value).center(width)
557 return Markup(text_type(value)).striptags()
752 return text_type(value)
Dtests.py13 from jinja2._compat import text_type, string_types, mapping_types
67 return text_type(value).islower()
72 return text_type(value).isupper()
Dexceptions.py11 from jinja2._compat import imap, text_type, PY2, implements_to_string
20 message = text_type(message).encode('utf-8')
75 u', '.join(imap(text_type, names))
Dutils.py14 from jinja2._compat import text_type, string_types, implements_iterator, \
200 words = _word_split_re.split(text_type(escape(text)))
288 obj = text_type(obj)
289 if isinstance(obj, text_type):
291 return text_type(url_quote(obj))
D_compat.py23 text_type = str variable
51 text_type = unicode variable
Dbccache.py24 from jinja2._compat import BytesIO, pickle, PY2, text_type
163 if isinstance(filename, text_type):
Druntime.py17 from jinja2._compat import next, imap, text_type, iteritems, \
29 to_string = text_type
50 return concat(imap(text_type, seq))
Denvironment.py31 text_type, reraise, implements_iterator, implements_to_string, \
471 source = text_type(source)
484 self.iter_extensions(), text_type(source))
Dlexer.py23 from jinja2._compat import next, iteritems, implements_iterator, text_type, \
597 source = text_type(source)
Dnodes.py19 from jinja2._compat import next, izip, with_metaclass, text_type, \
694 return ''.join(text_type(x.as_const(eval_ctx)) for x in self.nodes)
Dcompiler.py19 from jinja2._compat import range_type, next, text_type, string_types, \
1219 finalize = lambda x: text_type(self.environment.finalize(x))
1221 finalize = text_type
/external/chromium_org/v8/src/
Djsregexp.h443 TextType text_type() const { return text_type_; } in FOR_EACH_REG_EXP_TREE_TYPE()
448 ASSERT(text_type() == ATOM); in FOR_EACH_REG_EXP_TREE_TYPE()
453 ASSERT(text_type() == CHAR_CLASS); in FOR_EACH_REG_EXP_TREE_TYPE()
458 TextElement(TextType text_type, RegExpTree* tree) in FOR_EACH_REG_EXP_TREE_TYPE()
459 : cp_offset_(-1), text_type_(text_type), tree_(tree) {} in FOR_EACH_REG_EXP_TREE_TYPE()
Djsregexp.cc946 switch (text_type()) { in length()
2564 if (elm.text_type() == TextElement::ATOM) { in GetQuickCheckDetails()
2817 if (elm.text_type() == TextElement::ATOM) { in FilterASCII()
2833 ASSERT(elm.text_type() == TextElement::CHAR_CLASS); in FilterASCII()
3260 if (elm.text_type() == TextElement::ATOM) { in TextEmitPass()
3298 ASSERT_EQ(TextElement::CHAR_CLASS, elm.text_type()); in TextEmitPass()
3423 if (elm.text_type() == TextElement::CHAR_CLASS) { in MakeCaseIndependent()
3448 if (elm.text_type() != TextElement::CHAR_CLASS) return NULL; in GetSuccessorOfOmnivorousTextNode()
4523 switch (elm.text_type()) { in VisitText()
5828 if (text.text_type() == TextElement::ATOM) { in FillInBMInfo()
[all …]