OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getReceiversForIntent
(Results
1 - 3
of
3
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowApplication.java
137
public List<BroadcastReceiver>
getReceiversForIntent
(Intent intent) {
138
return getShadowInstrumentation().
getReceiversForIntent
(intent);
ShadowInstrumentation.java
674
List<BroadcastReceiver>
getReceiversForIntent
(Intent intent) {
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowApplicationTest.java
472
assertThat(shadowApplication.
getReceiversForIntent
(new Intent("Foo"))).hasSize(2);
Completed in 241 milliseconds