/external/libmojo/third_party/markupsafe/ |
D | __init__.py | 12 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.py | 12 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.py | 16 text_type = str variable 21 text_type = unicode variable
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | filters.py | 68 if isinstance(x, compat.text_type): 73 return compat.text_type(x, encoding=key) 87 self.codepoint2entity = dict([(c, compat.text_type('&%s;' % n)) 96 return compat.text_type(text).translate(self.codepoint2entity) 117 return self.__escapable.sub(self.__escape, compat.text_type(text) 173 return (compat.text_type(text), ex.end)
|
D | exceptions.py | 92 self.message = compat.text_type(self.error) 100 if not isinstance(self.message, compat.text_type): 101 self.message = compat.text_type(self.message, 'ascii', 'replace')
|
D | compat.py | 19 text_type = str variable 45 text_type = unicode variable
|
D | template.py | 629 not isinstance(self.template_source, compat.text_type): 669 if not compat.py3k and isinstance(cid, compat.text_type): 682 if isinstance(source, compat.text_type):
|
D | lexer.py | 177 if isinstance(text, compat.text_type):
|
/external/libmojo/third_party/jinja2/ |
D | filters.py | 21 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)
|
D | tests.py | 13 from jinja2._compat import text_type, string_types, mapping_types 67 return text_type(value).islower() 72 return text_type(value).isupper()
|
D | exceptions.py | 11 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))
|
D | utils.py | 14 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.py | 23 text_type = str variable 51 text_type = unicode variable
|
D | bccache.py | 24 from jinja2._compat import BytesIO, pickle, PY2, text_type 163 if isinstance(filename, text_type):
|
D | runtime.py | 17 from jinja2._compat import next, imap, text_type, iteritems, \ 29 to_string = text_type 50 return concat(imap(text_type, seq))
|
D | environment.py | 31 text_type, reraise, implements_iterator, implements_to_string, \ 471 source = text_type(source) 484 self.iter_extensions(), text_type(source))
|
D | lexer.py | 23 from jinja2._compat import next, iteritems, implements_iterator, text_type, \ 597 source = text_type(source)
|
D | nodes.py | 19 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)
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 164 text_type = node.children[0].type # always Leaf(nnn, 'class') 217 pass_leaf = Leaf(text_type, u'pass') 226 pass_leaf = Leaf(text_type, u'pass')
|
/external/v8/src/regexp/ |
D | regexp-ast.h | 169 TextType text_type() const { return text_type_; } in text_type() function 174 DCHECK(text_type() == ATOM); in atom() 179 DCHECK(text_type() == CHAR_CLASS); in char_class() 184 TextElement(TextType text_type, RegExpTree* tree) in TextElement() argument 185 : cp_offset_(-1), text_type_(text_type), tree_(tree) {} in TextElement()
|
D | jsregexp.cc | 896 switch (text_type()) { in length() 2554 if (elm.text_type() == TextElement::ATOM) { in GetQuickCheckDetails() 2811 if (elm.text_type() == TextElement::ATOM) { in FilterOneByte() 2827 DCHECK(elm.text_type() == TextElement::CHAR_CLASS); in FilterOneByte() 3252 if (elm.text_type() == TextElement::ATOM) { in TextEmitPass() 3287 DCHECK_EQ(TextElement::CHAR_CLASS, elm.text_type()); in TextEmitPass() 3439 if (elm.text_type() == TextElement::CHAR_CLASS) { in MakeCaseIndependent() 3459 if (elm.text_type() != TextElement::CHAR_CLASS) return NULL; in GetSuccessorOfOmnivorousTextNode() 4615 switch (elm.text_type()) { in VisitText() 6421 if (text.text_type() == TextElement::ATOM) { in FillInBMInfo() [all …]
|
/external/protobuf/python/google/protobuf/internal/ |
D | type_checkers.py | 173 if not isinstance(proposed_value, (bytes, six.text_type)): 175 (proposed_value, type(proposed_value), (bytes, six.text_type)))
|
D | message_test.py | 737 self.assertIsInstance(m.optional_string, six.text_type) 1298 self.assertIsInstance(msg.map_string_string['abc'], six.text_type) 1387 self.assertIsInstance(key, six.text_type) 1388 self.assertIsInstance(value, six.text_type)
|
/external/protobuf/python/google/protobuf/ |
D | json_format.py | 311 if not isinstance(text, six.text_type): text = text.decode('utf-8') 580 if isinstance(value, six.text_type) and value.find(' ') != -1:
|
D | text_format.py | 89 if isinstance(val, six.text_type): 303 if isinstance(value, six.text_type): 1010 return six.text_type(the_bytes, 'utf-8')
|