Lines Matching defs:to

10  * Unless required by applicable law or agreed to in writing, software
59 * Various debugging/tracing tools related to {@link View} and the view hierarchy.
81 * This annotation can be used to mark fields and methods to be dumped by
90 * is an int, the value is converted to an Android's resource name.
98 * A mapping can be defined to map int values to specific strings. For
100 * actually mean VISIBLE, INVISIBLE and GONE. A mapping can be used to see
105 * @ViewDebug.IntToString(from = 0, to = "VISIBLE"),
106 * @ViewDebug.IntToString(from = 4, to = "INVISIBLE"),
107 * @ViewDebug.IntToString(from = 8, to = "GONE")
112 * @return An array of int to String mappings
119 * A mapping can be defined to map array indices to specific strings.
120 * A mapping can be used to see human readable values for the indices
125 * @ViewDebug.IntToString(from = 0, to = "INVALID"),
126 * @ViewDebug.IntToString(from = 1, to = "FIRST"),
127 * @ViewDebug.IntToString(from = 2, to = "SECOND")
132 * @return An array of int to String mappings
140 * A flags mapping can be defined to map flags encoded in an integer to
141 * specific strings. A mapping can be used to see human readable values
154 * @return An array of int to String mappings
170 * The prefix to use on child properties when deep export is enabled
187 * Indicates whether or not to format an {@code int} or {@code byte} value as a hex string.
194 * Indicates whether or not the key to value mappings are held in adjacent indices.
196 * Note: Applies only to fields and methods that return String[].
198 * @return true if the key to value mappings are held in adjacent indices.
204 * Defines a mapping from an int value to a String. Such a mapping can be used
205 * in an @ExportedProperty to provide more meaningful values to the end user.
213 * The original int value to map to a String.
220 * The String to use in place of the original int value.
224 String to();
228 * Defines a mapping from a flag to a String. Such a mapping can be used
229 * in an @ExportedProperty to provide more meaningful values to the end user.
237 * The mask to apply to the original value.
244 * The value to compare to the result of:
252 * The String to use in place of the original int value.
259 * Indicates whether to output the flag when the test is true,
260 * or false. Defaults to true.
266 * This annotation can be used to mark fields and methods to be dumped when
274 * When retrieveReturn is true, we need to retrieve second level methods
284 * Allows a View to inject custom children into HierarchyViewer. For example,
285 * WebView uses this to add its internal layer tree as a child to itself
290 * Dumps custom children to hierarchy viewer.
302 * Returns a View to enable grabbing screenshots from custom children
305 * @param className The className of the view to find
306 * @param hashCode The hashCode of the view to find
307 * @return the View to capture from, or null if not found
315 // Maximum delay in ms after which we stop trying to capture a View's drawing
752 Log.w("View", "Failed to create capture bitmap!");
831 * Rather than using reflection, it uses View's encode method to obtain all the properties.
883 * @param resources Resources to resolve attributes from.
884 * @param theme Theme to dump.
903 // attempt to replace reference data with its name
1131 // Try to use the handler provided by the view
1198 methodValue = mapper.to();
1282 fieldValue = mapped.to();
1392 name = mapped.to();
1403 value = mapped.to();
1591 * to the log.
1606 * method invocation is complete. Returns an object equal to the result of the method
1607 * invocation, null if the method is declared to return void