HomeSort by relevance Sort by last modified time
    Searched full:componentname (Results 51 - 75 of 839) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 3 import android.content.ComponentName;
31 private ComponentName componentName;
40 componentName = new ComponentName(packageContext, cls);
57 componentName = other.componentName;
151 componentName = new ComponentName(packageName, className);
162 componentName = new ComponentName(packageContext.getPackageName(), className)
    [all...]
  /frameworks/base/core/java/android/app/
IServiceConnection.aidl 20 import android.content.ComponentName;
24 void connected(in ComponentName name, IBinder service);
  /frameworks/base/core/java/android/print/
IPrintSpoolerClient.aidl 19 import android.content.ComponentName;
30 void onAllPrintJobsForServiceHandled(in ComponentName printService);
IPrintSpooler.aidl 19 import android.content.ComponentName;
37 void getPrintJobInfos(IPrintSpoolerCallbacks callback, in ComponentName componentName,
  /frameworks/base/docs/html-intl/ja/training/monitoring-device-state/
manifest-receivers.jd 40 <pre>ComponentName receiver = new ComponentName(context, myReceiver.class);
  /frameworks/base/docs/html-intl/zh-cn/training/monitoring-device-state/
manifest-receivers.jd 40 <pre>ComponentName receiver = new ComponentName(context, myReceiver.class);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
ThirdPartyWallpaperPickerListAdapter.java 19 import android.content.ComponentName;
55 final ComponentName itemComponentName = new ComponentName(
79 final ComponentName[] imageActivities = new ComponentName[imagePickerActivities.size()];
82 imageActivities[i] = new ComponentName(activityInfo.packageName, activityInfo.name);
87 final ComponentName itemComponentName =
88 new ComponentName(info.activityInfo.packageName, info.activityInfo.name);
  /packages/apps/Launcher3/src/com/android/launcher3/
AppFilter.java 3 import android.content.ComponentName;
12 public abstract boolean shouldShowApp(ComponentName app);
AllAppsList.java 19 import android.content.ComponentName;
66 if (mAppFilter != null && !mAppFilter.shouldShowApp(info.componentName)) {
69 if (findActivity(data, info.componentName)) {
112 final ComponentName component = info.intent.getComponent();
131 final ComponentName component = applicationInfo.intent.getComponent();
152 mIconCache.remove(applicationInfo.componentName);
161 final ComponentName component = applicationInfo.intent.getComponent();
188 private static boolean findActivity(List<ResolveInfo> apps, ComponentName component) {
202 private static boolean findActivity(ArrayList<AppInfo> apps, ComponentName component) {
206 if (info.componentName.equals(component))
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
NavUtils.java 20 import android.content.ComponentName;
56 final ComponentName target = new ComponentName(activity, parentName);
226 * @throws NameNotFoundException if the ComponentName for sourceActivityClass is invalid
231 new ComponentName(context, sourceActivityClass));
235 final ComponentName target = new ComponentName(context, parentActivity);
249 * @param componentName ComponentName for the source Activity
251 * @throws NameNotFoundException if the ComponentName for sourceActivityClass is invali
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyActivityEvent.java 20 import android.content.ComponentName;
30 private ComponentName mApp;
33 public MonkeyActivityEvent(ComponentName app) {
38 public MonkeyActivityEvent(ComponentName app, long arg) {
MonkeyInstrumentationEvent.java 21 import android.content.ComponentName;
41 ComponentName cn = ComponentName.unflattenFromString(mRunnerName);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
FrontDoor.java 31 String componentName = intent.getComponent().getClassName();
32 if ("com.android.loaderapp.FrontDoorNormal".equals(componentName)) {
35 } else if ("com.android.loaderapp.FrontDoorXLarge".equals(componentName)) {
38 } else if ("com.android.loaderapp.FrontDoorGroupsXLarge".equals(componentName)) {
  /cts/hostsidetests/appsecurity/test-apps/InstrumentationAppDiffCert/src/com/android/cts/instrumentationdiffcertapp/
InstrumentationFailToRunTest.java 20 import android.content.ComponentName;
34 ComponentName appDiffCertInstrumentation = new ComponentName(myContext,
  /cts/tests/tests/permission/src/android/permission/cts/
AppWidgetManagerPermissionTest.java 20 import android.content.ComponentName;
40 * {@link AppWidgetManager#bindAppWidgetId(int, android.content.ComponentName)}
48 mAppWidgetManager.bindAppWidgetId(1, new ComponentName(mContext, "foo"));
  /frameworks/base/core/tests/coretests/src/android/app/activity/
MetaDataTest.java 19 import android.content.ComponentName;
42 private void checkMetaData(ComponentName cn, PackageItemInfo ci)
99 ComponentName cn = new ComponentName(mContext, LocalActivity.class);
112 ComponentName cn = new ComponentName(mContext, LocalReceiver.class);
125 ComponentName cn = new ComponentName(mContext, LocalService.class);
138 ComponentName cn = new ComponentName(mContext, LocalProvider.class)
    [all...]
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
ContactsMockPackageManager.java 18 import android.content.ComponentName;
31 public Drawable getActivityLogo(ComponentName activityName) throws NameNotFoundException {
36 public Drawable getActivityIcon(ComponentName activityName) {
  /packages/apps/Provision/src/com/android/provision/
DefaultActivity.java 20 import android.content.ComponentName;
40 ComponentName name = new ComponentName(this, DefaultActivity.class);
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
ApplicationsLatency.java 19 import android.content.ComponentName;
38 private static ComponentName APPS_COMPONENT =
39 new ComponentName("com.android.providers.applications",
ContactsLatency.java 19 import android.content.ComponentName;
38 private static ComponentName CONTACTS_COMPONENT =
39 new ComponentName("com.android.contacts",
WebConcurrency.java 19 import android.content.ComponentName;
50 private ComponentName getWebSearchComponent() {
57 ComponentName webComponent = getWebSearchComponent();
  /packages/apps/Stk/src/com/android/stk/
StkAppInstaller.java 21 import android.content.ComponentName;
49 ComponentName cName = new ComponentName("com.android.stk",
  /cts/tests/tests/app/src/android/app/cts/
TabActivityTest.java 23 import android.content.ComponentName;
86 final ComponentName componentName = new ComponentName(context, MockTabActivity.class);
87 final ActivityInfo info = context.getPackageManager().getActivityInfo(componentName, 0);
  /frameworks/base/core/java/com/android/internal/appwidget/
IAppWidgetService.aidl 19 import android.content.ComponentName;
50 void updateAppWidgetProvider(in ComponentName provider, in RemoteViews views, int userId);
56 void bindAppWidgetId(int appWidgetId, in ComponentName provider, in Bundle options, int userId);
58 in ComponentName provider, in Bundle options, int userId);
61 int[] getAppWidgetIds(in ComponentName provider, int userId);
  /frameworks/base/test-runner/src/android/test/mock/
MockPackageManager.java 19 import android.content.ComponentName;
124 public ActivityInfo getActivityInfo(ComponentName className, int flags)
130 public ActivityInfo getReceiverInfo(ComponentName className, int flags)
136 public ServiceInfo getServiceInfo(ComponentName className, int flags)
142 public ProviderInfo getProviderInfo(ComponentName className, int flags)
253 public List<ResolveInfo> queryIntentActivityOptions(ComponentName caller,
308 public InstrumentationInfo getInstrumentationInfo(ComponentName className, int flags)
325 public Drawable getActivityIcon(ComponentName activityName)
351 public Drawable getActivityLogo(ComponentName activityName) throws NameNotFoundException {
387 public Resources getResourcesForActivity(ComponentName activityName
    [all...]

Completed in 647 milliseconds

1 23 4 5 6 7 8 91011>>