HomeSort by relevance Sort by last modified time
    Searched refs:focused (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/webkit/Source/WebCore/html/
HTMLDataGridRowElement.idl 32 attribute boolean focused; // Whether or not the row is the current object in the tree for keyboard navigation (or as the principal item of a multiple selection).
HTMLDataGridRowElement.cpp 58 bool HTMLDataGridRowElement::focused() const function in class:WebCore::HTMLDataGridRowElement
63 void HTMLDataGridRowElement::setFocused(bool focused)
65 setAttribute(focusedAttr, focused ? "" : 0);
HTMLDataGridCellElement.idl 33 attribute boolean focused; // Whether or not this cell is currently focused.
HTMLDataGridCellElement.cpp 58 bool HTMLDataGridCellElement::focused() const function in class:WebCore::HTMLDataGridCellElement
63 void HTMLDataGridCellElement::setFocused(bool focused)
65 setAttribute(focusedAttr, focused ? "" : 0);
HTMLDataGridCellElement.h 42 bool focused() const;
HTMLDataGridRowElement.h 42 bool focused() const;
TextFieldInputType.cpp 62 if (!element()->focused())
88 if (element()->disabled() || element()->readOnly() || !element()->focused())
  /frameworks/base/core/java/android/text/method/
TransformationMethod.java 44 boolean focused, int direction,
AllCapsTransformationMethod.java 50 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction,
  /sdk/chimpchat/src/com/android/chimpchat/core/
IChimpView.java 69 * Obtain the focused status of this view.
74 * Set the focused status of this view.
76 void setFocused(boolean focused);
  /external/webkit/Source/WebCore/platform/chromium/
WidgetChromium.cpp 69 void Widget::setFocus(bool focused)
  /external/webkit/Source/WebCore/platform/win/
WidgetWin.cpp 83 void Widget::setFocus(bool focused)
  /frameworks/base/core/java/android/view/
FocusFinder.java 56 * that currently is focused.
57 * @param root Contains focused
58 * @param focused Has focus now.
62 public final View findNextFocus(ViewGroup root, View focused, int direction) {
64 if (focused != null) {
66 View userSetNextFocus = focused.findUserSetNextFocus(root, direction);
74 // fill in interesting rect from focused
75 focused.getFocusedRect(mFocusedRect);
76 root.offsetDescendantRectToMyCoords(focused, mFocusedRect);
98 return findNextFocus(root, focused, mFocusedRect, direction)
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
WidgetGtk.cpp 55 void Widget::setFocus(bool focused)
57 if (focused)
  /external/webkit/Source/WebCore/platform/haiku/
WidgetHaiku.cpp 83 void Widget::setFocus(bool focused)
85 if (focused) {
  /external/webkit/Source/WebCore/platform/wx/
WidgetWx.cpp 49 void Widget::setFocus(bool focused)
51 if (focused) {
  /frameworks/base/core/java/android/widget/
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);
  /external/webkit/Source/WebCore/platform/qt/
WidgetQt.cpp 74 void Widget::setFocus(bool focused)
  /external/webkit/Source/WebCore/wml/
WMLAnchorElement.cpp 58 else if (event->type() == eventNames().keydownEvent && event->isKeyboardEvent() && focused())
  /external/webkit/Source/WebCore/dom/
NodeRareData.h 124 void setFocused(bool focused) { m_isFocused = focused; }
  /packages/apps/Contacts/src/com/android/contacts/dialpad/
DigitsEditText.java 38 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
39 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
EmbeddedWidget.cpp 136 void EmbeddedWidget::setFocus(bool focused)
138 if (m_window && focused)
141 Widget::setFocus(focused);
188 // clear it to prevent the web view window from being focused because that can
  /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) {
  /cts/tests/src/android/widget/cts/
MockTextView.java 134 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
135 super.onFocusChanged(focused, direction, previouslyFocusedRect);

Completed in 480 milliseconds

1 2 3 4 5 6