Searched defs:forward (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DDisplayModifier.java439 private static boolean stepInternal(boolean forward) { argument
443 mIndices[modifierMapIndex] += (forward ? 1 : -1);
449 mIndices[modifierMapIndex] = (forward ? 0 : map.size() - 1);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsView.java356 public void focusNextTask(boolean forward) { argument
363 stackView.focusNextTask(forward, true);
H A DTaskStackView.java505 public void focusNextTask(boolean forward, boolean animateFocusedState) { argument
510 int direction = (forward ? -1 : 1);
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py288 # adb forward <source> <destination>
289 def forward(self, source, destination): member in class:ADB
290 self._call_adb(*["forward", source, destination])
473 self.adb.forward("tcp:" + str(self.jdwp_port), \
501 self.adb.forward("tcp:" + str(self.gdbserver_port), \
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java207 public void findNext(boolean forward); argument
H A DWebView.java60 * web pages and includes methods to navigate forward and backward
764 * @return the same copy of the back/forward list used to save the state. If
813 * pages, create a back/forward list, etc.) there may be undesirable
818 * @return the restored back/forward list or null if restoreState failed
1033 * Gets whether this WebView has a forward history item.
1035 * @return true iff this Webview has a forward history item
1043 * Goes forward in the history of this WebView.
1052 * Gets whether the page can go back or forward the given
1066 * if forward.
1068 * @param steps the number of steps to take back or forward i
1545 findNext(boolean forward) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3296 // Clear the forward bit. We can just do this directly, since
3540 forward(q);
3556 forward(q);
3562 protected void forward(QueuedInputEvent q) { method in class:ViewRootImpl.InputStage
3571 forward(q);
3639 * and finish or forward it later.
3664 * asynchronously. The caller is responsible for calling {@link #forward}
3673 protected void forward(QueuedInputEvent q) { method in class:ViewRootImpl.AsyncInputStage
3680 super.forward(q);
3713 super.forward(
[all...]
H A DView.java1110 public @interface FocusRealDirection {} // Like @FocusDirection, but without forward/backward
7632 * forward focus change internally.
7648 * {@link View} that it wishes to forward the request to.
8188 private boolean traverseAtGranularity(int granularity, boolean forward, argument
8200 current = forward ? 0 : text.length();
8202 final int[] range = forward ? iterator.following(current) : iterator.preceding(current);
8213 selectionStart = forward ? segmentStart : segmentEnd;
8215 selectionEnd = forward ? segmentEnd : segmentStart;
8217 selectionStart = selectionEnd= forward ? segmentEnd : segmentStart;
8220 final int action = forward
[all...]

Completed in 1276 milliseconds