Searched refs:with_metaclass (Results 1 – 17 of 17) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
D | protorpc_test_pb2.py | 375 class NestedMessage(six.with_metaclass(reflection.GeneratedProtocolMessageType, message.Message)): 380 class HasNestedMessage(six.with_metaclass(reflection.GeneratedProtocolMessageType, message.Message)… 385 class HasDefault(six.with_metaclass(reflection.GeneratedProtocolMessageType, message.Message)): 390 class OptionalMessage(six.with_metaclass(reflection.GeneratedProtocolMessageType, message.Message)): 395 class RepeatedMessage(six.with_metaclass(reflection.GeneratedProtocolMessageType, message.Message)): 400 class HasOptionalNestedMessage(six.with_metaclass(reflection.GeneratedProtocolMessageType, message.…
|
D | messages.py | 398 class Enum(six.with_metaclass(_EnumClass, object)): 684 class Message(six.with_metaclass(_MessageClass, object)):
|
D | remote.py | 837 class Service(six.with_metaclass(_ServiceClass, object)):
|
/external/opencv3/3rdparty/jinja2/ |
D | _compat.py | 92 def with_metaclass(meta, *bases): function
|
D | nodes.py | 19 from jinja2._compat import next, izip, with_metaclass, text_type, \ 107 class Node(with_metaclass(NodeType, object)):
|
D | ext.py | 23 from jinja2._compat import next, with_metaclass, string_types, iteritems 41 class Extension(with_metaclass(ExtensionRegistry, object)):
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/ |
D | 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)):
|
D | CHANGES | 181 - Issue #23: Allow multiple base classes to be passed to with_metaclass.
|
D | six.py | 771 def with_metaclass(meta, *bases): function
|
/external/chromium-trace/catapult/third_party/six/ |
D | 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)):
|
D | CHANGES | 197 - Issue #23: Allow multiple base classes to be passed to with_metaclass.
|
D | six.py | 800 def with_metaclass(meta, *bases): function
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/documentation/ |
D | index.rst | 304 .. function:: with_metaclass(metaclass, *bases) 309 from six import with_metaclass 317 class MyClass(with_metaclass(Meta, Base)):
|
/external/chromium-trace/catapult/third_party/six/documentation/ |
D | index.rst | 311 .. function:: with_metaclass(metaclass, *bases) 316 from six import with_metaclass 324 class MyClass(with_metaclass(Meta, Base)):
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/ |
D | extended_descriptor.py | 222 class ProtoPrinter(six.with_metaclass(abc.ABCMeta, object)):
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vendored/ |
D | six.py | 699 def with_metaclass(meta, *bases): function
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/ |
D | html5parser.py | 2 from six import with_metaclass 454 class Phase(with_metaclass(getMetaclass(debug, log))):
|