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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/CodeGen/
2003-08-21-BinOp-Type-Mismatch.c 7 unsigned int frame, focus; local
8 (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
EditTextRule.java 45 INode focus = findFocus(findRoot(parent)); local
46 if (focus == null) {
60 * Adds a "Request Focus" menu item.
68 final String label = hasFocus ? "Clear Focus" : "Request Focus";
80 INode focus = findFocus(findRoot(node));
81 if (focus != null && focus.getParent() != null) {
82 focus.getParent().removeChild(focus);
99 INode focus = findFocus(node); local
131 INode focus = findFocus(child); local
    [all...]
  /external/webkit/Source/WebCore/css/
svg.css 68 :focus {
69 outline: auto 5px -webkit-focus-ring-color
wml.css 236 :focus {
237 outline: auto 5px -webkit-focus-ring-color
240 /* Read-only text fields do not show a focus ring but do still receive focus */
241 wml:focus, card:focus {
245 input:focus, select:focus {
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_delegate_mac.h 18 - (void)setAccessibilityFocus:(BOOL)focus
  /external/webkit/Source/WebCore/html/
HTMLLabelElement.h 49 // Overridden to either click() or focus() the corresponding control.
52 void focus(bool restorePreviousSelection = true);
HTMLLegendElement.h 38 // Control in the legend's fieldset that gets focus and access key.
44 virtual void focus(bool restorePreviousSelection = true);
HTMLLegendElement.cpp 80 void HTMLLegendElement::focus(bool) function in class:WebCore::HTMLLegendElement
83 Element::focus();
87 control->focus(false);
HTMLLabelElement.cpp 132 element->focus();
142 void HTMLLabelElement::focus(bool) function in class:WebCore::HTMLLabelElement
146 element->focus();
  /external/skia/legacy/src/views/
SkWindow.cpp 231 SkView* focus = this->getFocusView();
232 if (focus == NULL)
233 focus = this;
237 return focus->doEvent(evt);
248 // send an event to the focus-view
250 SkView* focus = this->getFocusView(); local
251 if (focus == NULL)
252 focus = this;
256 if (focus->doEvent(evt))
277 //send an event to the focus-vie
279 SkView* focus = this->getFocusView(); local
    [all...]
SkView.cpp 194 SkView* focus = NULL; local
197 if (view->onGetFocusView(&focus))
200 return focus;
214 Try to give focus to this view, or its children
224 SkView* child, *focus; local
226 if ((focus = child->acceptFocus(dir)) != NULL)
227 return focus;
232 SkView* child, *focus; local
234 if ((focus = child->acceptFocus(dir)) != NULL)
235 return focus;
246 SkView* focus = this->getFocusView(); local
    [all...]
  /external/skia/src/views/
SkWindow.cpp 230 SkView* focus = this->getFocusView();
231 if (focus == NULL)
232 focus = this;
236 return focus->doEvent(evt);
247 // send an event to the focus-view
249 SkView* focus = this->getFocusView(); local
250 if (focus == NULL)
251 focus = this;
255 if (focus->doEvent(evt))
276 //send an event to the focus-vie
278 SkView* focus = this->getFocusView(); local
    [all...]
SkView.cpp 197 SkView* focus = NULL; local
200 if (view->onGetFocusView(&focus))
203 return focus;
217 Try to give focus to this view, or its children
227 SkView* child, *focus; local
229 if ((focus = child->acceptFocus(dir)) != NULL)
230 return focus;
235 SkView* child, *focus; local
237 if ((focus = child->acceptFocus(dir)) != NULL)
238 return focus;
249 SkView* focus = this->getFocusView(); local
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
KeyboardInterpreter.java 38 final View focus = mTable.getFocus(); local
93 mTable.moveFocus(focus, 0f);
98 mTable.moveFocus(focus, 90f);
103 mTable.moveFocus(focus, 180f);
108 mTable.moveFocus(focus, 270f);
  /external/webkit/Source/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;
36 // bottom right button starts with the focus.
39 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;
  /external/webkit/Tools/WebKitTestRunner/
PlatformWebView.h 61 void focus();
  /external/webkit/Source/JavaScriptCore/profiler/
Profile.h 49 void focus(const ProfileNode*);
  /external/webkit/Tools/TestWebKitAPI/
PlatformWebView.h 64 void focus();

Completed in 1024 milliseconds

1 2 3 4 5 6 7 8 91011