Home
last modified time | relevance | path

Searched refs:parse (Results 1 – 25 of 883) sorted by relevance

12345678910>>...36

/packages/services/Telephony/tests/src/com/android/services/telephony/
DImsConferenceTest.java94 Uri.parse("tel:6505551212"), in testPropertyPropagation()
96 Uri.parse("sip:6505551212@testims.com"), in testPropertyPropagation()
100 Uri.parse("tel:6505551213"), in testPropertyPropagation()
102 Uri.parse("sip:6505551213@testims.com"), in testPropertyPropagation()
136 Uri.parse("tel:6505551212"), in testSinglePartyEmulation()
138 Uri.parse("sip:6505551212@testims.com"), in testSinglePartyEmulation()
142 Uri.parse("tel:6505551213"), in testSinglePartyEmulation()
144 Uri.parse("sip:6505551213@testims.com"), in testSinglePartyEmulation()
187 Uri.parse("tel:6505551212"), in testDisconnectParticipantViaDisconnectState()
189 Uri.parse("sip:6505551212@testims.com"), in testDisconnectParticipantViaDisconnectState()
[all …]
DConferenceParticipantConnectionTest.java38 assertUrisEqual(Uri.parse("tel:+16505551212"), in testParticipantParseSimpleTel()
39 getParticipantAddress(Uri.parse("tel:6505551212"), "US")); in testParticipantParseSimpleTel()
44 assertUrisEqual(Uri.parse("tel:+16505551212"), in testParticipantParseTelExtended()
45 getParticipantAddress(Uri.parse("tel:6505551212;phone-context=blah"), "US")); in testParticipantParseTelExtended()
50 assertUrisEqual(Uri.parse("tel:+16505551212"), in testParticipantParseSip()
51 getParticipantAddress(Uri.parse("sip:16505551212;phone-context=blah.com@host.com"), in testParticipantParseSip()
57 assertUrisEqual(Uri.parse("tel:+12125551212"), in testParticipantParseSip2()
58 getParticipantAddress(Uri.parse("sip:+1-212-555-1212@something.com;user=phone"), in testParticipantParseSip2()
64 assertUrisEqual(Uri.parse("tel:+819066570660"), in testParticipantParseTelJp()
65 getParticipantAddress(Uri.parse( in testParticipantParseTelJp()
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/pm/
DVendorServiceInfoTest.java35 assertThrows(IllegalArgumentException.class, () -> VendorServiceInfo.parse("")); in emptyString()
41 () -> VendorServiceInfo.parse(SERVICE_NAME + "#user=system#bind=bind")); in multipleHashTags()
47 () -> VendorServiceInfo.parse(SERVICE_NAME + "#user=system,unknownKey=blah")); in unknownArg()
53 () -> VendorServiceInfo.parse("invalidComponentName")); in invalidComponentName()
58 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME); in testServiceNameWithDefaults()
71 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=start"); in startService()
81 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=bind"); in bindService()
89 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=startForeground"); in startServiceInForeground()
97 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=asap"); in triggerAsap()
104 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=userUnlocked"); in triggerUnlocked()
[all …]
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DUriTest.java32 parcelAndUnparcel(Uri.parse("foo:bob%20lee")); in testParcelling()
57 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build(); in testBuildUpon()
90 Uri.parse("foo:bob%20lee").getSchemeSpecificPart()); in testStringUri()
92 Uri.parse("foo:bob%20lee").getEncodedSchemeSpecificPart()); in testStringUri()
95 Uri.parse("foo:/bob%20lee").getEncodedPath()); in testStringUri()
96 assertNull(Uri.parse("foo:bob%20lee").getPath()); in testStringUri()
99 Uri.parse("foo:?bob%20lee").getEncodedQuery()); in testStringUri()
100 assertNull(Uri.parse("foo:bob%20lee").getEncodedQuery()); in testStringUri()
101 assertNull(Uri.parse("foo:bar#?bob%20lee").getQuery()); in testStringUri()
104 Uri.parse("foo:#bob%20lee").getEncodedFragment()); in testStringUri()
[all …]
/packages/modules/Connectivity/tests/common/java/android/net/
DCaptivePortalDataTest.kt43 .setUserPortalUrl(Uri.parse("https://portal.example.com/test"))
44 .setVenueInfoUrl(Uri.parse("https://venue.example.com/test"))
61 setUserPortalUrl(Uri.parse("https://tc.example.com/passpoint"), in <lambda>()
63 setVenueInfoUrl(Uri.parse("https://venue.example.com/passpoint"), in <lambda>()
85 assertNotEqualsAfterChange { it.setUserPortalUrl(Uri.parse("https://example.com/")) } in testEquals()
87 assertNotEqualsAfterChange { it.setVenueInfoUrl(Uri.parse("https://example.com/")) } in testEquals()
100 Uri.parse("https://tc.example.com/passpoint")) } in testEquals()
102 Uri.parse("https://tc.example.com/passpoint"), in testEquals()
105 Uri.parse("https://tc.example.com/other"), in testEquals()
108 Uri.parse("https://tc.example.com/passpoint"), in testEquals()
[all …]
/packages/modules/Bluetooth/system/gd/rust/topshim/macros/src/
Dlib.rs7 use syn::parse::{Parse, ParseStream, Result};
19 fn parse(input: ParseStream) -> Result<Self> { in parse() method
21 let dispatcher: Type = input.parse()?; in parse()
22 input.parse::<Token![,]>()?; in parse()
25 let name: Ident = input.parse()?; in parse()
26 input.parse::<Token![->]>()?; in parse()
27 let rpath: Path = input.parse()?; in parse()
34 input.parse::<Token![,]>()?; in parse()
38 let block: Block = input.parse()?; in parse()
45 let start_type: Type = input.parse()?; in parse()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/
DANQPParser.java62 return VenueNameElement.parse(payload); in parseElement()
64 return RoamingConsortiumElement.parse(payload); in parseElement()
66 return IPAddressTypeAvailabilityElement.parse(payload); in parseElement()
68 return NAIRealmElement.parse(payload); in parseElement()
70 return ThreeGPPNetworkElement.parse(payload); in parseElement()
72 return DomainNameElement.parse(payload); in parseElement()
76 return VenueUrlElement.parse(payload); in parseElement()
95 return HSFriendlyNameElement.parse(payload); in parseHS20Element()
97 return HSWanMetricsElement.parse(payload); in parseHS20Element()
99 return HSConnectionCapabilityElement.parse(payload); in parseHS20Element()
[all …]
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/parser/
DExtrasProvisioningDataParserTest.java228 private static final Uri TEST_URI = Uri.parse("https://www.google.com/");
291 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_trustedSourceProvisioningIntent()
342 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_financedDeviceProvisioningIntent()
372 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_resumeProvisioningIntent()
396 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedProfileIntent()
432 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedProfileIntent_CompProvisioning()
468 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedProfileIntent_DeviceOwnerWithByodProvisioning()
482 assertThat(mExtrasProvisioningDataParser.parse(buildIntentWithAllLongExtras())) in testParse_shortExtras_sameAsLongExtras()
483 .isEqualTo(mExtrasProvisioningDataParser.parse(buildIntentWithAllShortExtras())); in testParse_shortExtras_sameAsLongExtras()
502 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedDeviceIntent()
[all …]
/packages/modules/Bluetooth/system/gd/rust/gddi/macros/
Dlib.rs6 use syn::parse::{Parse, ParseStream, Result};
9 braced, parse, parse_macro_input, DeriveInput, Fields, FnArg, Ident, ItemFn, ItemStruct, Path,
16 let function: ItemFn = parse(item).expect("can only be applied to functions"); in provides()
67 fn parse(input: ParseStream) -> Result<Self> { in parse() method
69 let name = input.parse()?; in parse()
70 input.parse::<Token![,]>()?; in parse()
96 fn parse(input: ParseStream) -> Result<Self> { in parse() method
99 match input.parse::<Ident>()?.to_string().as_str() { in parse()
106 let ty = input.parse()?; in parse()
107 input.parse::<Token![=>]>()?; in parse()
[all …]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
DVenueUrlElementTest.java97 assertTrue(VenueUrlElement.parse(ByteBuffer.allocate(0)).getVenueUrls().isEmpty()); in parseEmptyBuffer()
111 VenueUrlElement.parse(buffer); in parseTruncatedBuffer()
120 VenueUrlElement.parse(buffer); in parseBufferWithEmptyVenueUrl()
129 VenueUrlElement.parse(buffer); in parseBufferWithInvalidVenueUrl()
145 VenueUrlElement.parse(ByteBuffer.wrap(stream.toByteArray())); in parseBufferWithInvalidLength()
155 assertTrue(VenueUrlElement.parse(buffer).getVenueUrls().isEmpty()); in parseBufferWithZeroVenueNumber()
165 assertTrue(VenueUrlElement.parse(buffer).getVenueUrls().isEmpty()); in parseBufferWithZeroVenueNumberAndUrlData()
181 assertEquals(expectedElement, VenueUrlElement.parse(buffer)); in parseBufferWithNegativeVenueNumberAndUrlData()
208 assertEquals(expectedElement, VenueUrlElement.parse(buffer)); in parseBufferWithValidVenueUrls()
226 assertEquals(expectedElement, VenueUrlElement.parse(buffer)); in parseBufferWithValidVenueUrlsAndCapsUrls()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DEAPMethod.java56 public static EAPMethod parse(ByteBuffer payload) throws ProtocolException { in parse() method in EAPMethod
90 return ExpandedEAPMethod.parse(payload, length, false); in parseAuthParam()
92 return NonEAPInnerAuth.parse(payload, length); in parseAuthParam()
94 return InnerAuthEAP.parse(payload, length); in parseAuthParam()
96 return ExpandedEAPMethod.parse(payload, length, true); in parseAuthParam()
98 return CredentialType.parse(payload, length, false); in parseAuthParam()
100 return CredentialType.parse(payload, length, true); in parseAuthParam()
102 return VendorSpecificAuth.parse(payload, length); in parseAuthParam()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothInCallServiceTest.java275 when(activeCall.getHandle()).thenReturn(Uri.parse("tel:555-000")); in testListCurrentCallsOneCall()
330 when(silentRingingCall.getHandle()).thenReturn(Uri.parse("tel:555-000")); in testListCurrentCallsSilentRinging()
365 new GatewayInfo(null, null, Uri.parse("tel:555-0000"))); in testConferenceInProgressCDMA()
367 new GatewayInfo(null, null, Uri.parse("tel:555-0001"))); in testConferenceInProgressCDMA()
411 when(parentCall.getHandle()).thenReturn(Uri.parse("tel:555-0000")); in testListCurrentCallsCdmaHold()
413 when(foregroundCall.getHandle()).thenReturn(Uri.parse("tel:555-0001")); in testListCurrentCallsCdmaHold()
415 when(heldCall.getHandle()).thenReturn(Uri.parse("tel:555-0002")); in testListCurrentCallsCdmaHold()
429 new GatewayInfo(null, null, Uri.parse("tel:555-0001"))); in testListCurrentCallsCdmaHold()
431 new GatewayInfo(null, null, Uri.parse("tel:555-0002"))); in testListCurrentCallsCdmaHold()
465 when(parentCall.getHandle()).thenReturn(Uri.parse("tel:555-0000")); in testListCurrentCallsCdmaConference()
[all …]
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DSmsProviderTest.java163 assertEquals(Uri.parse("content://sms/1"), in testInsertUri()
164 mContentResolver.insert(Uri.parse("content://sms"), values)); in testInsertUri()
165 assertEquals(Uri.parse("content://sms/2"), in testInsertUri()
166 mContentResolver.insert(Uri.parse("content://sms"), values)); in testInsertUri()
174 assertEquals(Uri.parse("content://sms/attachments/1"), in testInsertUri()
175 mContentResolver.insert(Uri.parse("content://sms/attachments"), values)); in testInsertUri()
182 assertEquals(Uri.parse("content://sms/raw/1"), in testRawTableInsert()
202 assertEquals(Uri.parse("content://sms/raw/2"), in testRawTableInsert()
204 assertEquals(Uri.parse("content://sms/raw/3"), in testRawTableInsert()
213 assertEquals(Uri.parse("content://sms/raw/1"), in testRawTableDelete()
[all …]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DNewOutgoingCallIntentBroadcasterTest.java125 Uri handle = Uri.parse("tel:6505551234"); in testSelfManagedCall()
150 Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(voicemailNumber)); in testVoicemailCall()
157 verify(mCallsManager).placeOutgoingCall(eq(mCall), eq(Uri.parse(voicemailNumber)), in testVoicemailCall()
164 badCallActionHelper(Uri.parse("voicemail:18005551234"), DisconnectCause.OUTGOING_CANCELED); in testVoicemailCallWithBadAction()
170 badCallActionHelper(Uri.parse("tel:6505551234"), DisconnectCause.INVALID_NUMBER); in testTelCallWithBadCallAction()
176 badCallActionHelper(Uri.parse("sip:testuser@testsite.com"), DisconnectCause.INVALID_NUMBER); in testSipCallWithBadCallAction()
192 Uri handle = Uri.parse("tel:6505551234"); in testAlreadyDisconnectedCall()
207 Uri handle = Uri.parse("tel:"); in testNoNumberSupplied()
219 Uri handle = Uri.parse("content://com.android.contacts/data/1"); in testNoCallsPlacedWithContentUri()
233 Uri handle = Uri.parse("tel:6505551911"); in testEmergencyCallWithNonDefaultDialer()
[all …]
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DManualDiscovery.java43 private static final Uri[] IPP_URIS = {Uri.parse("ipp://host:631/ipp/print"),
44 Uri.parse("ipp://host:80/ipp/print"), Uri.parse("ipp://host:631/ipp/printer"),
45 Uri.parse("ipp://host:631/ipp"), Uri.parse("ipp://host:631/"),
46 Uri.parse("ipps://host:631/ipp/print"), Uri.parse("ipps://host:443/ipp/print"),
47 Uri.parse("ipps://host:10443/ipp/print")};
208 Uri uuid = TextUtils.isEmpty(capabilities.uuid) ? null : Uri.parse(capabilities.uuid); in handleCapabilities()
/packages/apps/Tag/src/com/android/apps/tag/message/
DNdefMessageParser.java43 public static ParsedNdefMessage parse(NdefMessage message) { in parse() method in NdefMessageParser
55 elements.add(SmartPoster.parse(record)); in getRecords()
57 elements.add(UriRecord.parse(record)); in getRecords()
59 elements.add(TextRecord.parse(record)); in getRecords()
61 elements.add(ImageRecord.parse(record)); in getRecords()
63 elements.add(VCardRecord.parse(record)); in getRecords()
65 elements.add(MimeRecord.parse(record)); in getRecords()
/packages/services/Car/tests/carservice_test/src/com/android/car/
DCarUxRestrictionsConfigurationXmlParserTest.java56 CarUxRestrictionsConfigurationXmlParser.parse(getContext(), R.xml.car_ux_restrictions_map); in testParsingDefaultConfiguration()
61 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingParameters()
72 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingNonMovingState()
85 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMovingState_NoSpeedRange()
96 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMovingState_SingleSpeedRange()
107 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMovingState_MultiSpeedRange()
121 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingPassengerState()
140 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingPassengerMode_ValuesInBaselineAreNotAffected()
163 CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMultipleConfigurations()
181 CarUxRestrictionsConfigurationXmlParser.parse( in testMultipleConfigurationsShareParameters()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/enterprise/
DEnterprisePolicyGuardTest.java54 Uri.parse("content://com.android.contacts/contacts/" + CONTACT_ID + "/photo");
56 .parse("content://com.android.contacts/contacts/" + CONTACT_ID + "/display_photo");
58 Uri.parse("content://com.android.contacts/contacts/filter/" + CONTACT_NAME);
60 .parse("content://com.android.contacts/data/phones/filter/" + CONTACT_NAME);
61 private static final Uri URI_CALLABLES_FILTER = Uri.parse(
64 .parse("content://com.android.contacts/data/emails/filter/" + CONTACT_NAME);
66 Uri.parse("content://com.android.contacts/data/emails/lookup/"
68 private static final Uri URI_PHONE_LOOKUP = Uri.parse(
71 Uri.parse("content://com.android.contacts/directories");
73 Uri.parse("content://com.android.contacts/directories/" + DIRECTORY_ID);
[all …]
/packages/apps/Messaging/tests/src/com/android/messaging/ui/
DMultiAttachmentLayoutTest.java81 "image/jpeg", Uri.parse("content://uri1"), 100, 100); in testBindTwoAttachments()
83 "image/jpeg", Uri.parse("content://uri2"), 100, 100); in testBindTwoAttachments()
93 "image/jpeg", Uri.parse("content://uri1"), 100, 100); in testBindFiveAttachments()
95 "image/jpeg", Uri.parse("content://uri2"), 100, 100); in testBindFiveAttachments()
97 "image/jpeg", Uri.parse("content://uri3"), 100, 100); in testBindFiveAttachments()
99 "image/jpeg", Uri.parse("content://uri4"), 100, 100); in testBindFiveAttachments()
101 "image/jpeg", Uri.parse("content://uri5"), 100, 100); in testBindFiveAttachments()
/packages/modules/Virtualization/vm/src/
Dmain.rs48 #[structopt(parse(from_os_str))]
52 #[structopt(parse(from_os_str))]
56 #[structopt(parse(from_os_str))]
75 #[structopt(long, default_value = "none", parse(try_from_str=parse_debug_level))]
106 #[structopt(parse(from_os_str))]
149 #[structopt(parse(from_os_str))]
156 …#[structopt(short="t", long="type", default_value="raw", parse(try_from_str=parse_partition_type))]
162 #[structopt(parse(from_os_str))]
165 #[structopt(parse(from_os_str))]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DCertificateSubjectInfoTest.java47 CertificateSubjectInfo info = CertificateSubjectInfo.parse(TEST_SUBJECT_INFO); in verifyNormalSubjectInfoString()
61 assertNull(CertificateSubjectInfo.parse(subjectInfo)); in verifySubjectInfoStringWithoutCommonName()
69 CertificateSubjectInfo info = CertificateSubjectInfo.parse(subjectInfo); in testEscpaedSubjectString()
78 CertificateSubjectInfo info = CertificateSubjectInfo.parse(subjectInfo); in testEscpaedSubjectStringWithDoubleTrailingSlash()
86 assertNull(CertificateSubjectInfo.parse( in testInvalidEscpaedSubjectString()
89 assertNull(CertificateSubjectInfo.parse( in testInvalidEscpaedSubjectString()
/packages/apps/Nfc/tests/unit/src/com/android/nfc/
DNfcRoutingTableParseTest.java67 mRoutingTableParser.parse(rt); in testParseValidTechnologyEntry()
86 mRoutingTableParser.parse(rt); in testParseInvalidTechnologyEntry()
105 mRoutingTableParser.parse(rt); in testParseValidProtocolEntry()
124 mRoutingTableParser.parse(rt); in testParseInvalidProtocolEntry()
143 mRoutingTableParser.parse(rt); in testParseValidAidEntry()
162 mRoutingTableParser.parse(rt); in testParseInvalidAidEntry()
181 mRoutingTableParser.parse(rt); in testParseValidSystemCodeEntry()
202 mRoutingTableParser.parse(rt); in testParseSeveralValidSystemCodeEntry()
223 mRoutingTableParser.parse(rt); in testParseInvalidSystemCodeEntry()
/packages/modules/Bluetooth/system/gd/rust/packets/
Dtest_lib.rs56 let res = TestEnumPacket::parse(&input); in test_invalid_enum_field_value()
64 let res = TestCustomFieldPacket::parse(&input); in test_invalid_custom_field_value()
72 let res = TestArraySizePacket::parse(&input); in test_invalid_array_size()
80 let res = TestArrayCountPacket::parse(&input); in test_invalid_array_count()
88 let res = TestPayloadSizePacket::parse(&input); in test_invalid_payload_size()
98 let res = TestBodySizePacket::parse(&input); in test_invalid_body_size()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/services/
DJobErrorHandlingTest.java38 Uri invalidUri1 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecoversFromInvalidUri()
40 Uri invalidUri2 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecoversFromInvalidUri()
53 Uri invalidUri1 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecordsInvalidUris()
55 Uri invalidUri2 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecordsInvalidUris()
67 Uri invalidUri1 = Uri.parse("content://poodles/chuckleberry/ham"); in testReportsCorrectFailureCount()
69 Uri invalidUri2 = Uri.parse("content://poodles/chuckleberry/ham"); in testReportsCorrectFailureCount()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/
DPickerUriResolverTest.java136 final Uri providerUriUserImplicit = Uri.parse("content://" + providerSuffix); in wrapProviderUriValid()
138 final Uri providerUriUser0 = Uri.parse("content://0@" + providerSuffix); in wrapProviderUriValid()
139 final Uri mediaUriUser0 = Uri.parse("content://media/picker/0/" + providerSuffix); in wrapProviderUriValid()
141 final Uri providerUriUser10 = Uri.parse("content://10@" + providerSuffix); in wrapProviderUriValid()
142 final Uri mediaUriUser10 = Uri.parse("content://media/picker/10/" + providerSuffix); in wrapProviderUriValid()
162 final Uri providerUriUserLong = Uri.parse("content://0@" + providerSuffixLong); in wrapProviderUriInvalid()
163 final Uri mediaUriUserLong = Uri.parse("content://media/picker/0/" + providerSuffixLong); in wrapProviderUriInvalid()
165 final Uri providerUriUserShort = Uri.parse("content://0@" + providerSuffixShort); in wrapProviderUriInvalid()
166 final Uri mediaUriUserShort = Uri.parse("content://media/picker/0/" + providerSuffixShort); in wrapProviderUriInvalid()
182 final Uri uri = Uri.parse("content://foo/album"); in testGetAlbumUri()
[all …]

12345678910>>...36