OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:realActivity
(Results
1 - 7
of
7
) 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/java/com/android/server/am/
TaskRecord.java
42
ComponentName
realActivity
; // The actual activity component that started the task.
97
realActivity
= _intent != null ? _intent.getComponent() : null;
110
realActivity
= targetComponent;
114
realActivity
= targetComponent;
267
if (r.
realActivity
.equals(newR.
realActivity
)) {
438
final ComponentName
realActivity
= r.
realActivity
;
444
if (candidate.
realActivity
.equals(
realActivity
)) {
[
all
...]
ActivityRecord.java
70
final ComponentName
realActivity
; // the intent component, or target of an alias.
159
pw.print(prefix); pw.print("
realActivity
=");
160
pw.println(
realActivity
.flattenToShortString());
343
return !ResolverActivity.class.getName().equals(
realActivity
.getClassName());
391
realActivity
= _intent.getComponent();
393
realActivity
= new ComponentName(aInfo.packageName,
458
} else if (
realActivity
.getClassName().contains(RECENTS_PACKAGE_NAME)) {
466
realActivity
= null;
[
all
...]
ActivityStackSupervisor.java
[
all
...]
ActivityManagerService.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 1494 milliseconds