/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | ViewGroupTest.java | 173 assertFalse(root.hasFocus()); in hasFocus_shouldReturnTrueIfAnyChildHasFocus() 176 assertTrue(root.hasFocus()); in hasFocus_shouldReturnTrueIfAnyChildHasFocus() 179 assertFalse(root.hasFocus()); in hasFocus_shouldReturnTrueIfAnyChildHasFocus() 182 assertTrue(root.hasFocus()); in hasFocus_shouldReturnTrueIfAnyChildHasFocus() 185 assertFalse(root.hasFocus()); in hasFocus_shouldReturnTrueIfAnyChildHasFocus() 188 assertTrue(root.hasFocus()); in hasFocus_shouldReturnTrueIfAnyChildHasFocus() 197 assertFalse(child3a.hasFocus()); in clearFocus_shouldRecursivelyClearTheFocusOfAllChildren() 198 assertFalse(child3.hasFocus()); in clearFocus_shouldRecursivelyClearTheFocusOfAllChildren() 199 assertFalse(root.hasFocus()); in clearFocus_shouldRecursivelyClearTheFocusOfAllChildren() 203 assertFalse(root.hasFocus()); in clearFocus_shouldRecursivelyClearTheFocusOfAllChildren()
|
D | ViewTest.java | 57 public void onFocusChange(View v, boolean hasFocus) { in shouldFocus() 58 transcript.add(hasFocus ? "Gained focus" : "Lost focus"); in shouldFocus() 63 assertFalse(view.hasFocus()); in shouldFocus() 68 assertTrue(view.hasFocus()); in shouldFocus() 73 assertFalse(view.hasFocus()); in shouldFocus()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowViewGroup.java | 151 public boolean hasFocus() { in hasFocus() method in ShadowViewGroup 152 if (super.hasFocus()) return true; in hasFocus() 155 if (child.hasFocus()) return true; in hasFocus() 164 if (hasFocus()) { in clearFocus() 176 if (super.hasFocus()) { in findFocus()
|
D | ShadowView.java | 495 public void setViewFocus(boolean hasFocus) { in setViewFocus() argument 496 this.isFocused = hasFocus; in setViewFocus() 515 onFocusChangeListener.onFocusChange(realView, hasFocus); in setViewFocus() 535 public boolean hasFocus() { in hasFocus() method in ShadowView 546 return hasFocus() ? realView : null; in findFocus() 889 if (view.hasFocus()) return false; in noParentHasFocus()
|
/external/deqp/framework/platform/android/ |
D | tcuAndroidNativeActivity.cpp | 59 static void onWindowFocusChangedCallback (ANativeActivity* activity, int hasFocus) in onWindowFocusChangedCallback() argument 61 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onWindowFocusChanged(hasFocus); in onWindowFocusChangedCallback() 168 void NativeActivity::onWindowFocusChanged (int hasFocus) in onWindowFocusChanged() argument 170 DE_UNREF(hasFocus); in onWindowFocusChanged()
|
D | tcuAndroidNativeActivity.hpp | 54 virtual void onWindowFocusChanged (int hasFocus);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CTableCombo.java | 51 protected boolean hasFocus; field in CTableCombo 161 if (hasFocus) { in handleTableEvent() 164 hasFocus = true; in handleTableEvent() 181 hasFocus = false; in handleTableEvent() 313 if (hasFocus) { in handleArrowEvent() 316 hasFocus = true; in handleArrowEvent() 336 if (hasFocus) { in handleTextEvent() 339 hasFocus = true; in handleTextEvent() 360 hasFocus = false; in handleTextEvent()
|
D | CCombo3.java | 92 private boolean hasFocus; in CCombo3() 95 boolean old_hasFocus = hasFocus; in CCombo3() 96 hasFocus = in CCombo3() 102 if (hasFocus) { in CCombo3() 110 if (old_hasFocus && !hasFocus) { in CCombo3()
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/ |
D | NumberPicker.java | 196 if (!mText.hasFocus()) { in onClick() 256 public void onFocusChange(View v, boolean hasFocus) { in onFocusChange() argument 261 if (!hasFocus) { in onFocusChange()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | AnimationPlayerActivity.java | 172 public void onWindowFocusChanged(boolean hasFocus) { in onWindowFocusChanged() argument 173 if (hasFocus && mAnimation != null) { in onWindowFocusChanged()
|
D | GLSurfaceView.java | 532 public void onWindowFocusChanged(boolean hasFocus) { in onWindowFocusChanged() argument 533 super.onWindowFocusChanged(hasFocus); in onWindowFocusChanged() 534 mGLThread.onWindowFocusChanged(hasFocus); in onWindowFocusChanged() 1468 public void onWindowFocusChanged(boolean hasFocus) { in onWindowFocusChanged() argument 1470 mHasFocus = hasFocus; in onWindowFocusChanged()
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/ |
D | GwtInput.java | 58 boolean hasFocus = true; field in GwtInput 506 hasFocus = false; in handleEvent() 510 hasFocus = true; in handleEvent() 574 if (e.getType().equals("keydown") && hasFocus) { in handleEvent() 596 if (e.getType().equals("keypress") && hasFocus) { in handleEvent() 602 if (e.getType().equals("keyup") && hasFocus) { in handleEvent()
|
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/ |
D | AndroidApplication.java | 228 public void onWindowFocusChanged (boolean hasFocus) { in onWindowFocusChanged() argument 229 super.onWindowFocusChanged(hasFocus); in onWindowFocusChanged() 232 if (hasFocus) { in onWindowFocusChanged()
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
D | RuleListController.java | 119 boolean isSelected, boolean hasFocus) { in getListCellRendererComponent() argument
|
D | RunnerController.java | 204 boolean hasFocus) { in getTreeCellRendererComponent() argument
|
D | TestCaseEditController.java | 603 boolean isSelected, boolean hasFocus) { in getListCellRendererComponent() argument
|
/external/skia/platform_tools/android/apps/visualbenchsdl/src/main/java/org/libsdl/app/ |
D | SDLActivity.java | 241 public void onWindowFocusChanged(boolean hasFocus) { in onWindowFocusChanged() argument 242 super.onWindowFocusChanged(hasFocus); in onWindowFocusChanged() 243 Log.v(TAG, "onWindowFocusChanged(): " + hasFocus); in onWindowFocusChanged() 249 SDLActivity.mHasFocus = hasFocus; in onWindowFocusChanged() 250 if (hasFocus) { in onWindowFocusChanged()
|
/external/skia/src/views/ |
D | SkWidgets.cpp | 280 …evt.setString("prime-state", computeAnimatorState(this->isEnabled(), this->hasFocus(), this->getBu… 294 … create_emboss(&p, SkIntToScalar(12)/5, this->hasFocus(), this->getButtonState() == kOn_State);
|
D | SkView.cpp | 193 bool SkView::hasFocus() const { in hasFocus() function in SkView
|
/external/skia/include/views/ |
D | SkView.h | 127 bool hasFocus() const;
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/resources/ |
D | soundmanager2-nodebug-jsmin.js | 18 …ilk/i)&&p.match(/OS X 10_6_([3-7])/i),Ga=n.hasFocus!==h?n.hasFocus():null,ka=ja&&(n.hasFocus===h||…
|
D | soundmanager2-jsmin.js | 20 …/i),da=h.console!==g&&console.log!==g,Ra=m.hasFocus!==g?m.hasFocus():null,va=ua&&(m.hasFocus===g||…
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ |
D | ViewLoaderTest.java | 235 mediaView.hasFocus(); in mergeIncludesShouldNotCreateAncestryLoops()
|
/external/libgdx/tests/gdx-tests-gwt/war/ |
D | soundmanager2-jsmin.js | 20 …/i),da=h.console!==g&&console.log!==g,Ra=m.hasFocus!==g?m.hasFocus():null,va=ua&&(m.hasFocus===g||…
|
/external/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/resources/html/war/ |
D | soundmanager2-jsmin.js | 20 …/i),da=h.console!==g&&console.log!==g,Ra=m.hasFocus!==g?m.hasFocus():null,va=ua&&(m.hasFocus===g||…
|