Home
last modified time | relevance | path

Searched refs:implementsInterface (Results 1 – 8 of 8) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DArrayProto.java90 @Override public boolean implementsInterface(@Nonnull String iface) { in implementsInterface() method in ArrayProto
131 if (implementsInterface(other.getType())) { in getCommonSuperclass()
DTypeProto.java45 boolean implementsInterface(@Nonnull String iface); in implementsInterface() method
DPrimitiveProto.java55 @Override public boolean implementsInterface(@Nonnull String iface) { return false; } in implementsInterface() method in PrimitiveProto
DClassProto.java314 public boolean implementsInterface(@Nonnull String iface) { in implementsInterface() method in ClassProto
356 if (other.implementsInterface(getType())) { in checkInterface()
1003 … if (!existingInterface.implementsInterface(interfaceMethod.getDefiningClass())) {
1026 … if (!existingInterface.implementsInterface(interfaceMethod.getDefiningClass())) {
1130 … if (!existingInterface.implementsInterface(interfaceMethod.getDefiningClass())) {
1153 … if (!existingInterface.implementsInterface(interfaceMethod.getDefiningClass())) {
1245 return targetClassProto.implementsInterface(method2.getDefiningClass());
DUnknownClassProto.java52 @Override public boolean implementsInterface(@Nonnull String iface) { return false; } in implementsInterface() method in UnknownClassProto
DMethodAnalyzer.java1198 return newType.type.implementsInterface(originalType.type.getType());
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DEarlyValidator.java308 if (!implementsInterface(connectorInterface.connectorElement(), profileConnectorType)) { in validateProfileConnectorInterface()
357 if (!implementsInterface(connectorInterface.connectorElement(), userConnectorType)) { in validateUserConnectorInterface()
403 if (!implementsInterface(generatedConnector, profileConnectorType)) { in validateGeneratedProfileConnector()
435 if (!implementsInterface(generatedConnector, userConnectorType)) { in validateGeneratedUserConnector()
449 private boolean implementsInterface(TypeElement type, TypeMirror interfaceType) { in implementsInterface() method in EarlyValidator
487 && !implementsInterface(configuration.connector().get(), profileConnectorType)) { in validateConfiguration()
554 && !implementsInterface( in validateCrossProfileType()
/external/doclava/src/com/google/doclava/
DClassInfo.java2023 public boolean implementsInterface(String iface) { in implementsInterface() method in ClassInfo
2028 if (clImplements.implementsInterface(iface)) { in implementsInterface()
2032 if (mSuperclass != null && mSuperclass.implementsInterface(iface)) { in implementsInterface()
2055 return implementsInterface(cl) || extendsClass(cl); in isAssignableTo()
2147 if (!cl.implementsInterface(iface.mQualifiedName)) { in isConsistent()
2153 if (!implementsInterface(iface.mQualifiedName)) { in isConsistent()