Home
last modified time | relevance | path

Searched refs:superType (Results 1 – 16 of 16) sorted by relevance

/external/objenesis/main/src/org/objenesis/instantiator/gcj/
DGCJSerializationInstantiator.java30 private Class superType; field in GCJSerializationInstantiator
34 this.superType = SerializationInstantiatorHelper.getNonSerializableSuperClass(type); in GCJSerializationInstantiator()
39 return newObjectMethod.invoke(dummyStream, new Object[] {type, superType}); in newInstance()
/external/objenesis/main/src/org/objenesis/instantiator/sun/
DSun13SerializationInstantiator.java30 private final Class superType; field in Sun13SerializationInstantiator
34 this.superType = SerializationInstantiatorHelper.getNonSerializableSuperClass(type); in Sun13SerializationInstantiator()
39 return allocateNewObjectMethod.invoke(null, new Object[] {type, superType}); in newInstance()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DTestUtils.java43 …public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String.… in makeClassDef() argument
44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces), in makeClassDef()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
DAddDelegateTransformer.java50 …public void begin_class(int version, int access, String className, Type superType, Type[] interfac… in begin_class() argument
55 super.begin_class(version, access, className, superType, all, sourceFile); in begin_class()
70 super.begin_class(version, access, className, superType, interfaces, sourceFile); in begin_class()
DInterceptFieldTransformer.java47 …public void begin_class(int version, int access, String className, Type superType, Type[] interfac… in begin_class() argument
49 …super.begin_class(version, access, className, superType, TypeUtils.add(interfaces, ENABLED), sourc… in begin_class()
70 super.begin_class(version, access, className, superType, interfaces, sourceFile); in begin_class()
DFieldProviderTransformer.java51 …public void begin_class(int version, int access, String className, Type superType, Type[] interfac… in begin_class() argument
57 super.begin_class(version, access, className, superType, interfaces, sourceFile); in begin_class()
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/reflect/
DClassReflection.java221 Type superType = declType.getSuperclass(); in getAnnotations() local
223 while (!superType.getClassOfType().equals(Object.class)) { in getAnnotations()
224 superAnnotations = superType.getDeclaredAnnotations(); in getAnnotations()
248 superType = superType.getSuperclass(); in getAnnotations()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DClassEmitter.java62 …public void begin_class(int version, final int access, String className, final Type superType, fin… in begin_class() argument
69 return (superType != null) ? superType : Constants.TYPE_OBJECT; in begin_class()
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
DProxyBuilder.java252 TypeId<T> superType = TypeId.get(baseClass); in buildProxyClass() local
253 generateConstructorsAndFields(dexMaker, generatedType, superType, baseClass); in buildProxyClass()
255 generateCodeForAllMethods(dexMaker, generatedType, methodsToProxy, superType); in buildProxyClass()
256 dexMaker.declare(generatedType, generatedName + ".generated", PUBLIC, superType, in buildProxyClass()
554 TypeId<G> generatedType, TypeId<T> superType, Class<T> superClass) { in generateConstructorsAndFields() argument
575 MethodId<T, ?> superConstructor = superType.getConstructor(types); in generateConstructorsAndFields()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java1709 String superType = typeProto.getSuperclass();
1710 if (superType == null) {
1713 typeProto = classPath.getClass(superType);
1777 TypeProto superType;
1781 superType = classPath.getClass(superclassType);
1784 superType = typeProto;
1787 resolvedMethod = superType.getMethodByVtableIndex(methodIndex);
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp2700 QualType superType = getSuperStructType(); in SynthMessageExpr() local
2707 false, superType, VK_LValue, in SynthMessageExpr()
2710 superType, VK_LValue, in SynthMessageExpr()
2723 Context->getPointerType(superType), in SynthMessageExpr()
2731 = Context->getTrivialTypeSourceInfo(superType); in SynthMessageExpr()
2733 superType, VK_LValue, in SynthMessageExpr()
2795 QualType superType = getSuperStructType(); in SynthMessageExpr() local
2802 false, superType, VK_LValue, in SynthMessageExpr()
2805 superType, VK_LValue, SourceLocation()); in SynthMessageExpr()
2817 Context->getPointerType(superType), in SynthMessageExpr()
[all …]
DRewriteModernObjC.cpp3306 QualType superType = getSuperStructType(); in SynthMessageExpr() local
3313 false, superType, VK_LValue, in SynthMessageExpr()
3316 superType, VK_LValue, in SynthMessageExpr()
3329 Context->getPointerType(superType), in SynthMessageExpr()
3337 = Context->getTrivialTypeSourceInfo(superType); in SynthMessageExpr()
3339 superType, VK_LValue, in SynthMessageExpr()
3401 QualType superType = getSuperStructType(); in SynthMessageExpr() local
3408 false, superType, VK_LValue, in SynthMessageExpr()
3411 superType, VK_LValue, SourceLocation()); in SynthMessageExpr()
3423 Context->getPointerType(superType), in SynthMessageExpr()
[all …]
/external/smali/smali/src/main/antlr/
DsmaliTreeWalker.g162 $classDef = dexBuilder.internClassDef($header.classType, $header.accessFlags, $header.superType,
173 header returns[String classType, int accessFlags, String superType, List<String> implementsList, St…
179 $superType = $super_spec.type;
/external/clang/lib/AST/
DDeclObjC.cpp297 if (const ObjCObjectType *superType = getSuperClassType()) { in getSuperClass() local
298 if (ObjCInterfaceDecl *superDecl = superType->getInterface()) { in getSuperClass()
DType.cpp1339 QualType superType = objectType->getSuperClassType(); in getObjCSubstitutions() local
1340 if (superType.isNull()) { in getObjCSubstitutions()
1345 objectType = superType->castAs<ObjCObjectType>(); in getObjCSubstitutions()
/external/smali/smali/src/main/java/org/jf/smali/
DsmaliTreeWalker.java454 …n)header1).accessFlags:0), (header1!=null?((smaliTreeWalker.header_return)header1).superType:null), in smali_file()
480 public String superType; field in smaliTreeWalker.header_return
536 retval.superType = super_spec6; in header()