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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/manual-tests/resources/
focused-iframe.html 3 This frame should get the focus.
8 document.getElementById("box").focus();
  /external/webkit/WebCore/manual-tests/
focusringcolor-change-on-theme-change.html 1 <input value="Click on me! Focus ring color around this input element should change." style="width:100%">
4 <li>Change the system focus ring color.<br>On OS X you can do this by going to System Preferences-&gt;Appearance and selecting another value in the Appearance popup menu.</li>
8 <p>The tests passes if the focus ring around the input element changes color.</p>
focus-select-when-clicked.html 7 <p><b>BUG ID:</b> <a href="rdar://problem/4011544">4011544</a> selecting an item from a select menu with the mouse doesn't place the focus on the menu</p>
11 2. Verify that a blue focus ring is drawn around the pop-up menu. <br>
12 3. Press tab, and verify that focus moves to TEXT AREA 2 <br></p>
15 Blue focus ring is drawn around the pop-up menu when clicked, then focus moves to TEXT AREA 2 after pressing tab.</p>
18 No blue focus ring drawn around the pop-up menu when clicked, or after selecting OPTION 1 from the list. After selecting option 1 and pressing tab, focus will land on the first focusable element on the page.
onsearch-enter.html 4 <p>This tests that onsearch handlers for search fields are invoked correctly when pressing enter. To test this in Safari, focus the search field and press enter. The text below should change to SUCCESS.</p>
tabbing-input-google.html 11 2) Hit tab until focus cycles through the text fields in the page, and comes back to the Google field.<br>
16 The first text field in the page should have focus.
20 The first text field in the page does not have focus.
  /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...]
SkView.cpp 171 SkView* focus = NULL; local
174 if (view->onGetFocusView(&focus))
177 return focus;
191 Try to give focus to this view, or its children
201 SkView* child, *focus; local
203 if ((focus = child->acceptFocus(dir)) != NULL)
204 return focus;
209 SkView* child, *focus; local
211 if ((focus = child->acceptFocus(dir)) != NULL)
212 return focus;
223 SkView* focus = this->getFocusView(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/touchmode/
TouchModeFocusableTest.java 31 * Some views, like edit texts, can keep and gain focus even when in touch mode.
53 assertTrue("edit text should have focus", mEditText.isFocused());
61 assertTrue("edit text should still have focus", mEditText.isFocused());
68 assertTrue("button should have focus", mButton.isFocused());
72 assertTrue("clicking edit text should have given it focus", mEditText.isFocused());
76 // entering touch mode takes focus away from the currently focused item if it
82 assertTrue("button should have focus",
87 assertNull("nothing should have focus", getActivity().getCurrentFocus());
88 assertFalse("layout should not have focus",
TouchModeFocusChangeTest.java 30 * Make sure focus isn't kept by buttons when entering touch mode.
33 * top most focusable gets focus.
55 assertTrue("top button should have focus", mFirstButton.isFocused());
67 assertNull("activity shouldn't have focus", mActivity.getCurrentFocus());
68 assertFalse("linear layout should not have focus",
80 assertFalse("button should not have focus when touched",
85 assertTrue("first button (the top most focusable) should have gained focus",
FocusableInTouchModeClickTest.java 46 assertTrue("click should give focusable in touch mode focus",
48 assertFalse("getting focus should result in no on click",
60 assertFalse("button shouldn't have focus", getActivity().getButton2().isFocused());
StartInTouchWithViewInFocusTest.java 50 assertTrue("edit text is focusable in touch mode, should have focus", mEditText.isFocused());
57 assertTrue("should have given focus to next view", mButton.isFocused());
64 assertTrue("edit text should still have focus", mEditText.isFocused());
  /frameworks/base/include/camera/
CameraParameters.h 206 // Current focus mode. This will not be empty. Applications should call
207 // CameraHardwareInterface.autoFocus to start the focus if focus mode is
211 // Supported focus modes.
262 // be in focus. The object is sharpest at the optimal focus distance. The
263 // depth of field is the far focus distance minus near focus distance.
265 // Focus distances may change after starting auto focus, canceling aut
    [all...]
  /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",
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",
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.",
RequestFocus.java 17 package android.widget.focus;
38 // bottom right button starts with the focus.
41 bottomRightButton.setText("I should have focus");
ListOfButtonsTest.java 17 package android.widget.focus;
19 import android.widget.focus.ListOfButtons;
31 * Tests that focus works as expected when navigating into and out of
92 assertFalse("button at top should have focus back",
116 // pressing down again shouldn't matter; make sure last item keeps focus
136 assertTrue("button at top should have focus back",
  /frameworks/base/media/java/android/media/
IAudioFocusDispatcher.aidl 20 * AIDL for the AudioService to signal audio focus listeners of focus updates.
  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
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());
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",
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ITableFocusListener.java 22 * An object listening to focus change in Table objects.<br>
23 * For application not relying on a RCP to provide menu changes based on focus,
24 * this class allows to get monitor the focus change of several Table widget
TablePanel.java 39 * gets or loses focus.
60 * Sets up a Table object to notify the global Table Focus listener when it
61 * gets or loses the focus.
104 // add the focus listener on the table to notify the global listener
117 * Sets up a Table object to notify the global Table Focus listener when it
118 * gets or loses the focus.<br>
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
TallTextAboveButtonTest.java 49 assertTrue("scroll view should have focus (because nothing else focusable "
60 assertTrue("button should have gained focus as it was scrolled completely "
64 assertTrue("scroll view should have focus, but " + getActivity().getScrollView().findFocus() + " does instead",
71 assertTrue("button should have focus", mBottomButton.isFocused());
73 assertTrue("scroll view should have focus, but " + getActivity().getScrollView().findFocus() + " does instead",
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesCloseTest.java 54 assertTrue("first button of first list item should have focus",
70 assertTrue("focus should have moved to second button of first item",
79 assertTrue("focus should have moved back to first button of first item",
95 assertTrue("first button of second item should have focus",
106 assertTrue("first button of second item should have focus",
112 assertTrue("second button of first item should have focus",

Completed in 254 milliseconds

1 2 3 4 5 6 7 8 91011>>