OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getSampleElements
(Results
1 - 4
of
4
) sorted by null
/external/guava/guava-testlib/src/com/google/common/collect/testing/
OneSizeTestContainerGenerator.java
39
Collection<E>
getSampleElements
(int howMany);
OneSizeGenerator.java
66
Collection<E> elements =
getSampleElements
(
72
public Collection<E>
getSampleElements
(int howMany) {
AbstractContainerTester.java
113
expectContents(
getSampleElements
());
139
List<E> expected = Helpers.copyToList(
getSampleElements
());
149
List<E> expected = Helpers.copyToList(
getSampleElements
());
169
getSampleElements
().toArray(array);
200
protected Collection<E>
getSampleElements
(int howMany) {
201
return getSubjectGenerator().
getSampleElements
(howMany);
204
protected Collection<E>
getSampleElements
() {
205
return
getSampleElements
(getNumElements());
209
* Returns the {@linkplain #
getSampleElements
() sample elements} as ordered by
217
new ArrayList<E>(
getSampleElements
()))) {
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListListIteratorTester.java
71
Helpers.copyToList(
getSampleElements
()), 0) {
Completed in 1062 milliseconds