/external/opencv3/3rdparty/jinja2/ |
_compat.py | 92 def with_metaclass(meta, *bases): function 100 # This has the advantage over six.with_metaclass in that it does not
|
ext.py | 23 from jinja2._compat import next, with_metaclass, string_types, iteritems 41 class Extension(with_metaclass(ExtensionRegistry, object)):
|
nodes.py | 19 from jinja2._compat import next, izip, with_metaclass, text_type, \ 107 class Node(with_metaclass(NodeType, object)):
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/ |
test_six.py | 679 class X(six.with_metaclass(Meta)): 685 class X(six.with_metaclass(Meta, Base)): 691 class X(six.with_metaclass(Meta, Base, Base2)):
|
six.py | 771 def with_metaclass(meta, *bases): function
|
/external/chromium-trace/catapult/third_party/six/ |
test_six.py | 713 class X(six.with_metaclass(Meta)): 719 class X(six.with_metaclass(Meta, Base)): 725 class X(six.with_metaclass(Meta, Base, Base2)):
|
six.py | 800 def with_metaclass(meta, *bases): function
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/ |
extended_descriptor.py | 222 class ProtoPrinter(six.with_metaclass(abc.ABCMeta, object)):
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vendored/ |
six.py | 699 def with_metaclass(meta, *bases): function
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
remote.py | 837 class Service(six.with_metaclass(_ServiceClass, object)): [all...] |
messages.py | 398 class Enum(six.with_metaclass(_EnumClass, object)): 684 class Message(six.with_metaclass(_MessageClass, object)): [all...] |
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/ |
html5parser.py | 2 from six import with_metaclass 454 class Phase(with_metaclass(getMetaclass(debug, log))): [all...] |