Searched refs:mActive (Results 1 - 16 of 16) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLastComposedWord.java56 private boolean mActive; field in class:LastComposedWord
75 mActive = true;
81 mActive = false;
85 return mActive && !TextUtils.isEmpty(mCommittedWord) && !didCommitTypedWord();
/packages/apps/Settings/src/com/android/settings/location/
H A DLocationSettingsBase.java49 private boolean mActive = false; field in class:LocationSettingsBase
68 mActive = true;
82 mActive = false;
102 if (mActive) {
116 if (mActive) {
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DContactDeletionInteraction.java73 private boolean mActive; field in class:ContactDeletionInteraction
172 mActive = true;
192 if (mActive) {
223 if (!mActive) {
296 mActive = false;
303 outState.putBoolean(KEY_ACTIVE, mActive);
312 mActive = savedInstanceState.getBoolean(KEY_ACTIVE);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInfoDropTarget.java109 mActive = isVisible;
118 mActive = false;
H A DButtonDropTarget.java44 protected boolean mActive; field in class:ButtonDropTarget
107 return mActive;
H A DDeleteDropTarget.java172 mActive = isVisible;
184 mActive = false;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DInfoDropTarget.java112 mActive = isVisible;
121 mActive = false;
H A DButtonDropTarget.java42 protected boolean mActive; field in class:ButtonDropTarget
105 return mActive;
H A DDeleteDropTarget.java218 mActive = isVisible;
230 mActive = false;
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAlbumDataLoader.java340 private volatile boolean mActive = true; field in class:AlbumDataLoader.ReloadTask
355 while (mActive) {
357 if (mActive && !mDirty && updateComplete) {
363 if (mActive && (mFailedVersion != MediaObject.INVALID_DATA_VERSION)) {
393 mActive = false;
H A DAlbumSetDataLoader.java328 private volatile boolean mActive = true; field in class:AlbumSetDataLoader.ReloadTask
343 while (mActive) {
345 if (mActive && !mDirty && updateComplete) {
387 mActive = false;
H A DPhotoDataAdapter.java1011 private volatile boolean mActive = true; field in class:PhotoDataAdapter.ReloadTask
1024 while (mActive) {
1026 if (!mDirty && mActive) {
1098 mActive = false;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLRootView.java491 private boolean mActive = false; field in class:GLRootView.IdleRunner
497 mActive = false;
516 if (mActive) return;
517 mActive = true;
H A DTileImageView.java480 if (mTileUploader.mActive.compareAndSet(false, true)) {
561 AtomicBoolean mActive = new AtomicBoolean(false); field in class:TileImageView.TileUploader
583 if (tile == null) mActive.set(false);
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/
H A DIngestActivity.java68 private boolean mActive = false; field in class:IngestActivity
247 mActive = true;
260 mActive = false;
558 if (parent == null || !parent.mActive) {
/packages/apps/Settings/src/com/android/settings/applications/
H A DManageApplications.java561 private final ArrayList<View> mActive = new ArrayList<View>(); field in class:ManageApplications.ApplicationsAdapter
755 for (int i=0; i<mActive.size(); i++) {
756 AppViewHolder holder = (AppViewHolder)mActive.get(i).getTag();
834 mActive.remove(convertView);
835 mActive.add(convertView);
846 mActive.remove(view);

Completed in 283 milliseconds