Searched refs:toCollection (Results 1 - 25 of 29) sorted by relevance

12

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/comments/
H A DCommentsCollection.java48 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)));
55 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)));
62 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)));
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
H A DNodeWithModifiers.java52 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))));
61 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))));
H A DNodeWithConstructors.java13 import static java.util.stream.Collectors.toCollection;
34 constructorDeclaration.setModifiers(Arrays.stream(modifiers).collect(toCollection(() -> EnumSet.noneOf(Modifier.class))));
H A DNodeWithMembers.java39 import static java.util.stream.Collectors.toCollection;
113 .collect(toCollection(() -> EnumSet.noneOf(Modifier.class))));
214 .collect(toCollection(() -> EnumSet.noneOf(Modifier.class))));
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/
H A DCommentsCollection.java50 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)));
57 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)));
64 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)));
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarators/
H A DVariableSymbolDeclarator.java49 .collect(Collectors.toCollection(LinkedList::new));
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
H A DCompilationUnit.java282 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))),
309 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))),
335 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), name);
360 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), name);
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/
H A DNodeWithMembers.java5 import static java.util.stream.Collectors.toCollection;
80 .collect(toCollection(() -> EnumSet.noneOf(Modifier.class))));
167 .collect(toCollection(() -> EnumSet.noneOf(Modifier.class))));
182 .collect(toCollection(() -> EnumSet.noneOf(Modifier.class))));
H A DNodeWithModifiers.java26 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))));
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
H A DVariableDeclarationExpr.java83 this(null, Arrays.stream(modifiers).collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), new NodeList<>(), nodeList(new VariableDeclarator(type, variableName)));
87 this(null, Arrays.stream(modifiers).collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), new NodeList<>(), nodeList(var));
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
H A DVariableDeclarationExpr.java80 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))));
87 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))));
/external/desugar/java/com/google/devtools/common/options/
H A DOptionsParserImpl.java18 import static java.util.stream.Collectors.toCollection;
118 .collect(toCollection(ArrayList::new));
129 .collect(toCollection(ArrayList::new));
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
H A DCompilationUnit.java369 ClassOrInterfaceDeclaration classOrInterfaceDeclaration = new ClassOrInterfaceDeclaration(Arrays.stream(modifiers).collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), false, name);
392 ClassOrInterfaceDeclaration classOrInterfaceDeclaration = new ClassOrInterfaceDeclaration(Arrays.stream(modifiers).collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), true, name);
415 EnumDeclaration enumDeclaration = new EnumDeclaration(Arrays.stream(modifiers).collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), name);
438 AnnotationDeclaration annotationDeclaration = new AnnotationDeclaration(Arrays.stream(modifiers).collect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), name);
/external/guava/guava/src/com/google/common/collect/
H A DIterables.java315 Collection<? extends T> collection = toCollection(iterable);
328 return toCollection(iterable).toArray();
336 private static <E> Collection<E> toCollection(Iterable<E> iterable) { method in class:Iterables
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java311 return toCollection(iterable).toArray();
319 private static <E> Collection<E> toCollection(Iterable<E> iterable) { method in class:Iterables
/external/turbine/javatests/com/google/turbine/lower/
H A DIntegrationTestSupport.java21 import static java.util.stream.Collectors.toCollection;
99 classes = classes.stream().filter(n -> !isAnonymous(n)).collect(toCollection(ArrayList::new));
109 HashSet<String> all = classes.stream().map(n -> n.name).collect(toCollection(HashSet::new));
/external/kotlinc/lib/
H A Dkotlin-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
H A Dkotlin-stdlib.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...

Completed in 681 milliseconds

12