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

1 2 3 4 5 6 7 8

  /external/objenesis/main/src/main/java/org/objenesis/instantiator/gcj/
GCJSerializationInstantiator.java 33 private Class<? super T> superType;
37 this.superType = SerializationInstantiatorHelper.getNonSerializableSuperClass(type);
43 return type.cast(newObjectMethod.invoke(dummyStream, type, superType));
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
TestUtils.java 43 public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String... interfaces) {
44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces),
  /external/mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/
ForwardsInvocations.java 62 private static boolean compatibleReturnTypes(Class<?> superType, Class<?> subType) {
63 return superType.equals(subType) || superType.isAssignableFrom(subType);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationMethod.java 66 for (TypeMirror superType : supers) {
67 if (superType.getKind() == TypeKind.DECLARED) {
68 DeclaredType declaredType = (DeclaredType) superType;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 340 findContextCandidates(results, clazzType, 0 /*superType*/);
361 * Because the superType argument is actually a recursion index, this makes the most
367 * @param superType The recursion index.
372 int superType) {
375 if (superType != 0 && Modifier.isPrivate(mb.getModifiers())) {
394 Integer rating = Integer.valueOf(10000 + 1000 * superType + argsLen);
408 if (superType != 0 && Modifier.isPrivate(var.getModifiers())) {
414 Integer rating = Integer.valueOf(superType);
423 findContextCandidates(results, clazzType, superType + 1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 303 // it so we get its supertype. At some point it will be null and we
305 IType superType = type;
307 while ((superType = hierarchy.getSuperclass(superType)) != null &&
308 superType.exists()) {
309 if (superClassName.equals(superType.getFullyQualifiedName())) {
  /system/tools/hidl/
Coordinator.cpp 468 if (iface->superType() == nullptr) {
472 if (iface->superType()->fqName() != prevFQName) {
474 if (iface->superType()->fqName().getPackageAndVersion() ==
478 << iface->superType()->fqName().string() << ", which is not allowed.";
Interface.h 42 const Interface *superType() const;
46 // First element is superType().
generateJava.cpp 144 const Interface *superType = iface->superType();
148 if (superType != NULL) {
149 out << superType->fullJavaName();
generateCpp.cpp 457 const Interface *superType = iface->superType();
459 if (superType == NULL) {
463 << superType->fullName();
536 for (const Interface *superType : iface->typeChain()) {
540 << superType->getCppArgumentType()
    [all...]
EnumType.cpp 496 const Type *superType = type->storageType();
497 if (superType == NULL || !superType->isEnum()) {
501 type = static_cast<const EnumType *>(superType);
Interface.cpp 470 ancestor = ancestor->superType();
516 const Interface *Interface::superType() const {
531 return superType()->typeChain(); // should work even if superType is nullptr
879 const Interface* superClass = superType();
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
ProxyBuilder.java 271 TypeId<T> superType = TypeId.get(baseClass);
272 generateConstructorsAndFields(dexMaker, generatedType, superType, baseClass);
274 generateCodeForAllMethods(dexMaker, generatedType, methodsToProxy, superType);
275 dexMaker.declare(generatedType, generatedName + ".generated", PUBLIC, superType, getInterfacesAsTypeIds());
584 TypeId<G> generatedType, TypeId<T> superType, Class<T> superClass) {
605 MethodId<T, ?> superConstructor = superType.getConstructor(types);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java     [all...]
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/1.0/
objenesis-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/1.2/
objenesis-1.2.jar 
  /prebuilts/tools/common/objenesis/
objenesis-1.2.jar 
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /prebuilts/devtools/tools/lib/
objenesis-2.1.jar 
  /prebuilts/misc/common/robolectric/lib/
objenesis-2.1.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife-compiler/8.4.0/
butterknife-compiler-8.4.0.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/2.1/
objenesis-2.1.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 

Completed in 1446 milliseconds

1 2 3 4 5 6 7 8