Searched defs:focusable (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_android.cc38 // If it has a focusable child, we definitely can't leave out children.
86 bool focusable = HasState(AccessibilityNodeData::STATE_FOCUSABLE); local
89 focusable = false;
91 return focusable;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPopupWindow.java22 private boolean focusable; field in class:ShadowPopupWindow
38 public void __constructor__(View contentView, int width, int height, boolean focusable) { argument
42 this.focusable = focusable;
77 public void setFocusable(boolean focusable) { argument
78 this.focusable = focusable;
83 return focusable;
H A DShadowView.java67 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) { argument
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...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
H A DBrowserAccessibilityManager.java319 boolean enabled, boolean focusable, boolean focused, boolean password,
325 node.setFocusable(focusable);
332 if (focusable) {
317 setAccessibilityNodeInfoBooleanAttributes(AccessibilityNodeInfo node, int virtualViewId, boolean checkable, boolean checked, boolean clickable, boolean enabled, boolean focusable, boolean focused, boolean password, boolean scrollable, boolean selected, boolean visibleToUser) argument
/external/chromium_org/ui/views/
H A Dview.h747 void set_focusable(bool focusable) { focusable_ = focusable; } argument
750 bool focusable() const { return focusable_ && enabled_ && visible_; } function in class:views::View
755 // Return whether this view is focusable when the user requires full keyboard
756 // access, even though it may not be normally focusable.
759 // Set whether this view can be made focusable if the user requires
760 // full keyboard access, even though it's not normally focusable.
1240 // the next and previous focusable views of views pointing to this view are
1374 // Initialize the previous/next focusable views of the specified view relative
1530 // Whether this view is focusable i
[all...]
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dlocation_bar_view.cc677 void LocationBarView::SetLocationEntryFocusable(bool focusable) { argument
680 omnibox_views->set_focusable(focusable);
682 set_focusable(focusable);
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 178 milliseconds