Home
last modified time | relevance | path

Searched refs:extraKey (Results 1 – 3 of 3) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
DStartedMatcher.java67 …public static Intent createIntent(Class<? extends Activity> activityClass, String extraKey, String… in createIntent() argument
69 intent.putExtra(extraKey, extraValue); in createIntent()
DStartedServiceMatcher.java87 …public static Intent createIntent(Class<? extends Service> serviceClass, String extraKey, String e… in createIntent() argument
89 intent.putExtra(extraKey, extraValue); in createIntent()
/external/guava/guava-tests/test/com/google/common/cache/
DCacheLoadingTest.java448 final Object extraKey = new Object(); in testBulkLoad_clobber() local
463 result.put(extraKey, extraValue); in testBulkLoad_clobber()
468 cache.asMap().put(extraKey, extraKey); in testBulkLoad_clobber()
469 assertSame(extraKey, cache.asMap().get(extraKey)); in testBulkLoad_clobber()
480 assertNull(result.get(extraKey)); in testBulkLoad_clobber()
481 assertSame(extraValue, cache.asMap().get(extraKey)); in testBulkLoad_clobber()
485 final Object extraKey = new Object(); in testBulkLoad_clobberNullValue() local
500 result.put(extraKey, extraValue); in testBulkLoad_clobberNullValue()
506 cache.asMap().put(extraKey, extraKey); in testBulkLoad_clobberNullValue()
507 assertSame(extraKey, cache.asMap().get(extraKey)); in testBulkLoad_clobberNullValue()
[all …]