OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AppEntry
(Results
1 - 3
of
3
) 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
85
public static class
AppEntry
{
86
public
AppEntry
(AppListLoader loader, ApplicationInfo info) {
152
public static final Comparator<
AppEntry
> ALPHA_COMPARATOR = new Comparator<
AppEntry
>() {
155
public int compare(
AppEntry
object1,
AppEntry
object2) {
210
public static class AppListLoader extends AsyncTaskLoader<List<
AppEntry
>> {
214
List<
AppEntry
> mApps;
231
@Override public List<
AppEntry
> loadInBackground() {
243
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
...]
Completed in 48 milliseconds