Home | History | Annotate | Download | only in accessibility

Lines Matching refs:granularity

145      * 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.
2845 * Gets the human readable movement granularity symbolic name.
2847 * @param granularity The granularity.
2850 private static String getMovementGranularitySymbolicName(int granularity) {
2851 switch (granularity) {
2863 throw new IllegalArgumentException("Unknown movement granularity: " + granularity);
2918 final int granularity = 1 << Integer.numberOfTrailingZeros(granularities);
2919 granularities &= ~granularity;
2920 builder.append(getMovementGranularitySymbolicName(granularity));
3046 * at a given movement granularity. For example, move to the next character,
3093 * at a given movement granularity. For example, move to the next character,