HomeSort by relevance Sort by last modified time
    Searched refs:focused (Results 26 - 50 of 271) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/content/browser/browser_plugin/
test_browser_plugin_guest.cc 207 void TestBrowserPluginGuest::OnSetFocus(int instance_id, bool focused) {
208 if (focused) {
217 BrowserPluginGuest::OnSetFocus(instance_id, focused);
test_browser_plugin_guest.h 40 virtual void OnSetFocus(int instance_id, bool focused) OVERRIDE;
  /external/chromium_org/ui/base/ime/
input_method_ibus.h 46 virtual void Init(bool focused) OVERRIDE;
98 TextInputClient* focused) OVERRIDE;
100 TextInputClient* focused) OVERRIDE;
114 // Checks the availability of focused text input client and update focus
119 // A VKEY_PROCESSKEY may be dispatched to the focused View.
129 // Sends input method result caused by the given key event to the focused text
134 // Checks if the pending input method result needs inserting into the focused
191 // It'll be sent to the focused text input client as soon as we receive the
196 // It'll be sent to the focused text input client as soon as we receive the
203 // Indicates if input context is focused or not
    [all...]
dummy_input_method.cc 18 void DummyInputMethod::Init(bool focused) {
dummy_input_method.h 22 virtual void Init(bool focused) OVERRIDE;
fake_input_method.h 31 virtual void Init(bool focused) OVERRIDE;
input_method_win.h 26 virtual void Init(bool focused) OVERRIDE;
mock_input_method.h 46 virtual void Init(bool focused) OVERRIDE;
mock_input_method.cc 39 void MockInputMethod::Init(bool focused) {
  /external/chromium_org/ui/views/corewm/
base_focus_rules.cc 87 // The focused window is always inside the active window, so windows that
88 // aren't activatable can't contain the focused window.
158 // If there's already a child window focused in the activatable hierarchy,
161 aura::Window* focused = GetFocusedWindow(activatable); local
162 return activatable->Contains(focused) ? focused : activatable;
  /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
  /cts/tests/src/android/widget/cts/
MockTextView.java 134 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
135 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /external/chromium_org/ui/views/ime/
input_method_bridge.h 81 virtual void OnWillChangeFocus(View* focused_before, View* focused) OVERRIDE;
82 virtual void OnDidChangeFocus(View* focused_before, View* focused) OVERRIDE;
mock_input_method.h 63 virtual void OnWillChangeFocus(View* focused_before, View* focused) OVERRIDE;
  /external/chromium_org/content/child/npapi/
webplugin_delegate.h 73 virtual void SetFocus(bool focused) = 0;
webplugin.h 114 virtual void FocusChanged(bool focused) {}
  /external/chromium_org/ui/views/controls/button/
label_button_border.cc 54 // Paint any corresponding unfocused painter if there is no focused painter.
153 Painter* LabelButtonBorder::GetPainter(bool focused,
155 return painters_[focused ? 1 : 0][state].get();
158 void LabelButtonBorder::SetPainter(bool focused,
161 painters_[focused ? 1 : 0][state].reset(painter);
checkbox.cc 50 // Unchecked/Focused images.
58 // Checked/Focused images.
117 bool focused,
121 const size_t focused_index = focused ? 1 : 0;
  /frameworks/base/core/java/android/view/
ViewParent.java 96 * will contain the focused view. It is not necessarily the view that
98 * @param focused The view that is a descendant of child that actually has
101 public void requestChildFocus(View child, View focused);
  /external/chromium_org/third_party/WebKit/Source/core/html/
TextFieldInputType.cpp 114 if (input->focused())
126 if (input->focused())
143 if (!input->focused() || eventBehavior == DispatchNoEvent)
149 if (!element()->focused())
396 unsigned selectionLength = element()->focused() ? plainText(element()->document()->frame()->selection()->selection().toNormalizedRange().get()).length() : 0;
487 if (!element()->focused())
530 return shouldSpinButtonRespondToMouseEvents() && element()->focused();
  /external/chromium_org/chrome/browser/resources/chromeos/login/
user_pod_row.css 64 .pod.focused {
65 /* Focused pod has the same size no matter how many pods. */
80 .pod.focused .user-image {
108 when pod is not focused increase that a bit. */
122 .pod.need-password.focused .name {
138 .pod.need-password.focused input[type='password'] {
152 .pod:not(.focused) .signin-button {
170 .capslock-on .pod.focused input[type='password']:not([hidden]) ~ .capslock-hint {
325 html[oobe=old] .pod.focused .action-box-area {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 519 public void onFocusChange(View v, boolean focused) {
520 if (DBG) Log.d(TAG, "Suggestions focus change, now: " + focused);
521 if (focused) {
529 public void onFocusChange(View v, boolean focused) {
530 if (DBG) Log.d(TAG, "Query focus change, now: " + focused);
531 if (focused) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebNode.cpp 218 bool WebNode::focused() const function in class:WebKit::WebNode
220 return m_private->focused();
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayoutChildren.java 68 public void requestChildFocus(View child, View focused) {
69 super.requestChildFocus(child, focused);
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewCellLayoutChildren.java 68 public void requestChildFocus(View child, View focused) {
69 super.requestChildFocus(child, focused);

Completed in 922 milliseconds

12 3 4 5 6 7 8 91011