HomeSort by relevance Sort by last modified time
    Searched refs:metaclass (Results 1 - 25 of 41) sorted by null

1 2

  /external/javassist/src/main/javassist/tools/reflect/
Loader.java 149 * @param metaclass the class of the class metaobject.
158 String metaobject, String metaclass)
161 return reflection.makeReflective(clazz, metaobject, metaclass);
Reflection.java 139 * @param metaclass the class name of the class metaobject.
146 String metaobject, String metaclass)
151 classPool.get(metaclass));
163 * @param metaclass the class of the class metaobject.
172 Class metaobject, Class metaclass)
176 metaclass.getName());
189 * @param metaclass the class of the class metaobject.
198 CtClass metaobject, CtClass metaclass)
217 return modifyClassfile(clazz, metaobject, metaclass);
238 CtClass metaclass)
    [all...]
  /art/test/utils/python/testgen/
mixins.py 25 class Named(metaclass=abc.ABCMeta):
37 class FileLike(metaclass=abc.ABCMeta):
118 class DumpMixin(metaclass=abc.ABCMeta):
  /development/tools/axl/
singletonmixin.py 37 time (by means of the MetaSingleton metaclass.
42 public domain. The idea of using a metaclass came from
52 def __new__(metaclass, strName, tupBases, dict):
55 return super(MetaSingleton,metaclass).__new__(metaclass, strName, tupBases, dict)
178 def __new__(metaclass, strName, tupBases, dict):
179 return super(MetaSingleton,metaclass).__new__(metaclass, strName, tupBases, dict)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/
Eiffel.py 87 def _test(metaclass):
89 __metaclass__ = metaclass
  /external/libmojo/third_party/jinja2/
_compat.py 94 # dummy metaclass for one level of class instanciation that replaces
95 # itself with the actual metaclass. Because of internal type checks
96 # we also need to make sure that we downgrade the custom metaclass
102 class metaclass(meta): class in function:with_metaclass
109 return metaclass('temporary_class', None, {})
  /external/python/cpython2/Demo/newmetaclasses/
Eiffel.py 87 def _test(metaclass):
89 __metaclass__ = metaclass
  /external/protobuf/python/google/protobuf/internal/
_parameterized.py 233 # Signal the metaclass that the name of the test function is unique
241 # The metaclass will make sure to create a unique, but nondescriptive
342 """Metaclass for test cases with test generators.
413 """Returns a new base class with a cooperative metaclass base.
437 metaclass = type(
441 return metaclass(
  /packages/services/Car/tools/
update-obd2-sensors.py 182 """Metaclass for sensor classes."""
205 class intSensor(metaclass=SensorMeta):
208 class floatSensor(metaclass=SensorMeta):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ceval.c 4623 PyObject *metaclass = NULL, *result, *base; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ceval.c 4601 PyObject *metaclass = NULL, *result, *base; local
    [all...]
  /external/python/cpython2/Python/
ceval.c 4941 PyObject *metaclass = NULL, *result, *base; local
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 6442 bool metaclass = ((flags & CLS_META) != 0); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
pickletester.py 121 class metaclass(type): class in inherits:type
125 __metaclass__ = metaclass
    [all...]
test_descr.py 523 # More metaclass examples
528 def __new__(metaclass, name, bases, dict):
529 cls = super(autosuper, metaclass).__new__(metaclass,
562 def __new__(metaclass, name, bases, dict):
577 return super(autoproperty, metaclass).__new__(metaclass,
639 # The most derived metaclass of D is A rather than type.
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
pickletester.py 128 class metaclass(type): class in inherits:type
132 __metaclass__ = metaclass
    [all...]
test_descr.py 525 # More metaclass examples
530 def __new__(metaclass, name, bases, dict):
531 cls = super(autosuper, metaclass).__new__(metaclass,
564 def __new__(metaclass, name, bases, dict):
579 return super(autoproperty, metaclass).__new__(metaclass,
641 # The most derived metaclass of D is A rather than type.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
pickletester.py 128 class metaclass(type): class in inherits:type
132 __metaclass__ = metaclass
    [all...]
test_descr.py 525 # More metaclass examples
530 def __new__(metaclass, name, bases, dict):
531 cls = super(autosuper, metaclass).__new__(metaclass,
564 def __new__(metaclass, name, bases, dict):
579 return super(autoproperty, metaclass).__new__(metaclass,
641 # The most derived metaclass of D is A rather than type.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
pickletester.py 128 class metaclass(type): class in inherits:type
132 __metaclass__ = metaclass
    [all...]
test_descr.py 525 # More metaclass examples
530 def __new__(metaclass, name, bases, dict):
531 cls = super(autosuper, metaclass).__new__(metaclass,
564 def __new__(metaclass, name, bases, dict):
579 return super(autoproperty, metaclass).__new__(metaclass,
641 # The most derived metaclass of D is A rather than type.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
pickletester.py 128 class metaclass(type): class in inherits:type
132 __metaclass__ = metaclass
    [all...]
test_descr.py 525 # More metaclass examples
530 def __new__(metaclass, name, bases, dict):
531 cls = super(autosuper, metaclass).__new__(metaclass,
564 def __new__(metaclass, name, bases, dict):
579 return super(autoproperty, metaclass).__new__(metaclass,
641 # The most derived metaclass of D is A rather than type.
    [all...]
  /external/python/cpython2/Lib/test/
test_descr.py 533 # More metaclass examples
538 def __new__(metaclass, name, bases, dict):
539 cls = super(autosuper, metaclass).__new__(metaclass,
572 def __new__(metaclass, name, bases, dict):
587 return super(autoproperty, metaclass).__new__(metaclass,
649 # The most derived metaclass of D is A rather than type.
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
token.rb 426 As TokenScheme the class functions as a metaclass, figuring out some of the

Completed in 545 milliseconds

1 2