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

/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DDisplayModifier.java409 private static boolean stepInternal(boolean forward) { argument
413 mIndices[modifierMapIndex] += (forward ? 1 : -1);
419 mIndices[modifierMapIndex] = (forward ? 0 : map.size() - 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.java204 public void findNext(boolean forward); argument
H A DWebView.java59 * web pages and includes methods to navigate forward and backward
709 * @return the same copy of the back/forward list used to save the state. If
758 * pages, create a back/forward list, etc.) there may be undesirable
763 * @return the restored back/forward list or null if restoreState failed
966 * Gets whether this WebView has a forward history item.
968 * @return true iff this Webview has a forward history item
976 * Goes forward in the history of this WebView.
985 * Gets whether the page can go back or forward the given
999 * if forward.
1001 * @param steps the number of steps to take back or forward i
1450 findNext(boolean forward) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3152 // Clear the forward bit. We can just do this directly, since
3395 forward(q);
3411 forward(q);
3417 protected void forward(QueuedInputEvent q) { method in class:ViewRootImpl.InputStage
3426 forward(q);
3484 * and finish or forward it later.
3509 * asynchronously. The caller is responsible for calling {@link #forward}
3518 protected void forward(QueuedInputEvent q) { method in class:ViewRootImpl.AsyncInputStage
3525 super.forward(q);
3558 super.forward(
[all...]
H A DView.java6953 * forward focus change internally.
6969 * {@link View} that it wishes to forward the request to.
7440 private boolean traverseAtGranularity(int granularity, boolean forward, argument
7452 current = forward ? 0 : text.length();
7454 final int[] range = forward ? iterator.following(current) : iterator.preceding(current);
7465 selectionStart = forward ? segmentStart : segmentEnd;
7467 selectionEnd = forward ? segmentEnd : segmentStart;
7469 selectionStart = selectionEnd= forward ? segmentEnd : segmentStart;
7472 final int action = forward ? AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY

Completed in 363 milliseconds