Searched defs:isActive (Results 1 - 11 of 11) sorted by relevance

/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/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/Email/emailcommon/src/com/android/emailcommon/service/
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/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/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/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/app/
H A DAlbumDataAdapter.java111 if (!isActive(index)) {
126 public boolean isActive(int index) { method in class:AlbumDataAdapter
H A DAlbumSetDataAdapter.java140 public boolean isActive(int index) { method in class:AlbumSetDataAdapter
/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) {

Completed in 4684 milliseconds