Searched defs:AUTHORITY (Results 1 - 5 of 5) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DSearchSuggestionSampleProvider.java34 final static String AUTHORITY = "com.example.android.apis.SuggestionProvider"; field in class:SearchSuggestionSampleProvider
48 setupSuggestions(AUTHORITY, MODE);
H A DLoaderThrottle.java65 public static final String AUTHORITY = "com.example.android.apis.app.LoaderThrottle"; field in class: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/NotePad/src/com/example/android/notepad/
H A DNotePad.java29 public static final String AUTHORITY = "com.google.provider.NotePad"; field in class: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/SearchableDictionary/src/com/example/android/searchabledict/
H A DDictionaryProvider.java34 public static String AUTHORITY = "com.example.android.searchabledict.DictionaryProvider"; field in class: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);
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java66 public static final String AUTHORITY = "com.example.android.apis.supportv4.app.LoaderThrottle"; field in class:LoaderThrottleSupport
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);

Completed in 36 milliseconds