OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hasReceiverForIntent
(Results
1 - 3
of
3
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowApplication.java
131
public boolean
hasReceiverForIntent
(Intent intent) {
132
return getShadowInstrumentation().
hasReceiverForIntent
(intent);
ShadowInstrumentation.java
663
boolean
hasReceiverForIntent
(Intent intent) {
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowApplicationTest.java
458
assertFalse(shadowApplication.
hasReceiverForIntent
(new Intent("Foo")));
461
assertTrue(shadowApplication.
hasReceiverForIntent
(new Intent("Foo")));
468
assertFalse(shadowApplication.
hasReceiverForIntent
(new Intent("Foo")));
Completed in 234 milliseconds