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

1 2 3 4 5 6 7

  /external/webkit/WebCore/css/
svg.css 68 :focus {
69 outline: auto 5px -webkit-focus-ring-color
html.css 585 :focus {
586 outline: auto 5px -webkit-focus-ring-color
589 /* Read-only text fields do not show a focus ring but do still receive focus */
590 html:focus, body:focus, input[readonly]:focus {
594 input:focus, textarea:focus, isindex:focus, keygen:focus, select:focus
    [all...]
wml.css 235 :focus {
236 outline: auto 5px -webkit-focus-ring-color
239 /* Read-only text fields do not show a focus ring but do still receive focus */
240 wml:focus, card:focus {
244 input:focus, select:focus {
  /external/skia/src/views/
SkWindow.cpp 184 SkView* focus = this->getFocusView();
185 if (focus == NULL)
186 focus = this;
190 return focus->doEvent(evt);
201 // send an event to the focus-view
203 SkView* focus = this->getFocusView(); local
204 if (focus == NULL)
205 focus = this;
209 if (focus->doEvent(evt))
230 //send an event to the focus-vie
232 SkView* focus = this->getFocusView(); local
    [all...]
SkView.cpp 171 SkView* focus = NULL; local
174 if (view->onGetFocusView(&focus))
177 return focus;
191 Try to give focus to this view, or its children
201 SkView* child, *focus; local
203 if ((focus = child->acceptFocus(dir)) != NULL)
204 return focus;
209 SkView* child, *focus; local
211 if ((focus = child->acceptFocus(dir)) != NULL)
212 return focus;
223 SkView* focus = this->getFocusView(); local
    [all...]
  /external/webkit/WebCore/html/
HTMLLabelElement.h 46 // Overridden to either click() or focus() the corresponding control.
57 void focus(bool restorePreviousSelection = true);
HTMLLegendElement.h 51 void focus(bool restorePreviousSelection = true);
HTMLLegendElement.cpp 99 void HTMLLegendElement::focus(bool) function in class:WebCore::HTMLLegendElement
102 Element::focus();
106 element->focus(false);
HTMLLabelElement.cpp 121 control->focus();
131 void HTMLLabelElement::focus(bool) function in class:WebCore::HTMLLabelElement
135 element->focus();
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 65 formfield.focus();
73 formfield.focus();
97 formfield.focus();
102 formfield.focus();
108 formfield.focus();
128 formfield.focus();
133 formfield.focus();
139 formfield.focus();
145 formfield.focus();
177 form.BAND.focus();
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
GoneParentFocusedChildTest.java 17 package android.widget.focus;
23 import android.widget.focus.GoneParentFocusedChild;
27 * have focus. (part of investigation into issue 945150).
42 assertTrue("button should have focus",
ListWithFooterViewAndNewLabelsTest.java 17 package android.widget.focus;
19 import android.widget.focus.ListWithFooterViewAndNewLabels;
HorizontalFocusSearchTest.java 17 package android.widget.focus;
19 import android.widget.focus.HorizontalFocusSearch;
27 import static android.widget.focus.VerticalFocusSearchTest.FocusSearchAlg;
28 import static android.widget.focus.VerticalFocusSearchTest.NewFocusSearchAlg;
31 * Tests that focus searching works on a horizontal linear layout of buttons of
RequestFocus.java 17 package android.widget.focus;
38 // bottom right button starts with the focus.
41 bottomRightButton.setText("I should have focus");
LinearLayoutGridTest.java 17 package android.widget.focus;
24 import android.widget.focus.LinearLayoutGrid;
27 * Tests focus searching between buttons within a grid that are touching, for example,
DescendantFocusability.java 17 package android.widget.focus;
LinearLayoutGrid.java 17 package android.widget.focus;
FocusChangeWithInterestingRectHintTest.java 17 package android.widget.focus;
19 import android.widget.focus.AdjacentVerticalRectLists;
32 * rectangle of the previously focused view. The view taking focus can use this
36 * that report interesting rects when giving up focus, and use interesting rects
37 * when taking focus to best select the internal row to show as selected.
RequestFocusTest.java 17 package android.widget.focus;
19 import android.widget.focus.RequestFocus;
31 * have focus become invisible or GONE.
82 assertTrue("Focus should move to bottom left", mBottomLeftButton.hasFocus());
  /external/skia/include/views/
SkWindow.h 72 virtual bool onGetFocusView(SkView** focus) const;
73 virtual bool onSetFocusView(SkView* focus);
  /external/webkit/JavaScriptCore/profiler/
Profile.h 49 void focus(const ProfileNode*);
Profile.cpp 68 void Profile::focus(const ProfileNode* profileNode) function in class:JSC::Profile
76 processChildren = currentNode->focus(callIdentifier);
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 89 static JSValueRef focus(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* /*exception*/) function in namespace:WebCore
101 profile->focus(static_cast<ProfileNode*>(JSObjectGetPrivate(const_cast<JSObjectRef>(arguments[0]))));
151 { "focus", focus, kJSPropertyAttributeNone },
  /external/webkit/WebCore/page/
Chrome.h 81 void focus(bool userGesture) const;
83 void focus() const;
  /external/webkit/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 64 virtual void focus(bool userGesture);
66 virtual void focus();

Completed in 860 milliseconds

1 2 3 4 5 6 7