HomeSort by relevance Sort by last modified time
    Searched defs:focus (Results 1 - 25 of 154) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/test/chromedriver/js/
focus.js 5 function focus(element) { function
6 // Focus the target element in order to send keys to it.
11 // Secondly, we focus the target element.
20 // the body, sometimes we still need to focus the body element for send
22 // - You cannot focus a descendant of a content editable node
30 element.focus();
42 throw new Error('cannot focus element');
  /external/clang/test/CodeGen/
2003-08-21-BinOp-Type-Mismatch.c 7 unsigned int frame, focus; local
8 (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLegendElement.cpp 60 void HTMLLegendElement::focus(bool, FocusType type) function in class:WebCore::HTMLLegendElement
63 Element::focus(true, type);
67 control->focus(false, type);
HTMLLabelElement.cpp 165 element->focus(true, FocusTypeMouse);
186 void HTMLLabelElement::focus(bool, FocusType type) function in class:WebCore::HTMLLabelElement
190 element->focus(true, type);
192 HTMLElement::focus(true, type);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
GoneParentFocusedChildTest.java 17 package android.widget.focus;
23 import android.widget.focus.GoneParentFocusedChild;
27 * have focus. (part of investigation into issue 945150).
42 assertTrue("button should have focus",
LinearLayoutGrid.java 17 package android.widget.focus;
RequestFocus.java 17 package android.widget.focus;
36 // bottom right button starts with the focus.
39 bottomRightButton.setText("I should have focus");
AdjacentVerticalRectLists.java 17 package android.widget.focus;
31 * rectangle of the previously focused view. The view taking focus can use this
35 * that report interesting rects when giving up focus, and use interesting rects
36 * when taking focus to best select the internal row to show as selected.
DescendantFocusability.java 17 package android.widget.focus;
LinearLayoutGridTest.java 17 package android.widget.focus;
24 import android.widget.focus.LinearLayoutGrid;
27 * Tests focus searching between buttons within a grid that are touching, for example,
ListOfButtons.java 17 package android.widget.focus;
ListWithFooterViewAndNewLabelsTest.java 17 package android.widget.focus;
19 import android.widget.focus.ListWithFooterViewAndNewLabels;
FocusAfterRemoval.java 17 package android.widget.focus;
29 * focus should go somewhere).
HorizontalFocusSearchTest.java 17 package android.widget.focus;
19 import android.widget.focus.HorizontalFocusSearch;
27 import static android.widget.focus.VerticalFocusSearchTest.FocusSearchAlg;
28 import static android.widget.focus.VerticalFocusSearchTest.NewFocusSearchAlg;
31 * Tests that focus searching works on a horizontal linear layout of buttons of
FocusAfterRemovalTest.java 17 package android.widget.focus;
19 import android.widget.focus.FocusAfterRemoval;
31 * have focus become invisible or GONE.
70 // if a parent layout becomes GONE when one of its children has focus,
71 // make sure the focus moves to something visible (bug 827087)
79 assertTrue("focus should jump to visible button",
96 assertTrue("focus should jump to visible button",
111 assertTrue("focus should jump to visible button",
127 assertTrue("focus should jump to visible button",
FocusChangeWithInterestingRectHintTest.java 17 package android.widget.focus;
19 import android.widget.focus.AdjacentVerticalRectLists;
32 * rectangle of the previously focused view. The view taking focus can use this
36 * that report interesting rects when giving up focus, and use interesting rects
37 * when taking focus to best select the internal row to show as selected.
GoneParentFocusedChild.java 17 package android.widget.focus;
29 * GONE and one of its children has focus; the activity should get
  /packages/experimental/TestBack/src/foo/bar/testback/
TestBackService.java 50 AccessibilityNodeInfo focus = root.findFocus( local
52 if (focus != null) {
53 if ((focus.getActions() & 0x00004000) /* COPY*/ != 0) {
54 final boolean performed = focus.performAction(0x00004000);
57 focus.recycle();
66 AccessibilityNodeInfo focus = root.findFocus( local
68 if (focus != null) {
69 if ((focus.getActions() & 0x00008000) /* PASTE*/ != 0) {
70 final boolean performed = focus.performAction(0x00008000);
73 focus.recycle()
82 AccessibilityNodeInfo focus = root.findFocus( local
98 AccessibilityNodeInfo focus = root.findFocus( local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
webtreemap.js 42 // Callback for embedding page to update after a focus.
45 function focus(tree) { function
81 focus(focused.parent);
83 focus(tree);
  /external/chromium_org/third_party/webtreemap/src/
webtreemap.js 26 function focus(tree) { function
70 focus(focused.parent);
72 focus(tree);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
ListButtonsDiagonalAcrossItemsTest.java 17 package android.widget.listview.focus;
30 * Test that ListView will override default behavior of focus searching to
71 assertEquals("focus search right from left button should be center button",
74 assertEquals("focus search right from center button should be right button",
77 assertEquals("focus search left from centr button should be left button",
ListHorizontalFocusWithinItemWinsTest.java 17 package android.widget.listview.focus;
54 assertEquals("global focus search to right from top left is bottom middle",
57 assertEquals("global focus search to left from top right is bottom middle",
ListWithEditTextHeaderTest.java 17 package android.widget.listview.focus;
48 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
55 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
64 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 38 int focus; member in struct:SceneModesEntry
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
input_event.cc 116 /// out of focus). Clicking back inside the instance's
118 /// (the NaCl instance is back in focus). The default is
119 /// that the instance is out of focus.
120 void DidChangeFocus(bool focus) {
122 stream << "DidChangeFocus:" << " focus:" << focus; local

Completed in 461 milliseconds

1 2 3 4 5 6 7