/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListRetainsFocusAcrossLayoutsTest.java | 41 assertTrue("top button at position 0 should be focused", 50 assertTrue("bottom botton at position 0 should be focused", 56 assertTrue("bottom botton at position 0 should be focused after layout", 64 assertTrue("top botton at position 1 should be focused", 70 assertTrue("top botton at position 1 should be focused after layout", 79 assertTrue("bottom botton at position 1 should be focused", 85 assertTrue("bottom botton at position 1 should be focused after layout",
|
/development/samples/SoftKeyboard/ |
_index.html | 2 This code is focused on simplicity over completeness, so it should in no way be considered
|
/external/webkit/WebCore/manual-tests/ |
onbeforeunload-focused-iframe.html | 7 <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=27481">27481</a> onbeforeunload not called at window close + frame or iframe focused</p> 28 <iframe src="resources/focused-iframe.html"></iframe>
|
/frameworks/base/core/res/res/drawable/ |
tab_indicator.xml | 18 <!-- Non focused states --> 22 <!-- Focused states -->
|
tab_indicator_v4.xml | 18 <!-- Non focused states --> 22 <!-- Focused states -->
|
/packages/apps/Contacts/res/drawable-finger/ |
tab_indicator_bg.xml | 18 <!-- Non focused states --> 30 <!-- Focused states -->
|
/external/webkit/WebCore/page/ |
FocusController.cpp | 59 static inline void dispatchEventsOnWindowAndFocusedNode(Document* document, bool focused) 61 // If we have a focused node we should dispatch blur on it before we blur the window. 62 // If we have a focused node we should dispatch focus on it after we focus the window. 64 if (!focused && document->focusedNode()) 66 document->dispatchWindowEvent(Event::create(focused ? eventNames().focusEvent : eventNames().blurEvent, false, false)); 67 if (focused && document->focusedNode()) 91 // Now that the frame is updated, fire events and update the selection focused states of both frames. 112 void FocusController::setFocused(bool focused) 114 if (isFocused() == focused) 117 m_isFocused = focused; [all...] |
/external/webkit/WebCore/html/ |
HTMLDataGridCellElement.cpp | 54 bool HTMLDataGridCellElement::focused() const function in class:WebCore::HTMLDataGridCellElement 59 void HTMLDataGridCellElement::setFocused(bool focused) 61 setAttribute(focusedAttr, focused ? "" : 0);
|
HTMLDataGridRowElement.cpp | 61 bool HTMLDataGridRowElement::focused() const function in class:WebCore::HTMLDataGridRowElement 66 void HTMLDataGridRowElement::setFocused(bool focused) 68 setAttribute(focusedAttr, focused ? "" : 0);
|
HTMLDataGridCellElement.idl | 33 attribute boolean focused; // Whether or not this cell is currently focused.
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/focus/ |
ListButtonsDiagonalAcrossItemsTest.java | 61 assertTrue("left button focused", mLeftButton.isFocused()); 89 assertTrue("left should still be focused", mLeftButton.isFocused()); 102 assertTrue("center should still be focused", mCenterButton.isFocused());
|
/external/webkit/WebCore/accessibility/gtk/ |
AXObjectCacheAtk.cpp | 58 g_signal_emit_by_name(oldObject->wrapper(), "state-change", "focused", false); 63 g_signal_emit_by_name(newObject->wrapper(), "state-change", "focused", true);
|
/external/webkit/WebKit/android/ |
RenderSkinButton.h | 45 * State to determine which skin to use, i.e. focused or not focused.
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragLayer.java | 62 public boolean dispatchUnhandledMove(View focused, int direction) { 63 return mDragController.dispatchUnhandledMove(focused, direction);
|
/packages/apps/Mms/tests/src/com/android/mms/ui/ |
ComposeMessageActivityTests.java | 168 * @param focused The view that should be focused (all others should not have focus) 171 private void checkFocused(View focused) { 172 assertEquals(focused == mRecipientsView, mRecipientsView.isFocused()); 173 assertEquals(focused == mTextEditor, mTextEditor.isFocused());
|
/development/samples/ApiDemos/tests/src/com/example/android/apis/view/ |
Focus2ActivityTest.java | 81 assertTrue("left button should be focused", mLeftButton.isFocused()); 87 assertTrue("right button should be focused", mRightButton.isFocused()); 109 assertTrue("center button should be focused", mCenterButton.isFocused());
|
/frameworks/base/core/java/android/view/ |
FocusFinder.java | 53 * that currently is focused. 54 * @param root Contains focused 55 * @param focused Has focus now. 59 public final View findNextFocus(ViewGroup root, View focused, int direction) { 61 if (focused != null) { 63 View userSetNextFocus = focused.findUserSetNextFocus(root, direction); 71 // fill in interesting rect from focused 72 focused.getFocusedRect(mFocusedRect); 73 root.offsetDescendantRectToMyCoords(focused, mFocusedRect); 93 return findNextFocus(root, focused, mFocusedRect, direction) [all...] |
/frameworks/base/core/java/android/widget/ |
ImageButton.java | 40 * <p>To indicate the different button states (focused, selected, etc.), you can 42 * orange one for when focused, and a yellow one for when pressed. An easy way to 50 * android:drawable="@drawable/button_focused" /> <!-- focused -->
|
ZoomButton.java | 95 public boolean dispatchUnhandledMove(View focused, int direction) { 97 return super.dispatchUnhandledMove(focused, direction);
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
VerticalFocusSearchTest.java | 49 View findNextFocus(ViewGroup root, View focused, int direction); 55 public View findNextFocus(ViewGroup root, View focused, int direction) { 57 .findNextFocus(root, focused, direction);
|
AdjacentVerticalRectLists.java | 30 * work together to give a newly focused item a hint about the most interesting 31 * rectangle of the previously focused view. The view taking focus can use this
|
/development/apps/Development/src/com/android/development/ |
EnterURL.java | 55 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) 57 super.onFocusChanged(focused, direction, previouslyFocusedRect); 58 if (focused) { 78 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) 80 super.onFocusChanged(focused, direction, previouslyFocusedRect); 81 if (focused) {
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
InternalSelectionFocus.java | 28 * work together to give a newly focused item a hint about the most interesting 29 * rectangle of the previously focused view. The view taking focus can use this
|
InternalSelectionView.java | 42 * the previously focused rectangle. 232 protected void onFocusChanged(boolean focused, int direction, 234 super.onFocusChanged(focused, direction, previouslyFocusedRect); 236 if (focused) {
|
/external/webkit/WebCore/dom/ |
NodeRareData.h | 105 void setFocused(bool focused) { m_isFocused = focused; }
|