HomeSort by relevance Sort by last modified time
    Searched defs:AUTHORITY (Results 1 - 25 of 26) sorted by null

1 2

  /cts/tests/tests/provider/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);
LoaderThrottle.java 63 * The authority we use to get to our sample provider.
65 public static final String AUTHORITY = "com.example.android.apis.app.LoaderThrottle";
83 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
90 = Uri.parse("content://" + AUTHORITY + "/main/");
187 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN);
188 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME + "/#", MAIN_ID);
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
RecentSuggestionsProvider.java 22 public final static String AUTHORITY = "com.example.android.supportv7.RecentSuggestionsProvider";
26 setupSuggestions(AUTHORITY, MODE);
  /cts/tests/tests/content/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);
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;
ContentResolverSyncTestCase.java 37 private static final String AUTHORITY = "android.content.cts.authority";
61 cancelSync(null, AUTHORITY, LATCH_TIMEOUT_MS);
99 String authority, int latchTimeoutMs, int accountIndex) {
118 assertEquals(authority, getMockSyncAdapter().getAuthority());
121 private void cancelSync(Account account, String authority, int latchTimeoutMillis) {
127 ContentResolver.cancelSync(account, authority);
137 private void requestSync(Account account, String authority, int latchTimeoutMillis) {
143 ContentResolver.requestSync(account, authority, extras);
153 private void setIsSyncable(Account account, String authority, boolean b)
    [all...]
DummyProvider.java 51 public static final String AUTHORITY = "android.content.cts.dummyprovider";
52 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
61 sMatcher.addURI(AUTHORITY, null, MATCH_NAME_VALUE);
62 sMatcher.addURI(AUTHORITY, MOCK_OPERATION, MATCH_MOCK_OPERATION);
ContentResolverTest.java 53 private static final String AUTHORITY = "ctstest";
54 private static final Uri TABLE1_URI = Uri.parse("content://" + AUTHORITY + "/testtable1/");
56 Uri.parse("content://" + AUTHORITY + "/testtable1/cross");
57 private static final Uri TABLE2_URI = Uri.parse("content://" + AUTHORITY + "/testtable2/");
58 private static final Uri SELF_URI = Uri.parse("content://" + AUTHORITY + "/self/");
59 private static final Uri CRASH_URI = Uri.parse("content://" + AUTHORITY + "/crash/");
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
MockContentProvider.java 38 public static final String AUTHORITY = MockContentProvider.class.getName();
  /developers/build/prebuilts/gradle/StorageProvider/Application/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/Application/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);
  /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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 42 public static final String AUTHORITY = "com.android.cts.verifier.testresultsprovider";
43 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
73 URI_MATCHER.addURI(AUTHORITY, RESULTS_PATH, RESULTS_ALL);
74 URI_MATCHER.addURI(AUTHORITY, RESULTS_PATH + "/#", RESULTS_ID);
75 URI_MATCHER.addURI(AUTHORITY, RESULTS_PATH + "/*", RESULTS_TEST_NAME);
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 34 * Content authority for this provider.
36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
59 sUriMatcher.addURI(AUTHORITY, "entries", ROUTE_ENTRIES);
60 sUriMatcher.addURI(AUTHORITY, "entries/*", ROUTE_ENTRIES_ID);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 34 * Content authority for this provider.
36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
59 sUriMatcher.addURI(AUTHORITY, "entries", ROUTE_ENTRIES);
60 sUriMatcher.addURI(AUTHORITY, "entries/*", ROUTE_ENTRIES_ID);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 34 * Content authority for this provider.
36 private static final String AUTHORITY = FeedContract.CONTENT_AUTHORITY;
59 sUriMatcher.addURI(AUTHORITY, "entries", ROUTE_ENTRIES);
60 sUriMatcher.addURI(AUTHORITY, "entries/*", ROUTE_ENTRIES_ID);
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
TestContentProvider.java 28 private static final String AUTHORITY =
41 return CONTENT_SCHEME + AUTHORITY + "/" + target;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java 64 * The authority we use to get to our sample provider.
66 public static final String AUTHORITY = "com.example.android.apis.supportv4.app.LoaderThrottle";
84 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
91 = Uri.parse("content://" + AUTHORITY + "/main/");
188 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN);
189 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME + "/#", MAIN_ID);
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 80 static final String AUTHORITY = "com.example.android.vault.provider";
433 DocumentsContract.buildChildDocumentsUri(AUTHORITY, name), null,
469 DocumentsContract.buildChildDocumentsUri(AUTHORITY, parentDocumentId));
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 332 milliseconds

1 2