Home | History | Annotate | Download | only in accessibility

Lines Matching refs:granularity

167      * at a given movement granularity. For example, move to the next character,
199 * at a given movement granularity. For example, move to the next character,
349 * Argument for which movement granularity to be used when traversing the node text.
383 * Argument for whether when moving at granularity to extend the selection
534 * Movement granularity bit for traversing the text of a node by character.
539 * Movement granularity bit for traversing the text of a node by word.
544 * Movement granularity bit for traversing the text of a node by line.
549 * Movement granularity bit for traversing the text of a node by paragraph.
554 * Movement granularity bit for traversing the text of a node by page.
3594 * Gets the human readable movement granularity symbolic name.
3596 * @param granularity The granularity.
3599 private static String getMovementGranularitySymbolicName(int granularity) {
3600 switch (granularity) {
3612 throw new IllegalArgumentException("Unknown movement granularity: " + granularity);
3669 final int granularity = 1 << Integer.numberOfTrailingZeros(granularities);
3670 granularities &= ~granularity;
3671 builder.append(getMovementGranularitySymbolicName(granularity));
3817 * at a given movement granularity. For example, move to the next character,
3863 * at a given movement granularity. For example, move to the next character,