OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AppEntry
(Results
1 - 5
of
5
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java
82
public static class
AppEntry
{
83
public
AppEntry
(AppListLoader loader, ApplicationInfo info) {
149
public static final Comparator<
AppEntry
> ALPHA_COMPARATOR = new Comparator<
AppEntry
>() {
152
public int compare(
AppEntry
object1,
AppEntry
object2) {
207
public static class AppListLoader extends AsyncTaskLoader<List<
AppEntry
>> {
211
List<
AppEntry
> mApps;
228
@Override public List<
AppEntry
> loadInBackground() {
240
List<
AppEntry
> entries = new ArrayList<AppEntry>(apps.size())
[
all
...]
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java
82
public static class
AppEntry
{
83
public
AppEntry
(AppListLoader loader, ApplicationInfo info) {
149
public static final Comparator<
AppEntry
> ALPHA_COMPARATOR = new Comparator<
AppEntry
>() {
152
public int compare(
AppEntry
object1,
AppEntry
object2) {
207
public static class AppListLoader extends AsyncTaskLoader<List<
AppEntry
>> {
211
List<
AppEntry
> mApps;
228
@Override public List<
AppEntry
> loadInBackground() {
240
List<
AppEntry
> entries = new ArrayList<AppEntry>(apps.size())
[
all
...]
/packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java
47
public void onRebuildComplete(ArrayList<
AppEntry
> apps);
78
public static class
AppEntry
extends SizeInfo {
107
AppEntry
(Context context, ApplicationInfo info, long id) {
152
public static final Comparator<
AppEntry
> ALPHA_COMPARATOR = new Comparator<
AppEntry
>() {
155
public int compare(
AppEntry
object1,
AppEntry
object2) {
163
public static final Comparator<
AppEntry
> SIZE_COMPARATOR
164
= new Comparator<
AppEntry
>() {
167
public int compare(
AppEntry
object1, AppEntry object2)
[
all
...]
ManageApplications.java
61
import com.android.settings.applications.ApplicationsState.
AppEntry
;
210
ApplicationsState.
AppEntry
entry;
251
private ArrayList<ApplicationsState.
AppEntry
> mBaseEntries;
252
private ArrayList<ApplicationsState.
AppEntry
> mEntries;
262
ArrayList<ApplicationsState.
AppEntry
> entries
273
mEntries = (ArrayList<ApplicationsState.
AppEntry
>)results.values;
315
Comparator<
AppEntry
> comparatorObj;
354
ArrayList<ApplicationsState.
AppEntry
> entries
379
ArrayList<ApplicationsState.
AppEntry
> applyPrefixFilter(CharSequence prefix,
380
ArrayList<ApplicationsState.
AppEntry
> origEntries)
[
all
...]
InstalledAppDetails.java
20
import com.android.settings.applications.ApplicationsState.
AppEntry
;
92
private ApplicationsState.
AppEntry
mAppEntry;
426
public void onRebuildComplete(ArrayList<
AppEntry
> apps) {
[
all
...]
Completed in 915 milliseconds