Searched refs:AnnotationHandler (Results 1 – 9 of 9) sorted by relevance
/tools/platform-compat/javatest/com/android/class2nonsdklist/ |
D | CovariantReturnTypeHandlerTest.java | 29 import com.android.annotationvisitor.AnnotationHandler; 75 Map<String, AnnotationHandler> handlerMap = in testReturnTypeWhitelisted() 99 Map<String, AnnotationHandler> handlerMap = in testAnnotatedMemberNotPublicApi() 121 Map<String, AnnotationHandler> handlerMap = in testReturnTypeAlreadyWhitelisted() 146 Map<String, AnnotationHandler> handlerMap = in testAnnotationOnField()
|
D | UnsupportedAppUsageAnnotationHandlerTest.java | 27 import com.android.annotationvisitor.AnnotationHandler; 330 Map<String, AnnotationHandler> handlerMap = in testOverrideMethodWithBridge() 362 Map<String, AnnotationHandler> handlerMap = in testOverridePublicMethodWithBridge() 398 Map<String, AnnotationHandler> handlerMap = in testBridgeMethodsFromInterface() 435 Map<String, AnnotationHandler> handlerMap = in testPublicBridgeExcluded() 463 Map<String, AnnotationHandler> handlerMap = in testVolatileField() 485 Map<String, AnnotationHandler> handlerMap = in testVolatileFieldWrongSignature() 502 Map<String, AnnotationHandler> handlerMap = in testMethodMaxTargetSdk() 522 Map<String, AnnotationHandler> handlerMap = in testMethodNoMaxTargetSdk() 542 Map<String, AnnotationHandler> handlerMap = in testMethodMaxTargetSdkOutOfRange()
|
/tools/platform-compat/java/com/android/class2nonsdklist/ |
D | Class2NonSdkList.java | 20 import com.android.annotationvisitor.AnnotationHandler; 197 private Map<String, AnnotationHandler> createAnnotationHandlers() { in createAnnotationHandlers() 198 Builder<String, AnnotationHandler> builder = ImmutableMap.builder(); in createAnnotationHandlers() 230 private static Builder<String, AnnotationHandler> addRepeatedAnnotationHandlers( in addRepeatedAnnotationHandlers() 231 Builder<String, AnnotationHandler> builder, in addRepeatedAnnotationHandlers() 233 AnnotationHandler handler) { in addRepeatedAnnotationHandlers() 240 Map<String, AnnotationHandler> handlers = createAnnotationHandlers(); in main()
|
D | CovariantReturnTypeHandler.java | 7 import com.android.annotationvisitor.AnnotationHandler; 30 public class CovariantReturnTypeHandler extends AnnotationHandler {
|
D | UnsupportedAppUsageAnnotationHandler.java | 7 import com.android.annotationvisitor.AnnotationHandler; 36 public class UnsupportedAppUsageAnnotationHandler extends AnnotationHandler {
|
/tools/platform-compat/java/com/android/annotationvisitor/ |
D | RepeatedAnnotationHandler.java | 32 public class RepeatedAnnotationHandler extends AnnotationHandler { 36 private final AnnotationHandler mWrappedHandler; 39 public RepeatedAnnotationHandler(String innerAnnotationName, AnnotationHandler wrappedHandler) { in RepeatedAnnotationHandler()
|
D | AnnotationVisitor.java | 38 private final Map<String, AnnotationHandler> mAnnotationHandlers; 49 Map<String, AnnotationHandler> handlers) { in AnnotationVisitor()
|
D | AnnotationHandler.java | 30 public abstract class AnnotationHandler { class
|
/tools/platform-compat/javatest/com/android/annotationvisitor/ |
D | RepeatedAnnotationHandlerTest.java | 68 Map<String, AnnotationHandler> handlerMap = in testRepeated() 79 private static class TestAnnotationHandler extends AnnotationHandler {
|