Searched defs:builder (Results 76 - 85 of 85) sorted by relevance

1234

/libcore/ojluni/src/main/java/java/util/stream/
H A DDoubleStream.java720 * Returns a builder for a {@code DoubleStream}.
722 * @return a stream builder
724 public static Builder builder() { method in interface:DoubleStream
837 * A mutable builder for a {@code DoubleStream}.
839 * <p>A stream builder has a lifecycle, which starts in a building
844 * stream builder, in the order they were added.
846 * @see DoubleStream#builder()
854 * @throws IllegalStateException if the builder has already transitioned
871 * @return {@code this} builder
872 * @throws IllegalStateException if the builder ha
[all...]
H A DStream.java957 * Returns a builder for a {@code Stream}.
960 * @return a stream builder
962 public static<T> Builder<T> builder() { method in interface:Stream
1083 * A mutable builder for a {@code Stream}. This allows the creation of a
1088 * <p>A stream builder has a lifecycle, which starts in a building
1093 * builder, in the order they were added.
1096 * @see Stream#builder()
1104 * @throws IllegalStateException if the builder has already transitioned to
1121 * @return {@code this} builder
1122 * @throws IllegalStateException if the builder ha
[all...]
H A DIntStream.java688 * Returns a builder for an {@code IntStream}.
690 * @return a stream builder
692 public static Builder builder() { method in interface:IntStream
857 * A mutable builder for an {@code IntStream}.
859 * <p>A stream builder has a lifecycle, which starts in a building
864 * stream builder, in the order they were added.
866 * @see IntStream#builder()
874 * @throws IllegalStateException if the builder has already transitioned
891 * @return {@code this} builder
892 * @throws IllegalStateException if the builder ha
[all...]
H A DLongStream.java680 * Returns a builder for a {@code LongStream}.
682 * @return a stream builder
684 public static Builder builder() { method in interface:LongStream
872 * A mutable builder for a {@code LongStream}.
874 * <p>A stream builder has a lifecycle, which starts in a building
879 * stream builder, in the order they were added.
881 * @see LongStream#builder()
889 * @throws IllegalStateException if the builder has already transitioned
906 * @return {@code this} builder
907 * @throws IllegalStateException if the builder ha
[all...]
H A DNodes.java159 * @param exactSizeIfKnown -1 if a variable size builder is requested,
160 * otherwise the exact capacity desired. A fixed capacity builder will
161 * fail if the wrong number of elements are added to the builder.
163 * @param <T> the type of elements of the node builder
166 static <T> Node.Builder<T> builder(long exactSizeIfKnown, IntFunction<T[]> generator) { method in class:Nodes
169 : builder();
175 * @param <T> the type of elements of the node builder
178 static <T> Node.Builder<T> builder() { method in class:Nodes
199 * @param exactSizeIfKnown -1 if a variable size builder is requested,
200 * otherwise the exact capacity desired. A fixed capacity builder wil
[all...]
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DX509KeyManagerImpl.java80 X509KeyManagerImpl(Builder builder) { argument
81 this(Collections.singletonList(builder));
241 Builder builder = builders.get(builderIndex);
242 KeyStore ks = builder.getKeyStore();
244 (keyStoreAlias, builder.getProtectionParameter(alias));
439 // identifies the entry by builder and alias
584 * Return a List of all candidate matches in the specified builder
613 Builder builder = builders.get(builderIndex);
614 KeyStore ks = builder.getKeyStore();
/libcore/ojluni/src/main/java/java/lang/
H A DString.java504 * currently contained in the string builder argument. The contents of the
505 * string builder are copied; subsequent modification of the string builder
509 * StringBuilder}. Obtaining a string from a string builder via the {@code
512 * @param builder
517 public String(StringBuilder builder) { argument
/libcore/luni/src/test/java/tests/security/cert/
H A DX509CertSelectorTest.java1951 private CertPathBuilder builder; field in class:X509CertSelectorTest
1982 builder = CertPathBuilder.getInstance("PKIX");
1992 result = (PKIXCertPathBuilderResult) builder.build(buildParams);
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java74 private DocumentBuilder builder; field in class:DomTest
131 builder = factory.newDocumentBuilder();
132 domImplementation = builder.getDOMImplementation();
133 document = builder.parse(new InputSource(new StringReader(xml)));
467 document = builder.newDocument();
808 document = builder.parse(new InputSource(new StringReader("<menu "
840 builder = factory.newDocumentBuilder();
841 document = builder.parse(new InputSource(new StringReader("<menu "
909 Document newDocument = builder.newDocument();
930 Document newDocument = builder
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 484 milliseconds

1234