HomeSort by relevance Sort by last modified time
    Searched refs:focused (Results 76 - 100 of 168) sorted by null

1 2 34 5 6 7

  /frameworks/base/core/java/android/view/accessibility/
AccessibilityNodeInfo.java 441 * @return The node info of the focused view or null.
908 * Gets whether this node is focused.
910 * @return True if the node is focused.
917 * Sets whether this node is focused.
924 * @param focused True if the node is focused.
928 public void setFocused(boolean focused) {
929 setBooleanProperty(PROPERTY_FOCUSED, focused);
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewProvider.java 317 public void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect);
WebView.java     [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 331 // Let the focused view and/or our descendants get the key first
    [all...]
ScrollView.java 352 // Let the focused view and/or our descendants get the key first
    [all...]
SearchView.java 473 * Sets a listener to inform when a suggestion is focused or clicked.
817 boolean focused = mQueryTextView.hasFocus();
818 mSearchPlate.getBackground().setState(focused ? FOCUSED_STATE_SET : EMPTY_STATE_SET);
819 mSubmitArea.getBackground().setState(focused ? FOCUSED_STATE_SET : EMPTY_STATE_SET);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageComposeTests.java     [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java 325 // Let the focused view and/or our descendants get the key first
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 852 public boolean dispatchUnhandledMove(View focused, int direction) {
864 return super.dispatchUnhandledMove(focused, direction);
    [all...]
DragController.java 467 public boolean dispatchUnhandledMove(View focused, int direction) {
468 return mMoveTarget != null && mMoveTarget.dispatchUnhandledMove(focused, direction);
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 64 // focusView] (to get the currently focused view) and then calls an NSRect-
66 // no focused view (as there won't be if the destination is a context), the rect
266 // Focused state
268 bool focused = states & FocusState;
269 if (focused != oldFocused)
270 [cell setShowsFirstResponder:focused];
  /external/webkit/Source/WebCore/platform/mac/
ThemeMac.mm 153 // Focused state
155 bool focused = states & FocusState;
156 if (focused != oldFocused)
157 [cell setShowsFirstResponder:focused];
  /frameworks/base/core/java/android/view/
ViewGroup.java 568 public void requestChildFocus(View child, View focused) {
588 mParent.requestChildFocus(this, focused);
600 // shortcut: don't report a new focusable view if we already are focused
605 // the focused view and make sure it wasn't FOCUS_AFTER_DESCENDANTS and
630 * @param focused The view that currently has focus
634 public View focusSearch(View focused, int direction) {
639 return FocusFinder.getInstance().findNextFocus(this, focused, direction);
641 return mParent.focusSearch(focused, direction);
738 public boolean dispatchUnhandledMove(View focused, int direction) {
740 mFocused.dispatchUnhandledMove(focused, direction)
768 View focused = mFocused; local
3675 final View focused = mFocused; local
3759 final View focused = mFocused; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AutoCompleteTextViewTest.java 716 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
717 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 193 // when the search box isn't focused.
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 633 void PluginView::setFocus(bool focused)
635 Widget::setFocus(focused);
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
MultiPaneChallengeLayout.java 163 public void requestChildFocus(View child, View focused) {
169 super.requestChildFocus(child, focused);
PagedView.java     [all...]
  /prebuilts/sdk/16/
uiautomator.jar 
  /external/webkit/Source/WebCore/html/
HTMLTextAreaElement.cpp 198 // If a given text area can be focused at all, then it will always be keyboard focusable.
258 unsigned selectionLength = focused() ? numGraphemeClusters(plainText(document()->frame()->selection()->selection().toNormalizedRange().get())) : 0;
  /external/webkit/Source/WebCore/platform/efl/
WidgetEfl.cpp 203 void Widget::setFocus(bool focused)
  /frameworks/base/core/java/android/app/
NativeActivity.java 97 private native void onWindowFocusChangedNative(int handle, boolean focused);
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java 398 // Let the focused view and/or our descendants get the key first
    [all...]
  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 189 void PluginView::setFocus(bool focused)
192 if (focused)
195 Widget::setFocus(focused);
    [all...]
  /external/webkit/Source/WebCore/plugins/win/
PluginViewWin.cpp 470 void PluginView::setFocus(bool focused)
472 if (focused && platformPluginWidget())
475 Widget::setFocus(focused);
756 // clear it to prevent the web view window from being focused because that can

Completed in 2178 milliseconds

1 2 34 5 6 7