HomeSort by relevance Sort by last modified time
    Searched refs:realActivity (Results 1 - 9 of 9) sorted by null

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowListActivity.java 48 Method handler = realActivity.getClass().getDeclaredMethod("onListItemClick",
51 handler.invoke(realActivity, parent, view, position, id);
ShadowActivity.java 35 protected Activity realActivity;
106 contentView = getLayoutInflater().inflate(layoutResID, new FrameLayout(realActivity));
107 realActivity.onContentChanged();
113 realActivity.onContentChanged();
129 return LayoutInflater.from(realActivity);
134 return new MenuInflater(realActivity);
160 contentViewContainer = new FrameLayout(realActivity);
202 window = new TestWindow(realActivity);
259 shadowOf(getApplicationContext()).assertNoBroadcastListenersRegistered(realActivity, "Activity");
539 return method.invoke(realActivity, parameters)
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
TaskRecord.java 98 ComponentName realActivity; // The actual activity component that started the task.
233 realActivity = _realActivity;
309 realActivity = _intent != null ? _intent.getComponent() : null;
322 realActivity = targetComponent;
326 realActivity = targetComponent;
648 if (r.realActivity.equals(newR.realActivity)) {
722 final ComponentName realActivity = r.realActivity;
728 if (candidate.realActivity.equals(realActivity))
    [all...]
ActivityRecord.java 97 final ComponentName realActivity; // the intent component, or target of an alias.
191 pw.print(prefix); pw.print("realActivity=");
192 pw.println(realActivity.flattenToShortString());
377 return !ResolverActivity.class.getName().equals(realActivity.getClassName());
430 realActivity = _intent.getComponent();
432 realActivity = new ComponentName(aInfo.packageName,
495 } else if (realActivity.getClassName().contains(RECENTS_PACKAGE_NAME)) {
503 realActivity = null;
    [all...]
ActivityStackSupervisor.java     [all...]
TaskPersister.java     [all...]
ActivityManagerService.java     [all...]
ActivityStack.java     [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 168 Activity realActivity = context.getParent();
169 if (realActivity == null) {
170 realActivity = context;
172 ContextWrapper cw = new ContextWrapper(realActivity);
    [all...]

Completed in 216 milliseconds