Searched refs:PropertyInfo (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | ViewDebug.java | 337 private abstract static class PropertyInfo<T extends Annotation, class in ViewDebug 348 PropertyInfo(Class<T> property, R member, Class<?> returnType) { in PropertyInfo() method in ViewDebug.PropertyInfo 357 static <T extends Annotation> PropertyInfo<T, ?> forMethod(Method method, in forMethod() 373 PropertyInfo info = new MethodPI(method, property); in forMethod() 379 static <T extends Annotation> PropertyInfo<T, ?> forField(Field field, Class<T> property) { in forField() 388 private static class MethodPI<T extends Annotation> extends PropertyInfo<T, Method> { 400 private static class FieldPI<T extends Annotation> extends PropertyInfo<T, Field> { 429 private static HashMap<Class<?>, PropertyInfo<ExportedProperty, ?>[]> sExportProperties; 430 private static HashMap<Class<?>, PropertyInfo<CapturedViewProperty, ?>[]> 1376 for (PropertyInfo<ExportedProperty, ?> info : getExportedProperties(klass)) { [all …]
|