/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
reflection.py | 33 """Contains a metaclass and helper functions used to create 36 Recall that a metaclass is the "type" of a class. 37 (A class is to a metaclass what an instance is to a class.) 39 In this case, we use the GeneratedProtocolMessageType metaclass 75 """Metaclass for protocol message classes created at runtime from Descriptors. 83 The protocol compiler currently uses this metaclass to create protocol 109 metaclass protocol). 112 it's required by the metaclass protocol 137 metaclass protocol). 140 it's required by the metaclass protoco [all...] |
service_reflection.py | 44 """Metaclass for service classes created at runtime from ServiceDescriptors. 50 The protocol compiler currently uses this metaclass to create protocol service 68 name: Name of the class (ignored, but required by the metaclass 86 """Metaclass for service stubs created at runtime from ServiceDescriptors.
|
/external/chromium_org/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/javassist/src/main/javassist/tools/reflect/ |
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...] |
Loader.java | 149 * @param metaclass the class of the class metaobject. 158 String metaobject, String metaclass) 161 return reflection.makeReflective(clazz, metaobject, metaclass);
|
/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)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
abc.py | 18 Requires that the metaclass is ABCMeta or derived from it. A 19 class that has a metaclass derived from ABCMeta cannot be 39 Requires that the metaclass is ABCMeta or derived from it. A 40 class that has a metaclass derived from ABCMeta cannot be 67 """Metaclass for defining Abstract Base Classes (ABCs). 69 Use this metaclass to create an ABC. An ABC can be subclassed
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
abc.py | 18 Requires that the metaclass is ABCMeta or derived from it. A 19 class that has a metaclass derived from ABCMeta cannot be 39 Requires that the metaclass is ABCMeta or derived from it. A 40 class that has a metaclass derived from ABCMeta cannot be 67 """Metaclass for defining Abstract Base Classes (ABCs). 69 Use this metaclass to create an ABC. An ABC can be subclassed
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 1 """Fixer for __metaclass__ = X -> (metaclass=X) methods. 192 # now stick the metaclass in the arglist 194 meta_txt.value = 'metaclass' 203 # compact the expression "metaclass = Meta" -> "metaclass=Meta"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 1 """Fixer for __metaclass__ = X -> (metaclass=X) methods. 192 # now stick the metaclass in the arglist 194 meta_txt.value = 'metaclass' 203 # compact the expression "metaclass = Meta" -> "metaclass=Meta"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
_endian.py | 40 # Note: The Structure metaclass checks for the *presence* (not the
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
_endian.py | 40 # Note: The Structure metaclass checks for the *presence* (not the
|
/external/protobuf/python/google/protobuf/ |
service_reflection.py | 44 """Metaclass for service classes created at runtime from ServiceDescriptors. 50 The protocol compiler currently uses this metaclass to create protocol service 68 name: Name of the class (ignored, but required by the metaclass 86 """Metaclass for service stubs created at runtime from ServiceDescriptors.
|
reflection.py | 36 """Contains a metaclass and helper functions used to create 39 Recall that a metaclass is the "type" of a class. 40 (A class is to a metaclass what an instance is to a class.) 42 In this case, we use the GeneratedProtocolMessageType metaclass 76 """Metaclass for protocol message classes created at runtime from Descriptors. 84 The protocol compiler currently uses this metaclass to create protocol 110 metaclass protocol). 113 it's required by the metaclass protocol 136 metaclass protocol). 139 it's required by the metaclass protoco [all...] |
/prebuilts/tools/common/gradle-plugins/repository/com/android/tools/internal/internal-plugins/1.0/ |
internal-plugins-1.0.jar | |
/developers/build/lib/ |
buildSrc.jar | |
/prebuilts/misc/common/groovy/ |
groovy-all-1.7.0.jar | |
groovy-src-1.7.0.zip | |
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.5.7/ |
gradle-0.5.7.jar | |
/developers/samples/android/ui/window/AdvancedImmersiveMode/buildSrc/libs/ |
buildSrc.jar | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_fixers.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_fixers.py | [all...] |
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
python_message.py | 36 """Contains a metaclass and helper functions used to create 39 Recall that a metaclass is the "type" of a class. 40 (A class is to a metaclass what an instance is to a class.) 42 In this case, we use the GeneratedProtocolMessageType metaclass 108 # I opted not to make any of these methods on the metaclass, to make it more [all...] |
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | 34 // largely be constructed at runtime via the metaclass in reflection.py. 615 // metaclass to do almost all of the work of actually creating a useful class. 617 // to output a Python version of the descriptors, which the metaclass in [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
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...] |