Home | History | Annotate | Download | only in view

Lines Matching defs:ExportedProperty

93     public @interface ExportedProperty {
110 * {@literal @}ViewDebug.ExportedProperty(mapping = {
130 * {@literal @}ViewDebug.ExportedProperty(indexMapping = {
151 * {@literal @}ViewDebug.ExportedProperty(flagMapping = {
213 * in an @ExportedProperty to provide more meaningful values to the end user.
215 * @see android.view.ViewDebug.ExportedProperty
237 * in an @ExportedProperty to provide more meaningful values to the end user.
239 * @see android.view.ViewDebug.ExportedProperty
337 private static HashMap<AccessibleObject, ExportedProperty> sAnnotations;
1033 sAnnotations = new HashMap<AccessibleObject, ExportedProperty>(512);
1048 if (field.getType() != null && field.isAnnotationPresent(ExportedProperty.class)) {
1051 sAnnotations.put(field, field.getAnnotation(ExportedProperty.class));
1068 sAnnotations = new HashMap<AccessibleObject, ExportedProperty>(512);
1091 method.isAnnotationPresent(ExportedProperty.class) &&
1095 sAnnotations.put(method, method.getAnnotation(ExportedProperty.class));
1184 final ExportedProperty property = sAnnotations.get(method);
1269 final ExportedProperty property = sAnnotations.get(field);
1379 ExportedProperty property, int[] array, String prefix, String suffix)