OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ApplicationsState
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Settings/src/com/android/settings/applications/
ManageApplications.java
61
import com.android.settings.applications.
ApplicationsState
.AppEntry;
147
private
ApplicationsState
mApplicationsState;
210
ApplicationsState
.AppEntry entry;
232
} else if (entry.size ==
ApplicationsState
.SIZE_INVALID) {
248
ApplicationsState
.Callbacks, AbsListView.RecyclerListener {
249
private final
ApplicationsState
mState;
251
private ArrayList<
ApplicationsState
.AppEntry> mBaseEntries;
252
private ArrayList<
ApplicationsState
.AppEntry> mEntries;
262
ArrayList<
ApplicationsState
.AppEntry> entries
273
mEntries = (ArrayList<
ApplicationsState
.AppEntry>)results.values
[
all
...]
InstalledAppDetails.java
20
import com.android.settings.applications.
ApplicationsState
.AppEntry;
81
ApplicationsState
.Callbacks {
91
private
ApplicationsState
mState;
92
private
ApplicationsState
.AppEntry mAppEntry;
327
mState =
ApplicationsState
.getInstance(getActivity().getApplication());
541
if (mAppEntry.size ==
ApplicationsState
.SIZE_INVALID
542
|| mAppEntry.size ==
ApplicationsState
.SIZE_UNKNOWN) {
[
all
...]
ApplicationsState.java
39
public class
ApplicationsState
{
40
static final String TAG = "
ApplicationsState
";
353
static
ApplicationsState
sInstance;
355
static
ApplicationsState
getInstance(Application app) {
358
sInstance = new
ApplicationsState
(app);
364
private
ApplicationsState
(Application app) {
367
mThread = new HandlerThread("
ApplicationsState
.Loader",
[
all
...]
Completed in 22 milliseconds