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.
933 * Sets the movement granularity that was traversed.
935 * @param granularity The granularity
939 setMovementGranularity(int granularity) argument
[all...]
H A DAccessibilityNodeInfo.java147 * at a given movement granularity. For example, move to the next character,
179 * at a given movement granularity. For example, move to the next character,
328 * Argument for which movement granularity to be used when traversing the node text.
362 * Argument for whether when moving at granularity to extend the selection
463 * Movement granularity bit for traversing the text of a node by character.
468 * Movement granularity bit for traversing the text of a node by word.
473 * Movement granularity bit for traversing the text of a node by line.
478 * Movement granularity bit for traversing the text of a node by paragraph.
483 * Movement granularity bit for traversing the text of a node by page.
3046 * Gets the human readable movement granularity symboli
3051 getMovementGranularitySymbolicName(int granularity) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java9730 public TextSegmentIterator getIteratorForGranularity(int granularity) { argument
9731 switch (granularity) {
9751 return super.getIteratorForGranularity(granularity);
/frameworks/base/core/java/android/view/
H A DView.java8965 final int granularity = arguments.getInt(
8969 return traverseAtGranularity(granularity, true, extendSelection);
8974 final int granularity = arguments.getInt(
8978 return traverseAtGranularity(granularity, false, extendSelection);
9017 private boolean traverseAtGranularity(int granularity, boolean forward, argument
9023 TextSegmentIterator iterator = getIteratorForGranularity(granularity);
9051 sendViewTextTraversedAtGranularityEvent(action, granularity, segmentStart, segmentEnd);
9106 private void sendViewTextTraversedAtGranularityEvent(int action, int granularity, argument
9118 event.setMovementGranularity(granularity);
9125 public TextSegmentIterator getIteratorForGranularity(int granularity) { argument
[all...]

Completed in 112 milliseconds