OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ImmutableSortedSet
(Results
1 - 8
of
8
) sorted by null
/external/guava/guava/src/com/google/common/collect/
ImmutableSortedSet.java
46
*
ImmutableSortedSet
} contains its own private data and will <i>never</i>
60
* {@code
ImmutableSortedSet
} doesn't use {@link Object#equals} to determine if
72
* <b>Warning:</b> Like most sets, an {@code
ImmutableSortedSet
} will not
89
public abstract class
ImmutableSortedSet
<E> extends ImmutableSortedSetFauxverideShim<E>
95
private static final
ImmutableSortedSet
<Comparable> NATURAL_EMPTY_SET =
99
private static <E>
ImmutableSortedSet
<E> emptySet() {
100
return (
ImmutableSortedSet
<E>) NATURAL_EMPTY_SET;
103
static <E>
ImmutableSortedSet
<E> emptySet(
115
public static <E>
ImmutableSortedSet
<E> of() {
122
public static <E extends Comparable<? super E>>
ImmutableSortedSet
<E> of
[
all
...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSet.java
34
* GWT emulation of {@link
ImmutableSortedSet
}.
38
public abstract class
ImmutableSortedSet
<E>
42
// which overrides ImmutableSet & which
ImmutableSortedSet
extends.
45
@Deprecated public static <E>
ImmutableSortedSet
.Builder<E> builder() {
54
private static final
ImmutableSortedSet
<Object> NATURAL_EMPTY_SET =
58
private static <E>
ImmutableSortedSet
<E> emptySet() {
59
return (
ImmutableSortedSet
<E>) NATURAL_EMPTY_SET;
62
static <E>
ImmutableSortedSet
<E> emptySet(
72
public static <E>
ImmutableSortedSet
<E> of() {
76
public static <E extends Comparable<? super E>>
ImmutableSortedSet
<E> of
[
all
...]
/external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetMultimapTest.java
226
assertFalse(multimap.get("a") instanceof
ImmutableSortedSet
);
227
assertFalse(multimap.get("x") instanceof
ImmutableSortedSet
);
228
assertFalse(multimap.asMap().get("a") instanceof
ImmutableSortedSet
);
246
assertTrue(multimap.get("a") instanceof
ImmutableSortedSet
);
248
((
ImmutableSortedSet
<Integer>) multimap.get("a")).comparator());
249
assertTrue(multimap.get("x") instanceof
ImmutableSortedSet
);
251
((
ImmutableSortedSet
<Integer>) multimap.get("x")).comparator());
252
assertTrue(multimap.asMap().get("a") instanceof
ImmutableSortedSet
);
254
((
ImmutableSortedSet
<Integer>) multimap.asMap().get("a")).comparator());
273
assertTrue(multimap.get("a") instanceof
ImmutableSortedSet
);
[
all
...]
ImmutableSortedSetTest.java
39
* Unit tests for {@link
ImmutableSortedSet
}.
60
return
ImmutableSortedSet
.of();
64
return
ImmutableSortedSet
.of(e);
68
return
ImmutableSortedSet
.of(e1, e2);
72
return
ImmutableSortedSet
.of(e1, e2, e3);
77
return
ImmutableSortedSet
.of(e1, e2, e3, e4);
82
return
ImmutableSortedSet
.of(e1, e2, e3, e4, e5);
87
return
ImmutableSortedSet
.of(e1, e2, e3, e4, e5, e6, rest);
91
return
ImmutableSortedSet
.copyOf(elements);
95
return
ImmutableSortedSet
.copyOf(elements)
[
all
...]
/external/owasp/sanitizer/distrib/lib/
guava.jar
/external/owasp/sanitizer/lib/guava-libraries/
guava.jar
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar
/external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar
Completed in 623 milliseconds