OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:requestIntent
(Results
1 - 11
of
11
) sorted by null
/frameworks/base/services/core/java/com/android/server/am/
PendingIntentRecord.java
63
final Intent
requestIntent
;
81
requestIntent
= _i != null ? _i[_i.length-1] : null;
99
if (
requestIntent
!= null) {
100
hash = (ODD_PRIME_NUMBER*hash) +
requestIntent
.filterHashCode();
142
if (
requestIntent
!= other.
requestIntent
) {
143
if (
requestIntent
!= null) {
144
if (!
requestIntent
.filterEquals(other.
requestIntent
)) {
147
} else if (other.
requestIntent
!= null)
[
all
...]
ActivityManagerService.java
[
all
...]
ActivityStackSupervisor.java
[
all
...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowActivity.java
395
public void receiveResult(Intent
requestIntent
, int resultCode, Intent resultIntent) {
396
Integer requestCode = intentRequestCodeMap.get(
requestIntent
);
398
throw new RuntimeException("No intent matches " +
requestIntent
+ " among " + intentRequestCodeMap.keySet());
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ActivityTest.java
92
Intent
requestIntent
= new Intent().setType("video/*");
94
shadowOf(activity).receiveResult(
requestIntent
, Activity.RESULT_OK,
98
assertThat(e.getMessage(), startsWith("No intent matches " +
requestIntent
));
/external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar
shadows-core-3.1-SNAPSHOT-17.jar
shadows-core-3.1-SNAPSHOT-18.jar
shadows-core-3.1-SNAPSHOT-19.jar
shadows-core-3.1-SNAPSHOT-21.jar
shadows-core-3.1-SNAPSHOT-22.jar
Completed in 207 milliseconds