OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AUTHORITY
(Results
1 - 25
of
86
) sorted by null
1
2
3
4
/frameworks/base/core/tests/coretests/src/android/provider/
TestProvider.java
25
final static String
AUTHORITY
= "android.provider.TestProvider";
30
setupSuggestions(
AUTHORITY
, MODE);
/packages/apps/Gallery2/src_pd/com/android/photos/data/
PhotoProviderAuthority.java
20
public static final String
AUTHORITY
= "com.android.gallery3d.photoprovider";
/packages/apps/Launcher3/src/com/android/launcher3/config/
ProviderConfig.java
21
public static final String
AUTHORITY
= "com.android.launcher3.settings";
/cts/tests/src/android/provider/cts/
TestSearchRecentSuggestionsProvider.java
22
final static String
AUTHORITY
= "android.provider.cts.TestSRSProvider";
27
setupSuggestions(
AUTHORITY
, MODE);
/development/samples/ApiDemos/src/com/example/android/apis/app/
SearchSuggestionSampleProvider.java
24
* a unique
authority
and the mode you with to use. For more information, see
30
* This is the provider
authority
identifier. The same string must appear in your
34
final static String
AUTHORITY
= "com.example.android.apis.SuggestionProvider";
48
setupSuggestions(
AUTHORITY
, MODE);
/cts/tests/src/android/content/cts/
MockSRSProvider.java
21
final static String
AUTHORITY
= "android.content.cts.MockSRSProvider";
29
setupSuggestions(
AUTHORITY
, MODE);
37
public void setupSuggestions(String
authority
, int mode) {
39
super.setupSuggestions(
authority
, mode);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
SingleUserProvider.java
27
static final String
AUTHORITY
= "com.google.android.test.activity.single_user";
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryPackConstants.java
34
*
Authority
for the ContentProvider protocol.
37
public static final String
AUTHORITY
= DICTIONARY_DOMAIN;
/cts/tests/tests/webkit/src/android/webkit/cts/
MockContentProvider.java
38
public static final String
AUTHORITY
= MockContentProvider.class.getName();
/developers/build/prebuilts/gradle/StorageProvider/StorageProviderSample/src/main/java/com/example/android/storageprovider/
MyCloudFragment.java
37
private static final String
AUTHORITY
= "com.example.android.storageprovider.documents";
66
(
AUTHORITY
), null, false);
/developers/samples/android/content/documentsUi/StorageProvider/StorageProviderSample/src/main/java/com/example/android/storageprovider/
MyCloudFragment.java
37
private static final String
AUTHORITY
= "com.example.android.storageprovider.documents";
66
(
AUTHORITY
), null, false);
/development/samples/NotePad/src/com/example/android/notepad/
NotePad.java
29
public static final String
AUTHORITY
= "com.google.provider.NotePad";
84
public static final Uri CONTENT_URI = Uri.parse(SCHEME +
AUTHORITY
+ PATH_NOTES);
91
= Uri.parse(SCHEME +
AUTHORITY
+ PATH_NOTE_ID);
98
= Uri.parse(SCHEME +
AUTHORITY
+ PATH_NOTE_ID + "/#");
104
= Uri.parse(SCHEME +
AUTHORITY
+ PATH_LIVE_FOLDER);
/development/samples/Support4Demos/src/com/example/android/supportv4/content/
FileProviderExample.java
38
private static final String
AUTHORITY
= "com.example.android.supportv4.my_files";
54
final Uri uri = FileProvider.getUriForFile(this,
AUTHORITY
, file);
/development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudFragment.java
37
private static final String
AUTHORITY
= "com.example.android.storageprovider.documents";
66
(
AUTHORITY
), null, false);
/development/samples/training/threadsample/src/com/example/android/threadsample/
DataProviderContract.java
19
// The provider's
authority
20
public static final String
AUTHORITY
= "com.example.android.threadsample";
25
public static final Uri CONTENT_URI = Uri.parse(SCHEME + "://" +
AUTHORITY
);
/external/smack/src/org/xbill/DNS/
Section.java
19
/** The
authority
(third) section */
20
public static final int
AUTHORITY
= 2;
46
sections.add(
AUTHORITY
, "au");
51
longSections[
AUTHORITY
] = "
AUTHORITY
RECORDS";
/frameworks/base/core/java/android/provider/
UserDictionary.java
34
/**
Authority
string for this provider. */
35
public static final String
AUTHORITY
= "user_dictionary";
41
Uri.parse("content://" +
AUTHORITY
);
54
Uri.parse("content://" +
AUTHORITY
+ "/words");
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/tests/
CrashingIconProvider.java
33
public static final String
AUTHORITY
= "com.android.quicksearchbox.tests.iconcrash";
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
DumpFileProvider.java
36
public static final String
AUTHORITY
= "com.android.contacts.dumpfile";
37
public static final Uri AUTHORITY_URI = Uri.parse("content://" +
AUTHORITY
);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
TypedUriMatcherImplTest.java
51
private final static String
AUTHORITY
= "
authority
";
52
private final static String BASE_URI = "scheme://" +
AUTHORITY
+ "/";
61
new TypedUriMatcherImpl<TestUriType>(
AUTHORITY
, TestUriType.values());
65
// Incorrect
authority
.
/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksContract.java
28
*
Authority
URI: content://com.android.partnerbookmarks
41
/** The
authority
for the partner bookmarks provider */
42
public static final String
AUTHORITY
= "com.android.partnerbookmarks";
44
/** A content:// style uri to the
authority
for the partner bookmarks provider */
45
public static final Uri AUTHORITY_URI = Uri.parse("content://" +
AUTHORITY
);
/cts/tests/tests/content/src/android/content/cts/
ContentUrisTest.java
25
private static final String
AUTHORITY
= "ctstest";
32
private Uri uri1 = Uri.parse("content://" +
AUTHORITY
+ "/" + PATH1);
33
private Uri uri2 = Uri.parse("content://" +
AUTHORITY
+ "/" + PATH2);
70
String expected = "content://" +
AUTHORITY
+ "/" + PATH1 + "/" + CODE1;
76
expected = "content://" +
AUTHORITY
+ "/" + PATH2 + "/" + CODE2;
91
String expected = "content://" +
AUTHORITY
+ "/" + PATH1 + "/" + CODE1;
98
expected = "content://" +
AUTHORITY
+ "/" + PATH2 + "/" + CODE2;
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java
34
public static String
AUTHORITY
= "com.example.android.searchabledict.DictionaryProvider";
35
public static final Uri CONTENT_URI = Uri.parse("content://" +
AUTHORITY
+ "/dictionary");
58
matcher.addURI(
AUTHORITY
, "dictionary", SEARCH_WORDS);
59
matcher.addURI(
AUTHORITY
, "dictionary/#", GET_WORD);
61
matcher.addURI(
AUTHORITY
, SearchManager.SUGGEST_URI_PATH_QUERY, SEARCH_SUGGEST);
62
matcher.addURI(
AUTHORITY
, SearchManager.SUGGEST_URI_PATH_QUERY + "/*", SEARCH_SUGGEST);
70
matcher.addURI(
AUTHORITY
, SearchManager.SUGGEST_URI_PATH_SHORTCUT, REFRESH_SHORTCUT);
71
matcher.addURI(
AUTHORITY
, SearchManager.SUGGEST_URI_PATH_SHORTCUT + "/*", REFRESH_SHORTCUT);
/packages/apps/Browser/src/com/android/browser/homepages/
HomeProvider.java
40
public static final String
AUTHORITY
= "com.android.browser.home";
41
public static final String MOST_VISITED = "content://" +
AUTHORITY
+ "/";
95
if (
AUTHORITY
.equals(uri.getAuthority())) {
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/database/
NoNullCursorAsyncQueryHandlerTest.java
35
private static final String
AUTHORITY
= "com.android.contacts.common.unittest";
36
private static final Uri URI = Uri.parse("content://" +
AUTHORITY
);
52
mMockContentResolver.addProvider(
AUTHORITY
, mMockContentProvider);
Completed in 971 milliseconds
1
2
3
4