/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)
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/ |
BrowserAccessibilityManager.java | 117 int rootId = nativeGetRootId(mNativeObj); 120 return createNodeForHost(rootId); 131 if (virtualViewId == rootId) { 281 private AccessibilityNodeInfo createNodeForHost(int rootId) { 309 result.addChild(mView, rootId); 355 int rootId = nativeGetRootId(mNativeObj); 356 if (rootId != mCurrentRootId) { 357 mCurrentRootId = rootId;
|
/packages/apps/Browser/src/com/android/browser/widget/ |
BookmarkWidgetConfigure.java | 86 void pickAccount(long rootId) { 87 BookmarkThumbnailWidgetService.setupWidgetState(this, mAppWidgetId, rootId);
|
/developers/build/prebuilts/gradle/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);
|
/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 | 1071 * @param {!DOMAgent.NodeId} rootId 1073 _shadowRootPopped: function(hostId, rootId) 1078 var root = this._idToDOMNode[rootId]; [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)
|