HomeSort by relevance Sort by last modified time
    Searched full:focused (Results 176 - 200 of 1078) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/ui/base/ime/
dummy_input_method.h 22 virtual void Init(bool focused) OVERRIDE;
input_method_observer.h 19 // Called whenever the text input type is changed for the focused client.
remote_input_method_delegate_win.h 26 // Notifies that properties of the focused TextInputClient is changed.
text_input_type.h 39 // The focused node is date time field. The date time field does not have
  /external/chromium_org/ui/keyboard/
keyboard_ui_handler.h 15 // focused TextInputClient.
  /external/chromium_org/ui/views/controls/
focusable_border.h 20 // A Border class to draw a focused border around a field (e.g textfield).
  /frameworks/base/core/java/android/inputmethodservice/
ExtractButton.java 24 * Specialization of {@link Button} that ignores the window not being focused.
  /frameworks/base/core/java/android/text/method/
AllCapsTransformationMethod.java 50 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction,
TransformationMethod.java 43 boolean focused, int direction,
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusableAboveUnfocusableTest.java 50 assertFalse("focused item should have lost focus",
  /frameworks/base/keystore/java/android/security/
AndroidKeyStoreProvider.java 22 * A provider focused on providing JCA interfaces for the Android KeyStore.
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 36 * Returns the resource id of the background used for buttons to show pressed and focused state
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicImageView.java 50 // One time call to generate the pressed/focused state -- must be called after
  /packages/apps/LegacyCamera/res/drawable/
btn_shutter_pan.xml 21 android:drawable="@drawable/btn_pan_shutter_holo" /> <!-- focused -->
btn_shutter_pan_recording.xml 21 android:drawable="@drawable/btn_pan_shutter_recording_holo" /> <!-- focused -->
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 20 public static final Window FOCUSED_WINDOW = new Window("<Focused Window>", -1);
  /external/chromium_org/chrome/common/extensions/api/
windows.json 18 "focused": {"type": "boolean", "description": "Whether the window is currently the focused window."},
107 "description": "Gets the window that was most recently focused &mdash; typically the window 'on top'.",
172 "left": {"type": "integer", "optional": true, "description": "The number of pixels to position the new window from the left edge of the screen. If not specified, the new window is offset naturally from the last focused window. This value is ignored for panels."},
173 "top": {"type": "integer", "optional": true, "description": "The number of pixels to position the new window from the top edge of the screen. If not specified, the new window is offset naturally from the last focused window. This value is ignored for panels."},
176 "focused": {"type": "boolean", "optional": true, "description": "If true, opens an active window. If false, opens an inactive window."},
214 "focused": {"type": "boolean", "optional": true, "description": "If true, brings the window to the front. If false, brings the next window in the z-order to the front."},
215 "drawAttention": {"type": "boolean", "optional": true, "description": "If true, causes the window to be displayed in a manner that draws the user's attention to the window, without changing the focused window. The effect lasts until the user changes focus to the window. This option has no effect if the window already has focus. Set to false to cancel a previous draw attention request."},
270 "description": "Fired when the currently focused window changes. Will be chrome.windows.WINDOW_ID_NONE if all chrome windows have lost focus. Note: On some Linux window managers, WINDOW_ID_NONE will always be sent immediately preceding a switch from one chrome window to another.",
272 {"type": "integer", "name": "windowId", "minimum": -1, "description": "ID of the newly focused window."
    [all...]
  /external/chromium_org/ui/views/focus/
focus_manager.h 20 // focused views and handle keyboard accelerators.
27 // gets notified when they are focused (and keeps track of the native focus) and
166 // The FocusManager keeps track of the focused view within a RootView.
183 // Clears the focused view. The window associated with the top root view gets
187 // Validates the focused view, clearing it if the window it belongs too is not
191 // Stores the focused view. Used when the widget loses activation.
210 // Clears the stored focused view.
213 // Returns true if in the process of changing the focused view.
270 // the focused view is about to change.
348 // The view that currently is focused
    [all...]
focus_manager.cc 69 // If the focused view wants to process the key event as is, let it be.
76 // the active window hierarchy as this would mean we have no focused view
160 // Keep the top root window focused so we get keyboard events.
171 // is initially focused.
177 // focused initially.
228 // Let's revalidate the focused view.
358 // Don't do anything if no focused view. Storing the view (which is NULL), in
371 // ClearFocus() also stores the focused view.
517 // If the view being removed contains (or is) the focused view,
  /external/chromium_org/ui/views/ime/
input_method_bridge.cc 323 void InputMethodBridge::OnWillChangeFocus(View* focused_before, View* focused) {
330 void InputMethodBridge::OnDidChangeFocus(View* focused_before, View* focused) {
331 DCHECK_EQ(GetFocusedView(), focused); local
332 OnTextInputTypeChanged(focused);
333 OnCaretBoundsChanged(focused);
  /external/chromium_org/chrome/browser/resources/chromeos/login/
user_pod_row.css 55 .pod.focused {
56 /* Focused pod has the same size no matter how many pods. */
72 .pod.focused .user-image {
100 when pod is not focused increase that a bit. */
114 .pod.need-password.focused .name {
164 .pod.need-password.focused .password-area {
178 .pod:not(.focused) .signin-button {
196 .capslock-on .pod.focused input[type='password']:not([hidden]) ~ .capslock-hint {
351 html[oobe=old] .pod.focused .action-box-area {
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 128 static inline void dispatchEventsOnWindowAndFocusedNode(Document* document, bool focused)
130 // If we have a focused node we should dispatch blur on it before we blur the window.
131 // If we have a focused node we should dispatch focus on it after we focus the window.
140 if (!focused && document->focusedElement()) {
151 window->dispatchEvent(Event::create(focused ? EventTypeNames::focus : EventTypeNames::blur));
152 if (focused && document->focusedElement()) {
242 // Now that the frame is updated, fire events and update the selection focused states of both frames.
263 void FocusController::setFocused(bool focused)
265 if (isFocused() == focused)
268 m_isFocused = focused;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
webtreemap.js 40 var focused = null; variable
46 focused = tree;
80 if (focused && tree == focused && focused.parent) {
81 focus(focused.parent);
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompat.java 72 public void setFocused(Object info, boolean focused);
76 public void setAccessibilityFocused(Object info, boolean focused);
326 public void setFocused(Object info, boolean focused) {
336 public void setAccessibilityFocused(Object info, boolean focused) {
613 public void setFocused(Object info, boolean focused) {
614 AccessibilityNodeInfoCompatIcs.setFocused(info, focused);
705 public void setAccessibilityFocused(Object info, boolean focused) {
706 AccessibilityNodeInfoCompatJellyBean.setAccesibilityFocused(info, focused);
    [all...]
  /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 251 milliseconds

1 2 3 4 5 6 78 91011>>