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

1 2 3

  /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;
38 // bottom right button starts with the focus.
41 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
ListWithFooterViewAndNewLabels.java 17 package android.widget.focus;
RequestFocusTest.java 17 package android.widget.focus;
19 import android.widget.focus.RequestFocus;
31 * have focus become invisible or GONE.
82 assertTrue("Focus should move to bottom left", mBottomLeftButton.hasFocus());
VerticalFocusSearchTest.java 17 package android.widget.focus;
19 import android.widget.focus.VerticalFocusSearch;
30 * Tests that focus searching works on a vertical linear layout of buttons of
104 assertNull("going left should have no next focus",
125 assertNull("going right should have no next focus",
139 assertNull("going down from bottom button should have no next focus.",
142 assertNull("going left from bottom button should have no next focus.",
145 assertNull("going right from bottom button should have no next focus.",
  /external/webkit/WebCore/html/
HTMLLegendElement.cpp 99 void HTMLLegendElement::focus(bool) function in class:WebCore::HTMLLegendElement
102 Element::focus();
106 element->focus(false);
HTMLLabelElement.cpp 121 control->focus();
131 void HTMLLabelElement::focus(bool) function in class:WebCore::HTMLLabelElement
135 element->focus();
  /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;
47 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
54 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
63 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
AdjacentListsWithAdjacentISVsInsideTest.java 17 package android.widget.listview.focus;
  /external/webkit/JavaScriptCore/profiler/
Profile.cpp 68 void Profile::focus(const ProfileNode* profileNode) function in class:JSC::Profile
76 processChildren = currentNode->focus(callIdentifier);
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 89 static JSValueRef focus(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* /*exception*/) function in namespace:WebCore
101 profile->focus(static_cast<ProfileNode*>(JSObjectGetPrivate(const_cast<JSObjectRef>(arguments[0]))));
151 { "focus", focus, kJSPropertyAttributeNone },
  /external/skia/src/views/
SkWindow.cpp 184 SkView* focus = this->getFocusView();
185 if (focus == NULL)
186 focus = this;
190 return focus->doEvent(evt);
201 // send an event to the focus-view
203 SkView* focus = this->getFocusView(); local
204 if (focus == NULL)
205 focus = this;
209 if (focus->doEvent(evt))
230 //send an event to the focus-vie
232 SkView* focus = this->getFocusView(); local
    [all...]

Completed in 1032 milliseconds

1 2 3