/external/chromium_org/ui/views/ime/ |
input_method.h | 59 // Called when the focused window receives native IME messages that are not 73 // Called by the focused |view| whenever its text input type has changed. 74 // Before calling this method, the focused |view| must confirm or clear any 76 // necessary. This method has no effect if |view| is not focused. 79 // Called by the focused |view| whenever its caret bounds have changed. 80 // This method has no effect if |view| is not focused. 83 // Called by the focused |view| to cancel the ongoing composition session. 84 // This method has no effect if |view| is not focused. 87 // Called by the focused client whenever its input locale is changed. 108 // Returns the focused text input client, or NULL if the Widget is not active [all...] |
input_method_base.h | 40 virtual void OnWillChangeFocus(View* focused_before, View* focused) OVERRIDE; 41 virtual void OnDidChangeFocus(View* focused_before, View* focused) OVERRIDE; 48 // Returns true only if the View is focused and its Widget is active. 51 // Returns true if there is no focused text input client or its type is none. 54 // Calls the focused text input client's OnInputMethodChanged() method.
|
input_method_base.cc | 32 // Alert the InputMethod of the Widget's currently focused view. 33 View* focused = widget->GetFocusManager()->GetFocusedView(); local 34 if (focused) 35 OnWillChangeFocus(NULL, focused); 59 void InputMethodBase::OnWillChangeFocus(View* focused_before, View* focused) {} 61 void InputMethodBase::OnDidChangeFocus(View* focused_before, View* focused) {} 94 // Convert coordinates if the focused view is inside a child Widget.
|
/external/chromium_org/ui/base/ime/ |
input_method.h | 34 // 1) Send the original key down event to the focused window, which is e.g. 43 // - Keeps track of the focused TextInputClient to see which client can call 65 virtual void Init(bool focused) = 0; 73 // Called when the focused window receives native IME messages that are not 83 // itself by calling the method when it is focused, and unregister itself by 102 // Called by the focused client whenever its text input type is changed. 103 // Before calling this method, the focused client must confirm or clear 106 // effect if the client is not the focused client. 109 // Called by the focused client whenever its caret bounds is changed. 110 // This method has no effect if the client is not the focused client [all...] |
input_method_tsf.cc | 40 // "always focused" model. 50 // "always focused" model. See the comment in the constructor. 59 // "always focused" model. See the comment in the constructor. 128 TextInputClient* focused) { 136 TextInputClient* focused) { 137 if (IsWindowFocused(focused) && IsTextInputClientFocused(focused)) { 139 GetAttachedWindowHandle(focused), focused); local 144 OnTextInputTypeChanged(focused); [all...] |
/development/samples/SoftKeyboard/ |
_index.html | 2 This code is focused on simplicity over completeness, so it should in no way be considered
|
/external/chromium_org/content/test/data/accessibility/ |
a-onclick-expected-win.txt | 2 ROLE_SYSTEM_DOCUMENT state=FOCUSED,READONLY,FOCUSABLE
|
a-with-img-expected-android.txt | 1 android.view.View focusable focused scrollable
|
aria-combobox-expected-android.txt | 1 android.view.View focusable focused scrollable
|
aria-invalid-expected-android.txt | 1 android.view.View focusable focused scrollable
|
aria-valuemax-expected-android.txt | 1 android.view.View focusable focused scrollable
|
aria-valuemin-expected-android.txt | 1 android.view.View focusable focused scrollable
|
button-name-calc-expected-android.txt | 2 android.view.View focusable focused scrollable
|
checkbox-name-calc-expected-android.txt | 2 android.view.View focusable focused scrollable
|
modal-dialog-in-iframe-closed-expected-android.txt | 1 android.view.View focusable focused scrollable
|
modal-dialog-in-iframe-opened-expected-android.txt | 1 android.view.View focusable focused scrollable
|
modal-dialog-opened-expected-android.txt | 1 android.view.View focusable focused scrollable
|
modal-dialog-stack-expected-android.txt | 1 android.view.View focusable focused scrollable
|
/packages/apps/Launcher2/res/drawable/ |
tab_widget_indicator_selector.xml | 18 <!-- Non focused states --> 21 <!-- Focused states --> 26 <!-- Non focused states --> 30 <!-- Focused states -->
|
/packages/apps/Launcher3/res/drawable/ |
tab_widget_indicator_selector.xml | 18 <!-- Non focused states --> 21 <!-- Focused states --> 26 <!-- Non focused states --> 30 <!-- Focused states -->
|
/external/chromium_org/ui/views/focus/ |
external_focus_tracker.cc | 20 // Store the view which is focused when we're created. 35 // Store the newly focused view. 61 // If the view is NULL, remove the last focused view from storage, but don't
|
/external/chromium_org/chrome/browser/ui/views/app_list/win/ |
activation_tracker_win.cc | 70 // - the app launcher is focused, or 71 // - the taskbar's jump list is focused, or 72 // - the taskbar is focused with the right mouse button pressed. 94 // Sometimes the focused window is NULL. This can happen when the focus is 101 // If the focused window is the right click menu (called a jump list) or 107 // If the focused window is the taskbar, and the right button is down, 126 // If we get here, the focused window is not the taskbar, its context menu, or
|
/external/chromium_org/content/renderer/accessibility/ |
renderer_accessibility_focus_only.h | 23 // with information about the control that was just focused. 25 // touch event, AND the bounding rectangle of the newly-focused control 26 // contains the touch point, AND the focused object is a text control, 33 // currently focused object. If the touch falls within the bounds of 34 // the focused object, the on-screen keyboard opens. 38 // node and optionally a single child node, representing the current focused 41 // on the child, or on the root of the tree if nothing is focused.
|
/external/chromium_org/ui/base/ime/win/ |
tsf_bridge.h | 23 // DisableIME() should be called if a password field is focused. 26 // of text inputting and current focused TextInputClient. 51 // unless |client| is focused. 69 // Sets currently focused TextInputClient. 74 // Removes currently focused TextInputClient. 81 // Returns the focused text input client.
|
/external/chromium_org/chrome/test/chromedriver/js/ |
focus.js | 12 // Thirdly, if the target element is newly focused and is a text input, we 17 // - |document.activeElement| is the currently focused element, or body if 18 // no element is focused
|