Home | History | Annotate | Download | only in documentsui

Lines Matching refs:RootInfo

48 import com.android.documentsui.model.RootInfo;
65 private LoaderCallbacks<Collection<RootInfo>> mCallbacks;
106 mCallbacks = new LoaderCallbacks<Collection<RootInfo>>() {
108 public Loader<Collection<RootInfo>> onCreateLoader(int id, Bundle args) {
114 Loader<Collection<RootInfo>> loader, Collection<RootInfo> result) {
126 public void onLoaderReset(Loader<Collection<RootInfo>> loader) {
156 final RootInfo root = ((DocumentsActivity) getActivity()).getCurrentRoot();
160 final RootInfo testRoot = ((RootItem) item).root;
224 public final RootInfo root;
226 public RootItem(RootInfo root) {
288 public RootsAdapter(Context context, Collection<RootInfo> roots, Intent includeApps) {
297 final List<RootInfo> clouds = Lists.newArrayList();
298 final List<RootInfo> locals = Lists.newArrayList();
300 for (RootInfo root : roots) {
324 for (RootInfo cloud : clouds) {
333 for (RootInfo local : locals) {
392 public static class RootComparator implements Comparator<RootInfo> {
394 public int compare(RootInfo lhs, RootInfo rhs) {