Home
last modified time | relevance | path

Searched refs:appendPath (Results 1 – 25 of 55) sorted by relevance

123

/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/slice/
H A DSliceClientPermissionsTest.java67 .appendPath("first") in testRemoveBasic()
70 .appendPath("first") in testRemoveBasic()
74 .appendPath("first") in testRemoveBasic()
75 .appendPath("third") in testRemoveBasic()
93 .appendPath("first") in testRemoveSubtrees()
97 .appendPath("first") in testRemoveSubtrees()
98 .appendPath("third") in testRemoveSubtrees()
101 .appendPath("first") in testRemoveSubtrees()
105 .appendPath("first") in testRemoveSubtrees()
124 .appendPath("first") in testAddConsolidate_addFirst()
[all …]
/aosp14/frameworks/base/core/java/android/provider/
H A DSimPhonebookContract.java318 .appendPath(String.valueOf(recordNumber)) in getItemUri()
358 .appendPath(SUBSCRIPTION_ID_PATH_SEGMENT) in buildContentUri()
359 .appendPath(String.valueOf(subscriptionId)) in buildContentUri()
360 .appendPath(getEfUriPath(efType)); in buildContentUri()
485 .appendPath(ELEMENTARY_FILES_PATH_SEGMENT).build();
498 return CONTENT_URI.buildUpon().appendPath(SUBSCRIPTION_ID_PATH_SEGMENT) in getItemUri()
499 .appendPath(String.valueOf(subscriptionId)) in getItemUri()
500 .appendPath(getEfUriPath(efType)) in getItemUri()
H A DDocumentsContract.java921 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId).build(); in buildRootUri()
934 .authority(authority).appendPath(PATH_ROOT).appendPath(rootId) in buildRecentDocumentsUri()
935 .appendPath(PATH_RECENT).build(); in buildRecentDocumentsUri()
946 .appendPath(PATH_TREE).appendPath(documentId).build(); in buildTreeDocumentUri()
982 .authority(authority).appendPath(PATH_DOCUMENT); in getBaseDocumentUriBuilder()
1011 .appendPath(getTreeDocumentId(treeUri)).appendPath(PATH_DOCUMENT) in buildDocumentUriUsingTree()
1012 .appendPath(documentId).build(); in buildDocumentUriUsingTree()
1037 .appendPath(PATH_DOCUMENT).appendPath(parentDocumentId).appendPath(PATH_CHILDREN) in buildChildDocumentsUri()
1068 .appendPath(getTreeDocumentId(treeUri)).appendPath(PATH_DOCUMENT) in buildChildDocumentsUriUsingTree()
1069 .appendPath(parentDocumentId).appendPath(PATH_CHILDREN).build(); in buildChildDocumentsUriUsingTree()
[all …]
H A DTelephony.java2513 .appendPath(String.valueOf(messageId)).appendPath("addr").build(); in getAddrUriForMessage()
2641 .appendPath(String.valueOf(messageId)).appendPath( in getPartUriForMessage()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumePanelDialog.java231 .appendPath(SettingsSlicesContract.PATH_SETTING_ACTION)
232 .appendPath(MediaOutputConstants.KEY_REMOTE_MEDIA)
237 .appendPath(SettingsSlicesContract.PATH_SETTING_ACTION)
238 .appendPath("media_volume")
243 .appendPath(SettingsSlicesContract.PATH_SETTING_INTENT)
244 .appendPath("media_output_indicator")
249 .appendPath(SettingsSlicesContract.PATH_SETTING_ACTION)
250 .appendPath("call_volume")
255 .appendPath(SettingsSlicesContract.PATH_SETTING_ACTION)
256 .appendPath("ring_volume")
[all …]
/aosp14/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java51 return uri.buildUpon().appendPath("19").build(); in testInsert()
54 assertEquals(sTestUri1.buildUpon().appendPath("19").toString(), result.uri.toString()); in testInsert()
64 return uri.buildUpon().appendPath("19").build(); in testInsertNoValues()
67 assertEquals(sTestUri1.buildUpon().appendPath("19").toString(), result.uri.toString()); in testInsertNoValues()
106 return uri.buildUpon().appendPath("19").build(); in testInsertWithBackRefs()
109 assertEquals(sTestUri1.buildUpon().appendPath("19").toString(), result.uri.toString()); in testInsertWithBackRefs()
121 return uri.buildUpon().appendPath("19").build(); in testUpdate()
124 assertEquals(sTestUri1.buildUpon().appendPath("19").toString(), result.uri.toString()); in testUpdate()
H A DFakeProviderRemote.java67 .appendPath("canonical").build(); in canonicalize()
76 .appendPath("uncanonical").build(); in uncanonicalize()
/aosp14/frameworks/base/packages/SystemUI/customization/src/com/android/systemui/shared/customization/data/content/
H A DCustomizationProviderContract.kt59 LOCK_SCREEN_QUICK_AFFORDANCE_BASE_URI.buildUpon().appendPath(TABLE_NAME).build()
83 LOCK_SCREEN_QUICK_AFFORDANCE_BASE_URI.buildUpon().appendPath(TABLE_NAME).build()
140 LOCK_SCREEN_QUICK_AFFORDANCE_BASE_URI.buildUpon().appendPath(TABLE_NAME).build()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/textclassifier/
H A DIconsUriHelperTest.java50 .appendPath("1234") in testGetContentUri()
101 .appendPath("1234") in testGetResourceInfo_unrecognizedUri()
115 .appendPath("1234") in testGetResourceInfo_invalidScheme()
129 .appendPath("1234") in testGetResourceInfo_invalidAuthority()
H A DIconsContentProviderTest.java62 .appendPath("1234") in testLoadResource_badUri()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/enterprise/
H A DSupervisedDeviceActionDisabledByAdminController.java65 .appendPath("user_restrictions") in getPositiveButtonListener()
66 .appendPath(mRestriction) in getPositiveButtonListener()
H A DBiometricActionDisabledByAdminController.java66 .appendPath("biometric") in getPositiveButtonListener()
/aosp14/frameworks/base/tools/aapt/
H A DCacheUpdater.h75 toCreate = existsPath.getPathLeaf().appendPath(toCreate); in ensureDirectoriesExist()
82 existsPath.appendPath(toCreate.walkPath(&remains)); in ensureDirectoriesExist()
H A DAaptAssets.cpp99 fullPath.appendPath(path); in isHidden()
511 name.appendPath(mPath); in getPrintableSource()
704 pathName.appendPath(fileNames[i].string()); in slurpFullTree()
912 partialPath.appendPath(root); in addFile()
1157 subdirName.appendPath(entry->d_name); in slurpResourceTree()
/aosp14/system/core/libutils/include/utils/
H A DString8.h195 String8& appendPath(const char* leaf);
196 String8& appendPath(const String8& leaf) { return appendPath(leaf.string()); } in appendPath() function
202 { String8 p(*this); p.appendPath(leaf); return p; } in appendPathCopy()
/aosp14/frameworks/base/libs/androidfw/
H A DAssetManager.cpp91 path.appendPath(kResourceCache); in idmapPathForPackagePath()
107 path.appendPath(filename); in idmapPathForPackagePath()
184 realPath.appendPath(kAppZipName); in addAssetPath()
370 path.appendPath(kSystemAssets); in addDefaultAssets()
442 assetName.appendPath(fileName); in open()
792 path.appendPath(fileName); in openNonAssetInPathLocked()
844 sourceName.appendPath(dirName); in createZipSourceNameLocked()
846 sourceName.appendPath(fileName); in createZipSourceNameLocked()
856 if (rootDir != NULL) path.appendPath(rootDir); in createPathNameLocked()
1082 path.appendPath(dirName); in scanAndMergeDirLocked()
[all …]
/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/
H A DEnableZenModeDialogTest.java80 mController.mForeverId = Condition.newId(mContext).appendPath("forever").build(); in setup()
99 Uri alarm = Condition.newId(mContext).appendPath("alarm").build(); in setup()
101 Uri countdown = Condition.newId(mContext).appendPath("countdown").build(); in setup()
/aosp14/frameworks/base/core/java/android/content/
H A DContentUris.java137 builder.appendPath(segments.get(i)); in removeId()
/aosp14/frameworks/base/media/java/android/media/tv/
H A DTvContentRatingSystemInfo.java51 .appendPath(String.valueOf(xmlResourceId)) in createTvContentRatingSystemInfo()
/aosp14/frameworks/base/services/people/java/com/android/server/people/data/
H A DConversationStatusExpirationBroadcastReceiver.java56 .appendPath(getKey(userId, pkg, conversationId, status)) in scheduleExpiration()
/aosp14/frameworks/base/services/core/java/com/android/server/textclassifier/
H A DIconsUriHelper.java94 .appendPath(Integer.toString(resId)) in getContentUri()
/aosp14/frameworks/base/packages/SettingsLib/Tile/src/com/android/settingslib/drawer/
H A DTileUtils.java488 .appendPath(method) in buildUri()
489 .appendPath(key) in buildUri()
497 .appendPath(method) in buildUri()
/aosp14/frameworks/base/core/java/android/app/
H A DSearchManager.java919 uriBuilder.appendPath(SearchManager.SUGGEST_URI_PATH_QUERY); in getSuggestions()
928 uriBuilder.appendPath(query); in getSuggestions()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/users/
H A DAvatarPickerActivity.java360 .appendPath(getResources().getResourceTypeName(resourceId)) in uriForResourceId()
361 .appendPath(getResources().getResourceEntryName(resourceId)) in uriForResourceId()
/aosp14/frameworks/base/core/java/android/app/slice/
H A DSlice.java388 mUri = parent.mUri.buildUpon().appendPath("_gen") in Builder()
389 .appendPath(String.valueOf(mItems.size())).build(); in Builder()

123