HomeSort by relevance Sort by last modified time
    Searched refs:rootId (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
RootInfo.java 48 public String rootId;
69 rootId = null;
89 rootId = DurableUtils.readNullableString(in);
108 DurableUtils.writeNullableString(out, rootId);
145 root.rootId = getCursorString(cursor, Root.COLUMN_ROOT_ID);
175 return authority == null && rootId == null;
188 && "images_root".equals(rootId);
193 && "videos_root".equals(rootId);
198 && "audio_root".equals(rootId);
203 return "Root{authority=" + authority + ", rootId=" + rootId + ", title=" + title + "}"
    [all...]
DocumentStack.java 83 builder.append(root.rootId).append('#');
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentLoader.java 98 public final String rootId;
102 public RecentTask(String authority, String rootId) {
104 this.rootId = rootId;
130 final Uri uri = DocumentsContract.buildRecentDocumentsUri(authority, rootId);
133 mWithRoot = new RootCursorWrapper(authority, rootId, cursor, MAX_DOCS_FROM_ROOT);
136 Log.w(TAG, "Failed to load " + authority + ", " + rootId, e);
177 final RecentTask task = new RecentTask(root.authority, root.rootId);
RootsCache.java 105 mRecentsRoot.rootId = null;
276 public RootInfo getRootOneshot(String authority, String rootId) {
278 RootInfo root = getRootLocked(authority, rootId);
282 root = getRootLocked(authority, rootId);
288 public RootInfo getRootBlocking(String authority, String rootId) {
292 return getRootLocked(authority, rootId);
296 private RootInfo getRootLocked(String authority, String rootId) {
298 if (Objects.equal(root.rootId, rootId)) {
311 if (Objects.equal(test.rootId, root.rootId))
    [all...]
RootCursorWrapper.java 39 public static final String COLUMN_ROOT_ID = "android:rootId";
41 public RootCursorWrapper(String authority, String rootId, Cursor cursor, int maxCount) {
43 mRootId = rootId;
RecentsProvider.java 67 // state/authority/rootId/docId
103 public static Uri buildState(String authority, String rootId, String documentId) {
105 .appendPath("state").appendPath(authority).appendPath(rootId).appendPath(documentId)
182 final String rootId = uri.getPathSegments().get(2);
186 new String[] { authority, rootId, documentId }, null, null, sortOrder);
214 final String rootId = uri.getPathSegments().get(2);
218 key.put(StateColumns.ROOT_ID, rootId);
225 new String[] { authority, rootId, documentId });
DirectoryLoader.java 123 mRoot.authority, mRoot.rootId, mDoc.documentId);
168 cursor = new RootCursorWrapper(mUri.getAuthority(), mRoot.rootId, cursor, -1);
DirectoryFragment.java 176 builder.append(root != null ? root.rootId : "null").append(';');
267 root.authority, root.rootId, query);
358 root.authority, root.rootId, doc.documentId);
    [all...]
DocumentsActivity.java 272 final String rootId = DocumentsContract.getRootId(mRootUri);
273 return mRoots.getRootOneshot(mRootUri.getAuthority(), rootId);
    [all...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 72 public String rootId;
124 final String rootId;
126 rootId = ROOT_ID_PRIMARY_EMULATED;
128 rootId = volume.getUuid();
134 if (mIdToPath.containsKey(rootId)) {
135 Log.w(TAG, "Duplicate UUID " + rootId + "; skipping");
141 mIdToPath.put(rootId, path);
144 root.rootId = rootId;
147 if (ROOT_ID_PRIMARY_EMULATED.equals(rootId)) {
    [all...]
TestDocumentsProvider.java 295 public Cursor queryRecentDocuments(String rootId, String[] projection)
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 517 public static Uri buildRootUri(String authority, String rootId) {
519 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId).build();
530 public static Uri buildRecentDocumentsUri(String authority, String rootId) {
532 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId)
576 String authority, String rootId, String query) {
578 .appendPath(PATH_ROOT).appendPath(rootId).appendPath(PATH_SEARCH)
    [all...]
DocumentsProvider.java 229 public Cursor queryRecentDocuments(String rootId, String[] projection)
318 * @param rootId the root to search under.
328 public Cursor querySearchDocuments(String rootId, String query, String[] projection)
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetConfigure.java 86 void pickAccount(long rootId) {
87 BookmarkThumbnailWidgetService.setupWidgetState(this, mAppWidgetId, rootId);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
BrowserAccessibilityManager.java 112 int rootId = nativeGetRootId(mNativeObj);
114 virtualViewId = rootId;
117 mAccessibilityFocusId = rootId;
228 int rootId = nativeGetRootId(mNativeObj);
229 if (virtualViewId == rootId) {
  /developers/samples/android/content/documentsUi/StorageProvider/StorageProviderSample/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 154 public Cursor queryRecentDocuments(String rootId, String[] projection)
165 final File parent = getFileForDocId(rootId);
206 public Cursor querySearchDocuments(String rootId, String query, String[] projection)
212 final File parent = getFileForDocId(rootId);
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 154 public Cursor queryRecentDocuments(String rootId, String[] projection)
165 final File parent = getFileForDocId(rootId);
206 public Cursor querySearchDocuments(String rootId, String query, String[] projection)
212 final File parent = getFileForDocId(rootId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoring.java 362 String rootId = getId(primary);
367 if (doc != null && rootId != null) {
369 end, rootId, referenceId);
526 String rootId = getRootId();
527 if (rootId != null) {
528 return rootId + "_ref";
WrapInRefactoring.java 217 String rootId = getRootId();
223 doc, mSelectionStart, mSelectionEnd, rootId, id);
VisualRefactoring.java 348 String rootId, String referenceId) {
349 if (rootId == null) {
354 String match1 = rootId;
395 int end = start + rootId.length();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMAgent.js     [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 380 public Cursor queryRecentDocuments(String rootId, String[] projection)
388 if (TYPE_IMAGES_ROOT.equals(rootId)) {
396 } else if (TYPE_VIDEOS_ROOT.equals(rootId)) {
405 throw new UnsupportedOperationException("Unsupported root " + rootId);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
triedict.cpp     [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 226 public Cursor queryRecentDocuments(String rootId, String[] projection)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp     [all...]

Completed in 395 milliseconds

1 2