Home | History | Annotate | Download | only in provider

Lines Matching refs:INTENT

23 import android.content.Intent;
175 Uri uri = Settings.Bookmarks.add(r, new Intent("TEST"),
183 v.put(Settings.Bookmarks.INTENT, "#Intent;action=TOAST;end");
289 assertCanBeHandled(new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS));
290 assertCanBeHandled(new Intent(Settings.ACTION_ADD_ACCOUNT));
291 assertCanBeHandled(new Intent(Settings.ACTION_AIRPLANE_MODE_SETTINGS));
292 assertCanBeHandled(new Intent(Settings.ACTION_APN_SETTINGS));
293 assertCanBeHandled(new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS)
295 assertCanBeHandled(new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS));
296 assertCanBeHandled(new Intent(Settings.ACTION_APPLICATION_SETTINGS));
297 assertCanBeHandled(new Intent(Settings.ACTION_BLUETOOTH_SETTINGS));
298 assertCanBeHandled(new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS));
299 assertCanBeHandled(new Intent(Settings.ACTION_DATE_SETTINGS));
300 assertCanBeHandled(new Intent(Settings.ACTION_DEVICE_INFO_SETTINGS));
301 assertCanBeHandled(new Intent(Settings.ACTION_DISPLAY_SETTINGS));
302 assertCanBeHandled(new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS));
303 assertCanBeHandled(new Intent(Settings.ACTION_INTERNAL_STORAGE_SETTINGS));
304 assertCanBeHandled(new Intent(Settings.ACTION_LOCALE_SETTINGS));
305 assertCanBeHandled(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS));
306 assertCanBeHandled(new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS));
307 assertCanBeHandled(new Intent(Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS));
308 assertCanBeHandled(new Intent(Settings.ACTION_MEMORY_CARD_SETTINGS));
309 assertCanBeHandled(new Intent(Settings.ACTION_NETWORK_OPERATOR_SETTINGS));
310 assertCanBeHandled(new Intent(Settings.ACTION_PRIVACY_SETTINGS));
311 assertCanBeHandled(new Intent(Settings.ACTION_QUICK_LAUNCH_SETTINGS));
312 assertCanBeHandled(new Intent(Settings.ACTION_SEARCH_SETTINGS));
313 assertCanBeHandled(new Intent(Settings.ACTION_SECURITY_SETTINGS));
314 assertCanBeHandled(new Intent(Settings.ACTION_SETTINGS));
315 assertCanBeHandled(new Intent(Settings.ACTION_SOUND_SETTINGS));
316 assertCanBeHandled(new Intent(Settings.ACTION_SYNC_SETTINGS));
317 assertCanBeHandled(new Intent(Settings.ACTION_SYSTEM_UPDATE_SETTINGS));
318 assertCanBeHandled(new Intent(Settings.ACTION_USER_DICTIONARY_SETTINGS));
319 assertCanBeHandled(new Intent(Settings.ACTION_WIFI_IP_SETTINGS));
320 assertCanBeHandled(new Intent(Settings.ACTION_WIFI_SETTINGS));
321 assertCanBeHandled(new Intent(Settings.ACTION_WIRELESS_SETTINGS));
324 private void assertCanBeHandled(final Intent intent) {
326 List<ResolveInfo> resolveInfoList = packageManager.queryIntentActivities(intent, 0);
328 // one or more activity can handle this intent.