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

1 2 3

  /external/chromium_org/ui/views/corewm/
focus_controller.cc 143 aura::Window* focusable = rules_->GetFocusableWindow(window); local
145 focusable ? rules_->GetActivatableWindow(focusable) : NULL;
147 // We need valid focusable/activatable windows in the event we're not clearing
150 if (window && (!focusable || !activatable))
152 DCHECK((focusable && activatable) || !window);
164 if (active_window_ && focusable)
165 DCHECK(active_window_->Contains(focusable));
166 SetFocusedWindow(focusable);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 22 private boolean focusable; field in class:ShadowPopupWindow
38 public void __constructor__(View contentView, int width, int height, boolean focusable) {
42 this.focusable = focusable;
77 public void setFocusable(boolean focusable) {
78 this.focusable = focusable;
83 return focusable;
ShadowView.java 67 protected boolean focusable; field in class:ShadowView
128 * Also sets focusable in touch mode to false if {@code focusable} is false, which is the Android behavior.
130 * @param focusable the new status of the {@code View}'s focusability
133 public void setFocusable(boolean focusable) {
134 this.focusable = focusable;
135 if (!focusable) {
146 * Also sets focusable to true if {@code focusableInTouchMode} is true, which is the Android behavior.
165 return focusable;
    [all...]
  /frameworks/base/core/java/android/view/
FocusFinder.java 26 * The algorithm used for finding the next focusable view in a given direction
62 * @return The next focusable view, or null if none exists.
74 * @return The next focusable view, or null if none exists.
226 View focusable = focusables.get(i); local
229 if (focusable == focused || focusable == root) continue;
232 focusable.getFocusedRect(mOtherRect);
233 root.offsetDescendantRectToMyCoords(focusable, mOtherRect);
237 closest = focusable;
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_android.cc 70 // If it has a focusable child, we definitely can't leave out children.
79 // Focusable nodes with text can drop their children.
145 bool focusable = HasState(blink::WebAXStateFocusable); local
148 focusable = false;
150 return focusable;
  /external/chromium_org/ui/views/
view.h 774 void SetFocusable(bool focusable);
777 bool focusable() const { return focusable_ && enabled_ && visible_; } function in class:views::View
782 // Return whether this view is focusable when the user requires full keyboard
783 // access, even though it may not be normally focusable.
786 // Set whether this view can be made focusable if the user requires
787 // full keyboard access, even though it's not normally focusable.
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiSelector.java 386 * Set the search criteria to match widgets that are focusable.
400 public UiSelector focusable(boolean val) { method in class:UiSelector
    [all...]
  /prebuilts/sdk/16/
uiautomator.jar 
  /prebuilts/sdk/17/
uiautomator.jar 
  /prebuilts/sdk/18/
uiautomator.jar 
  /prebuilts/sdk/19/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /sdk/testapps/jarCheckTests1/app/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/javaProjectTest/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/javaProjectTest/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/libsAndJarTest/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/libsAndJarTest/lib2/libs/
android-support-v4.jar 

Completed in 252 milliseconds

1 2 3