OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShadowPendingIntent
(Results
1 - 3
of
3
) sorted by null
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPendingIntent.java
19
public class
ShadowPendingIntent
{
132
private boolean shadowEquals(
ShadowPendingIntent
other) {
181
ShadowPendingIntent
shadowPendingIntent
= Robolectric.shadowOf(pendingIntent);
182
shadowPendingIntent
.savedIntent = intent;
183
shadowPendingIntent
.isActivityIntent = isActivity;
184
shadowPendingIntent
.isBroadcastIntent = isBroadcast;
185
shadowPendingIntent
.isServiceIntent = isService;
186
shadowPendingIntent
.savedContext = context;
187
shadowPendingIntent
.requestCode = requestCode
[
all
...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PendingIntentTest.java
39
ShadowPendingIntent
shadow = shadowOf(pendingIntent);
51
ShadowPendingIntent
shadow = shadowOf(pendingIntent);
63
ShadowPendingIntent
shadow = shadowOf(pendingIntent);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
Robolectric.java
266
ShadowPendingIntent
.class,
787
public static
ShadowPendingIntent
shadowOf(PendingIntent instance) {
788
return (
ShadowPendingIntent
) shadowOf_(instance);
[
all
...]
Completed in 30 milliseconds