OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConstantLoader
(Results
1 - 3
of
3
) sorted by null
/external/guava/guava-gwt/test-super/com/google/common/cache/super/com/google/common/cache/
TestingCacheLoaders.java
61
static <K, V>
ConstantLoader
<K, V>
constantLoader
(@Nullable V constant) {
62
return new
ConstantLoader
<K, V>(constant);
123
static final class
ConstantLoader
<K, V> extends CacheLoader<K, V> {
126
ConstantLoader
(V constant) {
/external/guava/guava-tests/test/com/google/common/cache/
TestingCacheLoaders.java
64
static <K, V>
ConstantLoader
<K, V>
constantLoader
(@Nullable V constant) {
65
return new
ConstantLoader
<K, V>(constant);
126
static final class
ConstantLoader
<K, V> extends CacheLoader<K, V> {
129
ConstantLoader
(V constant) {
/external/guava/guava-tests/test/com/google/common/collect/
ComputingConcurrentHashMapTest.java
97
Function<Object, Object> computingFunction = new
ConstantLoader
<Object, Object>(null);
322
static final class
ConstantLoader
<K, V> implements Function<K, V> {
325
public
ConstantLoader
(V constant) {
Completed in 145 milliseconds