OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:implied
(Results
1 - 6
of
6
) sorted by null
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
CollectionSize.java
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied
.
69
private final Set<Feature<? super Collection>>
implied
;
field in class:CollectionSize
73
this.
implied
= Collections.emptySet();
77
CollectionSize(Feature<? super Collection> ...
implied
) {
80
this.
implied
= Helpers.copyToSet(
implied
);
86
return
implied
;
ListFeature.java
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied
.
56
private final Set<Feature<? super List>>
implied
;
field in class:ListFeature
58
ListFeature(Feature<? super List> ...
implied
) {
59
this.
implied
= Helpers.copyToSet(
implied
);
64
return
implied
;
SetFeature.java
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied
.
40
private final Set<Feature<? super Set>>
implied
;
field in class:SetFeature
42
SetFeature(Feature<? super Set> ...
implied
) {
43
this.
implied
= Helpers.copyToSet(
implied
);
48
return
implied
;
CollectionFeature.java
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied
.
116
private final Set<Feature<? super Collection>>
implied
;
field in class:CollectionFeature
118
CollectionFeature(Feature<? super Collection> ...
implied
) {
119
this.
implied
= Helpers.copyToSet(
implied
);
124
return
implied
;
MapFeature.java
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied
.
70
private final Set<Feature<? super Map>>
implied
;
field in class:MapFeature
72
MapFeature(Feature<? super Map> ...
implied
) {
73
this.
implied
= Helpers.copyToSet(
implied
);
78
return
implied
;
FeatureUtil.java
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied
.
52
*
implied
by any of them, and return it.
54
* @return the same set of features, expanded with all
implied
features
67
* indirectly
implied
by any of them.
69
* @return the
implied
set of features
72
Set<Feature<?>>
implied
= new LinkedHashSet<Feature<?>>();
local
74
implied
.addAll(feature.getImpliedFeatures());
76
addImpliedFeatures(
implied
);
77
return
implied
;
Completed in 52 milliseconds