HomeSort by relevance Sort by last modified time
    Searched refs:rootId (Results 1 - 25 of 38) 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;
280 public RootInfo getRootOneshot(String authority, String rootId) {
282 RootInfo root = getRootLocked(authority, rootId);
286 root = getRootLocked(authority, rootId);
292 public RootInfo getRootBlocking(String authority, String rootId) {
296 return getRootLocked(authority, rootId);
300 private RootInfo getRootLocked(String authority, String rootId) {
302 if (Objects.equals(root.rootId, rootId)) {
315 if (Objects.equals(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(';');
278 root.authority, root.rootId, query);
373 root.authority, root.rootId, doc.documentId);
    [all...]
DocumentsActivity.java 275 final String rootId = DocumentsContract.getRootId(mRootUri);
276 return mRoots.getRootOneshot(mRootUri.getAuthority(), rootId);
    [all...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 79 public String rootId;
133 final String rootId;
135 rootId = ROOT_ID_PRIMARY_EMULATED;
137 rootId = volume.getUuid();
143 if (mIdToPath.containsKey(rootId)) {
144 Log.w(TAG, "Duplicate UUID " + rootId + "; skipping");
150 mIdToPath.put(rootId, path);
153 root.rootId = rootId;
156 if (ROOT_ID_PRIMARY_EMULATED.equals(rootId)) {
    [all...]
TestDocumentsProvider.java 295 public Cursor queryRecentDocuments(String rootId, String[] projection)
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
BrowserAccessibilityManager.java 122 int rootId = nativeGetRootId(mNativeObj);
125 return createNodeForHost(rootId);
136 if (virtualViewId == rootId) {
355 private AccessibilityNodeInfo createNodeForHost(int rootId) {
383 result.addChild(mView, rootId);
434 int rootId = nativeGetRootId(mNativeObj);
435 if (rootId != mCurrentRootId) {
436 mCurrentRootId = rootId;
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetConfigure.java 86 void pickAccount(long rootId) {
87 BookmarkThumbnailWidgetService.setupWidgetState(this, mAppWidgetId, rootId);
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 544 public static Uri buildRootUri(String authority, String rootId) {
546 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId).build();
557 public static Uri buildRecentDocumentsUri(String authority, String rootId) {
559 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId)
684 String authority, String rootId, String query) {
686 .appendPath(PATH_ROOT).appendPath(rootId).appendPath(PATH_SEARCH)
    [all...]
DocumentsProvider.java 293 public Cursor queryRecentDocuments(String rootId, String[] projection)
382 * @param rootId the root to search under.
392 public Cursor querySearchDocuments(String rootId, String query, String[] projection)
    [all...]
  /frameworks/base/media/java/android/service/media/
MediaBrowserService.java 467 * @param rootId The root id for browsing.
470 public BrowserRoot(@NonNull String rootId, @Nullable Bundle extras) {
471 if (rootId == null) {
475 mRootId = rootId;
  /developers/build/prebuilts/gradle/StorageProvider/Application/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);
  /developers/samples/android/content/documentsUi/StorageProvider/Application/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/sdk/
DOMModel.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...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 227 public Cursor queryRecentDocuments(String rootId, String[] projection)

Completed in 364 milliseconds

1 2