Searched refs:isActive (Results 1 - 25 of 27) sorted by relevance

12

/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DIPolicyService.aidl21 boolean isActive(in Policy policies);
H A DPolicyServiceProxy.java70 public boolean isActive(final Policy arg0) throws RemoteException { method in class:PolicyServiceProxy
73 mReturn = mService.isActive(arg0);
75 }, "isActive");
78 Log.v(TAG, "isActive: " + ((mReturn == null) ? "null" : mReturn));
81 throw new ServiceUnavailableException("isActive");
160 public static boolean isActive(Context context, Policy policies) { method in class:PolicyServiceProxy
162 return new PolicyServiceProxy(context).isActive(policies);
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DAnimationSet.java69 public boolean isActive() { method in class:AnimationSet
71 if (anim.isActive()) return true;
H A DAnimation.java42 // The isActive() method returns true after the animation start() is called and
72 public boolean isActive() { method in class:Animation
/packages/apps/Gallery2/tests/src/com/android/gallery3d/anim/
H A DAnimationTest.java32 assertTrue(a.isActive()); // should be active now
42 assertTrue(!a.isActive()); // should be inactive now
45 assertTrue(a.isActive()); // should be active now
/packages/apps/Email/src/com/android/email/service/
H A DPolicyService.java34 public boolean isActive(Policy policy) {
35 return mSecurityPolicy.isActive(policy);
/packages/apps/Exchange/src/com/android/exchange/
H A DSecurityPolicyDelegate.java28 public static boolean isActive(Context context, Policy policy) { method in class:SecurityPolicyDelegate
30 return new PolicyServiceProxy(context).isActive(policy);
/packages/apps/Contacts/src/com/android/contacts/dialpad/
H A DDigitsEditText.java42 if (imm != null && imm.isActive(this)) {
53 if (imm != null && imm.isActive(this)) {
/packages/apps/Settings/src/com/android/settings/accounts/
H A DSyncStateCheckBoxPreference.java89 * @param isActive whether or not the sync is active
91 public void setActive(boolean isActive) { argument
92 mIsActive = isActive;
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnDictionary.java110 public boolean isActive(); method in interface:WnnDictionary
H A DOpenWnnDictionaryImpl.java344 public boolean isActive() { method in class:OpenWnnDictionaryImpl
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAlbumSlidingWindow.java201 private void requestSlotImage(int slotIndex, boolean isActive) { argument
216 private void cancelSlotImage(int slotIndex, boolean isActive) { argument
244 boolean isActive = isActiveSlot(slotIndex);
245 if (mListener != null && isActive) {
249 if (isActive && original.isRequestInProgress()) {
254 if (isActive) {
H A DAdaptiveBackground.java85 if (mAnimation.isActive()) {
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAlbumDataAdapter.java111 if (!isActive(index)) {
126 public boolean isActive(int index) { method in class:AlbumDataAdapter
H A DAlbumPage.java632 if (mAlbumDataAdapter.isActive(indexHint)) {
636 if (!mAlbumDataAdapter.isActive(mIndex)) {
H A DAlbumSetDataAdapter.java140 public boolean isActive(int index) { method in class:AlbumSetDataAdapter
H A DAlbumSetPage.java651 if (mAlbumSetDataAdapter.isActive(indexHint)) {
655 if (!mAlbumSetDataAdapter.isActive(mIndex)) {
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DOpenWnnEngineEN.java83 if (!mDictionary.isActive()) {
/packages/apps/Camera/src/com/android/camera/
H A DEffectsRecorder.java817 if (glEnv != null && !glEnv.isActive()) {
821 if (glEnv != null && glEnv.isActive()) {
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSecurity.java169 * will terminate when step 2 (isActive()) succeeds.
214 if (security.isActive(null)) {
H A DAccountServerBaseFragment.java305 if (imm != null && imm.isActive()) {
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DOpenWnnEngineJAJP.java137 if (!mDictionaryJP.isActive()) {
/packages/apps/Email/src/com/android/email/
H A DSecurityPolicy.java285 public boolean isActive(Policy policy) { method in class:SecurityPolicy
288 StringBuilder sb = new StringBuilder("isActive for " + policy + ": ");
312 * Return bits from isActive: Device Policy Manager has not been activated
317 * Return bits from isActive: Some required configuration is not correct (no user action).
322 * Return bits from isActive: Password needs to be set or updated
327 * Return bits from isActive: Encryption has not be enabled
506 * API: Sync service should call this any time a sync fails due to isActive() returning false.
/packages/apps/Music/src/com/android/music/
H A DMusicUtils.java1161 boolean isActive = (v.getId() == highlight);
1162 if (isActive) {
/packages/apps/Browser/src/com/android/browser/
H A DBaseUi.java547 if (mInputManager.isActive()) {

Completed in 3030 milliseconds

12