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

12 3 4 5 6 7 8 91011

  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
KeyboardInterpreter.java 76 if (mTable.hasFocus()) {
86 if (mTable.hasFocus()) {
EdgeSwipeDetector.java 64 if (mTable.hasFocus()) {
  /packages/apps/Browser/src/com/android/browser/
NavigationBarBase.java 100 public void onFocusChange(View view, boolean hasFocus) {
102 if (hasFocus || view.isInTouchMode() || mUrlInput.needsUpdate()) {
103 setFocusState(hasFocus);
105 if (hasFocus) {
125 return mUrlInput.hasFocus();
236 if (!mUrlInput.hasFocus()) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 173 assertFalse(root.hasFocus());
176 assertTrue(root.hasFocus());
179 assertFalse(root.hasFocus());
182 assertTrue(root.hasFocus());
185 assertFalse(root.hasFocus());
188 assertTrue(root.hasFocus());
197 assertFalse(child3a.hasFocus());
198 assertFalse(child3.hasFocus());
199 assertFalse(root.hasFocus());
203 assertFalse(root.hasFocus());
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginEventHandlerCocoa.mm 188 void WebNetscapePluginEventHandlerCocoa::windowFocusChanged(bool hasFocus)
193 event.data.focus.hasFocus = hasFocus;
198 void WebNetscapePluginEventHandlerCocoa::focusChanged(bool hasFocus)
203 event.data.focus.hasFocus = hasFocus;
207 if (hasFocus)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewGroup.java 151 public boolean hasFocus() {
152 if (super.hasFocus()) return true;
155 if (child.hasFocus()) return true;
164 if (hasFocus()) {
176 if (super.hasFocus()) {
  /frameworks/base/core/java/android/webkit/
ZoomControlExternal.java 82 if (!mZoomControls.hasFocus()) {
147 public boolean hasFocus() {
148 return mPlusMinusZoomControls.hasFocus();
  /external/webkit/Source/WebCore/html/
HTMLDocument.idl 54 boolean hasFocus();
HTMLDocument.h 56 bool hasFocus();
  /frameworks/base/core/java/android/view/
IWindow.aidl 59 void windowFocusChanged(boolean hasFocus, boolean inTouchMode);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesCloseTest.java 107 getActivity().getChildOfItem(1, 0).hasFocus());
113 getActivity().getChildOfItem(0, 2).hasFocus());
  /frameworks/base/core/tests/coretests/src/android/view/
DisabledLongpressTest.java 69 assertTrue(mSimpleView.hasFocus());
DisabledTest.java 76 assertTrue(mDisabled.hasFocus());
LongpressTest.java 65 assertTrue(mSimpleView.hasFocus());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineAlignmentZeroWidthAndWeightTest.java 51 assertTrue(mShowButton.hasFocus());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumnTest.java 54 assertTrue(mAddRow.hasFocus());
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleWithInternalScrollTest.java 64 assertTrue(mScrollToBlob.hasFocus());
  /frameworks/base/core/tests/coretests/src/android/widget/touchmode/
TouchModeFocusableTest.java 89 getActivity().getLayout().hasFocus());
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 761 void NetscapePlugin::platformSetFocus(bool hasFocus)
763 m_pluginHasFocus = hasFocus;
770 event.data.focus.hasFocus = hasFocus;
777 EventRecord event = initializeEventRecord(hasFocus ? NPEventType_GetFocusEvent : NPEventType_LoseFocusEvent);
789 void NetscapePlugin::windowFocusChanged(bool hasFocus)
791 m_windowHasFocus = hasFocus;
798 event.data.focus.hasFocus = hasFocus;
805 HiliteWindow(windowRef(), hasFocus);
    [all...]
  /external/webkit/Examples/NetscapeCocoaPlugin/
main.m 53 bool hasFocus;
212 if (obj->hasFocus) {
324 obj->hasFocus = cocoaEvent->data.focus.hasFocus;
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 64 public void onWindowFocusChanged(boolean hasFocus) {
65 super.onWindowFocusChanged(hasFocus);
  /frameworks/support/v4/jellybean-mr2/android/support/v4/media/
TransportMediatorJellybeanMR2.java 55 public void onWindowFocusChanged(boolean hasFocus) {
56 if (hasFocus) gainFocus();
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallDetailHistoryAdapter.java 54 public void onFocusChange(View v, boolean hasFocus) {
56 if (hasFocus) {
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigUiForSetupWizardXL.java 204 public void onFocusChange(View view, boolean hasFocus) {
206 if (hasFocus) {
  /packages/apps/VideoEditor/src/com/android/videoeditor/
AlertDialogs.java 132 public void onFocusChange(View v, boolean hasFocus) {
133 if (hasFocus) {

Completed in 2459 milliseconds

12 3 4 5 6 7 8 91011