HomeSort by relevance Sort by last modified time
    Searched refs:focus (Results 101 - 125 of 410) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
ListButtonsDiagonalAcrossItemsTest.java 17 package android.widget.listview.focus;
30 * Test that ListView will override default behavior of focus searching to
71 assertEquals("focus search right from left button should be center button",
74 assertEquals("focus search right from center button should be right button",
77 assertEquals("focus search left from centr button should be left button",
ListWithEditTextHeaderTest.java 17 package android.widget.listview.focus;
48 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
55 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
64 assertTrue("header does not have focus", mListView.getChildAt(0).isFocused());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed.js 138 // Update aria-activedescendant property in response to focus change
140 title.addEventListener('focus', function(event) {
144 // Enable keyboard focus on the item title element
159 // Disable keyboard focus on elements in iFrames that have not been
213 this.parentNode.nextSibling.children[1].focus();
217 this.parentNode.previousSibling.children[1].focus();
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
webtreemap.js 42 // Callback for embedding page to update after a focus.
45 function focus(tree) { function
81 focus(focused.parent);
83 focus(tree);
  /external/chromium_org/chrome/browser/resources/file_manager/css/
file_manager.css 241 #volume-list:focus > .accepts,
242 #volume-list:focus > [lead][selected],
243 #volume-list:focus > [lead],
244 #volume-list:focus > [selected],
245 #volume-list:focus > [anchor] {
318 #directory-tree:focus .tree-row[selected] > .expand-icon {
354 #directory-tree:focus .tree-item.accepts > .tree-row,
355 #directory-tree:focus .tree-row[lead][selected],
356 #directory-tree:focus .tree-row[lead],
357 #directory-tree:focus .tree-row[selected]
    [all...]
  /external/chromium_org/chrome/browser/resources/
sync_setup_overlay.css 327 .signin-box input[type=submit]:focus {
335 .signin-box input[type=submit]:focus:active {
339 .signin-box input[type=submit]:focus:hover {
386 .signin-box input[type=text]:focus,
387 .signin-box input[type=password]:focus {
  /external/chromium_org/chrome/browser/resources/extensions/
extensions.css 9 html:not(.focus-outline-visible)
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
11 /* Cancel border-color for :focus specified in widgets.css. */
302 .extension-list-item:not(:hover) .trash:not(:focus) {
  /external/chromium_org/content/browser/web_contents/
web_contents_view_gtk.cc 151 void WebContentsViewGtk::Focus() {
153 web_contents_->GetInterstitialPage()->Focus();
155 delegate_->Focus();
163 Focus();
215 g_signal_connect(content_view, "focus", G_CALLBACK(OnFocusThunk), this);
292 // This is called when the renderer asks us to take focus back (i.e., it has
328 // and grab focus if we don't have it. The call to
329 // FocusThroughTabTraversal(bool) forwards the "move focus forward" effect to
332 GtkDirectionType focus) {
336 if (delegate_->OnNativeViewFocusEvent(widget, focus, &return_value)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_instance.cc 409 void PSInstance::DidChangeFocus(bool focus) {
410 Log("Got Focus change: %s\n", focus ? "FOCUS ON" : "FOCUS OFF");
411 PostEvent(PSE_INSTANCE_DIDCHANGEFOCUS, focus ? PP_TRUE : PP_FALSE);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
TextControlInnerElements.cpp 157 // On mousedown, focus the search field
160 input->focus();
218 input->focus();
287 // The call to focus() below dispatches a focus event, and an event handler in the page might
298 // On mouse down, select the text and set focus.
307 input->focus();
387 // focus has moved away from it.
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DayPickerView.java 374 * Attempts to return the date that has accessibility focus.
376 * @return The date that has accessibility focus, or {@code null} if no date
377 * has focus.
384 final CalendarDay focus = ((SimpleMonthView) child).getAccessibilityFocus(); local
385 if (focus != null) {
387 // Clear focus to avoid ListView bug in Jelly Bean MR1.
390 return focus;
399 * Attempts to restore accessibility focus to a given date. No-op if
402 * @param day The date that should receive accessibility focus
403 * @return {@code true} if focus was restore
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 294 public void setFocus(View focus) {
295 assert(focus != null);
297 mFocus = focus;
298 moveToTopOfPile(focus);
299 setHighlight(focus, true);
355 public View moveFocus(View focus, float direction) {
356 return moveFocus(focus, direction, 90f);
359 public View moveFocus(View focus, float direction, float angle) {
360 if (focus == null) {
371 final double[] a = getCenter(focus);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe.css 31 /* Follow same focus coloring as in widgets.css */
40 /* ':focus' used twice to increase specificity. */
41 button.custom-appearance:focus:focus {
  /external/chromium_org/chrome/browser/resources/ntp4/
footer_menu.css 90 .footer-menu-item:not(:focus) {
95 .footer-menu-item:focus {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HelpScreen.js 45 this.element.addEventListener("focus", this._onBlur.bind(this), false);
80 this.focus();
117 // Pretend we're modal, grab focus back if we're still shown.
SidebarOverlay.js 79 focus: function()
profilesPanel.css 124 .data-grid:focus tr.selected .profile-node-file {
132 .focus-profile-node-status-bar-item .glyph {
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
HorizontalFocusSearch.java 17 package android.widget.focus;
ListOfEditTexts.java 17 package android.widget.focus;
ListOfInternalSelectionViews.java 17 package android.widget.focus;
ListWithFooterViewAndNewLabels.java 17 package android.widget.focus;
ListWithMailMessages.java 17 package android.widget.focus;
VerticalFocusSearch.java 17 package android.widget.focus;
30 * vertical layout to excercise some core focus searching.
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawRectFilter.java 102 output.focus();
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 38 int focus; member in struct:SceneModesEntry

Completed in 316 milliseconds

1 2 3 45 6 7 8 91011>>