/external/chromium/chrome/common/extensions/docs/examples/ |
README.txt | 4 * api/ - trivial extensions focused on a single API package
|
/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
|
/packages/apps/Launcher2/res/drawable/ |
tab_widget_indicator_selector.xml | 18 <!-- Non focused states --> 21 <!-- Focused states --> 26 <!-- Non focused states --> 30 <!-- Focused states -->
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/entry/ |
entry.edc | 44 set_state(PART:"entry", "focused", 0.0); 80 state: "focused" 0.0; 89 inherit: "focused" 0.0; 93 inherit: "focused" 0.0; 139 name: "focused"; 140 signal: "focused";
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/field/ |
search_field.edc | 42 set_state(PART:"search_field", "focused", 0.0); 71 state: "focused" 0.0; 80 inherit: "focused" 0.0; 88 inherit: "focused" 0.0; 123 name: "focused"; 124 signal: "focused";
|
/external/webkit/Source/WebCore/html/ |
HTMLDataGridRowElement.cpp | 58 bool HTMLDataGridRowElement::focused() const function in class:WebCore::HTMLDataGridRowElement 63 void HTMLDataGridRowElement::setFocused(bool focused) 65 setAttribute(focusedAttr, focused ? "" : 0);
|
HTMLDataGridCellElement.cpp | 58 bool HTMLDataGridCellElement::focused() const function in class:WebCore::HTMLDataGridCellElement 63 void HTMLDataGridCellElement::setFocused(bool focused) 65 setAttribute(focusedAttr, focused ? "" : 0);
|
/developers/samples/android/ui/actionbarcompat/Styled/Styled/src/main/res/drawable/ |
tab_indicator_ab.xml | 26 <!-- Non focused states --> 32 <!-- Focused states --> 38 <!-- Pressed & Non-focused --> 44 <!-- Pressed & focused states -->
|
/external/clang/tools/ |
CMakeLists.txt | 12 # to keep the primary Clang repository small and focused.
|
/external/webkit/Source/WebCore/manual-tests/qt/ |
numpad-enter-key.html | 18 <p>Press the numpad Enter key while the input box below is focused:</p>
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/cancel/ |
search_cancel.edc | 41 set_state(PART:"cancel_button", "focused", 0.0); 75 state: "focused" 0.0; 103 name: "focused"; 104 signal: "focused";
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/decoration/ |
search_decoration.edc | 41 set_state(PART:"decoration", "focused", 0.0); 76 state: "focused" 0.0; 104 name: "focused"; 105 signal: "focused";
|
/frameworks/base/core/res/res/drawable/ |
tab_indicator_ab_holo.xml | 18 <!-- Non focused states --> 22 <!-- Focused states --> 27 <!-- Non focused states --> 31 <!-- Focused states -->
|
tab_indicator_holo.xml | 18 <!-- Non focused states --> 22 <!-- Focused states --> 27 <!-- Non focused states --> 31 <!-- Focused states -->
|
tab_indicator.xml | 18 <!-- Non focused states --> 22 <!-- Focused states -->
|
tab_indicator_v4.xml | 18 <!-- Non focused states --> 22 <!-- Focused states -->
|
/frameworks/support/v7/appcompat/res/drawable/ |
abc_tab_indicator_ab_holo.xml | 18 <!-- Non focused states --> 22 <!-- Focused states --> 27 <!-- Non focused states --> 31 <!-- Focused states -->
|
/cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
AccessibilityFocusAndInputFocusSyncTest.java | 78 // Get the root which is only accessibility focused. 79 AccessibilityNodeInfo focused = getInstrumentation().getUiAutomation() local 81 assertNull(focused); 109 // Check if the node info is focused. 137 // Check if the node info is focused. 157 // Check if the node info is not focused. 163 // Get the first not focused edit text. 185 // Get the second not focused edit text.
|
/external/chromium/chrome/browser/ui/cocoa/ |
focus_tracker.h | 10 // this class snapshots the currently focused view when it is 21 // method snapshots the currently focused view.
|
/external/chromium/chrome/browser/ui/views/tab_contents/ |
native_tab_contents_container_gtk.cc | 49 // If we are focused, we need to pass the focus to the new RenderViewHost. 62 // Called when the tab contents native view gets focused (typically through a 63 // user click). We make ourself the focused view, so the focus is restored 112 // and the RenderView would not get notified it got focused. 113 // By clearing the focused view before-hand, we ensure OnFocus() will be
|
native_tab_contents_container_win.cc | 33 // that the BrowserContainer is the focused view when the focus is on the 66 // If we are focused, we need to pass the focus to the new RenderViewHost. 112 // invoked when RequestFocus() is called on an already focused view. 113 // The TabContentsContainer is the view focused when the TabContents has
|
/frameworks/base/core/java/android/view/ |
FocusFinder.java | 58 * that currently is focused. 59 * @param root Contains focused. Cannot be null. 60 * @param focused Has focus now. 64 public final View findNextFocus(ViewGroup root, View focused, int direction) { 65 return findNextFocus(root, focused, null, direction); 81 private View findNextFocus(ViewGroup root, View focused, Rect focusedRect, int direction) { 83 if (focused != null) { 84 next = findNextUserSpecifiedFocus(root, focused, direction); 94 next = findNextFocus(root, focused, focusedRect, direction, focusables); 102 private View findNextUserSpecifiedFocus(ViewGroup root, View focused, int direction) [all...] |
/external/webkit/Source/WebCore/accessibility/gtk/ |
AXObjectCacheAtk.cpp | 71 // focused object and its associated list object, as per previous 110 // Old focused object just lost focus, so emit the events. 113 g_signal_emit_by_name(axOldFocusedObject, "state-change", "focused", false); 121 g_signal_emit_by_name(axItem, "state-change", "focused", isSelected); 142 g_signal_emit_by_name(axObject, "state-change", "focused", true); 197 g_signal_emit_by_name(oldObject->wrapper(), "state-change", "focused", false); 202 g_signal_emit_by_name(newObject->wrapper(), "state-change", "focused", true);
|
/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());
|