Searched defs:granularity (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java230 * <b>View text traversed at movement granularity</b> - represents the event of traversing the
231 * text of a view at a given granularity. For example, moving to the next word.</br>
240 * <li>{@link #getMovementGranularity()} - Sets the granularity at which a view's text
243 * <li>{@link #getFromIndex()} - The start of the next/previous text at the specified granularity
245 * <li>{@link #getToIndex()} - The end of the next/previous text at the specified granularity
250 * <li>{@link #getMovementGranularity()} - Sets the granularity at which a view's text
657 * Represents the event of traversing the text of a view at a given movement granularity.
922 * Sets the movement granularity that was traversed.
924 * @param granularity The granularity
928 setMovementGranularity(int granularity) argument
[all...]
H A DAccessibilityNodeInfo.java145 * at a given movement granularity. For example, move to the next character,
177 * at a given movement granularity. For example, move to the next character,
324 * Argument for which movement granularity to be used when traversing the node text.
352 * Argument for whether when moving at granularity to extend the selection
417 * Movement granularity bit for traversing the text of a node by character.
422 * Movement granularity bit for traversing the text of a node by word.
427 * Movement granularity bit for traversing the text of a node by line.
432 * Movement granularity bit for traversing the text of a node by paragraph.
437 * Movement granularity bit for traversing the text of a node by page.
2959 * Gets the human readable movement granularity symboli
2964 getMovementGranularitySymbolicName(int granularity) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java9077 public TextSegmentIterator getIteratorForGranularity(int granularity) { argument
9078 switch (granularity) {
9098 return super.getIteratorForGranularity(granularity);
/frameworks/base/core/java/android/view/
H A DView.java8149 final int granularity = arguments.getInt(
8153 return traverseAtGranularity(granularity, true, extendSelection);
8158 final int granularity = arguments.getInt(
8162 return traverseAtGranularity(granularity, false, extendSelection);
8188 private boolean traverseAtGranularity(int granularity, boolean forward, argument
8194 TextSegmentIterator iterator = getIteratorForGranularity(granularity);
8222 sendViewTextTraversedAtGranularityEvent(action, granularity, segmentStart, segmentEnd);
8277 private void sendViewTextTraversedAtGranularityEvent(int action, int granularity, argument
8289 event.setMovementGranularity(granularity);
8296 public TextSegmentIterator getIteratorForGranularity(int granularity) { argument
[all...]

Completed in 107 milliseconds