Home | History | Annotate | Download | only in development

Lines Matching defs:mList

84                 if(mList == null) {
85 mList = new ArrayList<ListItem>();
87 mList.add(new ListItem(app));
89 if (mList != null) {
90 Collections.sort(mList, sDisplayNameComparator);
95 if (mList == null) {
98 return mList.get(position);
102 return mList != null ? mList.size() : 0;
121 bindView(view, mList.get(position));
132 protected List<ListItem> mList;