Home
last modified time | relevance | path

Searched +full:is +full:- +full:stream (Results 1 – 25 of 1189) sorted by relevance

12345678910>>...48

/aosp_15_r20/external/antlr/runtime/C/src/
H A Dantlr3rewritestreams.c3 /// tree re-write rules to manipulate the tokens and trees produced
8 // Copyright (c) 2005-2009 Jim Idle, Temporal Wave LLC
9 // http://www.temporal-wave.com
25 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
38 // Static support function forward declarations for the stream types.
40 static void reset (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
41 static void add (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * el, void (ANTLR3_CDECL *f…
42 static void * next (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
43 static pANTLR3_BASE_TREE nextTree (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
44 static void * nextToken (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
[all …]
H A Dantlr3commontreenodestream.c2 /// Defines the implementation of the common node stream the default
3 /// tree node stream used by ANTLR.
7 // Copyright (c) 2005-2009 Jim Idle, Temporal Wave LLC
8 // http://www.temporal-wave.com
24 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
41 // COMMON TREE STREAM API
52 // TREE NODE STREAM API
64 // INT STREAM API
66 static void consume (pANTLR3_INT_STREAM is);
67 static ANTLR3_MARKER tindex (pANTLR3_INT_STREAM is);
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/stream/
H A DStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
50 * {@link Stream} and {@link IntStream}:
53 * int sum = widgets.stream()
54 * .filter(w -> w.getColor() == RED)
55 * .mapToInt(w -> w.getWeight())
59 * In this example, {@code widgets} is a {@code Collection<Widget>}. We create
[all …]
H A DDoubleStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
48 * A sequence of primitive double-valued elements supporting sequential and parallel
49 * aggregate operations. This is the {@code double} primitive specialization of
50 * {@link Stream}.
53 * {@link Stream} and {@link DoubleStream}, computing the sum of the weights of the
57 * double sum = widgets.stream()
[all …]
H A DIntStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
49 * A sequence of primitive int-valued elements supporting sequential and parallel
50 * aggregate operations. This is the {@code int} primitive specialization of
51 * {@link Stream}.
54 * {@link Stream} and {@link IntStream}, computing the sum of the weights of the
58 * int sum = widgets.stream()
[all …]
H A DLongStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
49 * A sequence of primitive long-valued elements supporting sequential and parallel
50 * aggregate operations. This is the {@code long} primitive specialization of
51 * {@link Stream}.
54 * {@link Stream} and {@link LongStream}, computing the sum of the weights of the
58 * long sum = widgets.stream()
[all …]
H A Dpackage-info.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
27 * Classes to support functional-style operations on streams of elements, such
28 * as map-reduce transformations on collections. For example:
31 * int sum = widgets.stream()
32 * .filter(b -> b.getColor() == RED)
33 * .mapToInt(b -> b.getWeight())
38 * as a source for a stream, and then perform a filter-map-reduce on the stream
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/stream/
DStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
50 * {@link Stream} and {@link IntStream}:
53 * int sum = widgets.stream()
54 * .filter(w -> w.getColor() == RED)
55 * .mapToInt(w -> w.getWeight())
59 * In this example, {@code widgets} is a {@code Collection<Widget>}. We create
[all …]
DDoubleStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
48 * A sequence of primitive double-valued elements supporting sequential and parallel
49 * aggregate operations. This is the {@code double} primitive specialization of
50 * {@link Stream}.
53 * {@link Stream} and {@link DoubleStream}, computing the sum of the weights of the
57 * double sum = widgets.stream()
[all …]
DIntStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
49 * A sequence of primitive int-valued elements supporting sequential and parallel
50 * aggregate operations. This is the {@code int} primitive specialization of
51 * {@link Stream}.
54 * {@link Stream} and {@link IntStream}, computing the sum of the weights of the
58 * int sum = widgets.stream()
[all …]
DLongStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
49 * A sequence of primitive long-valued elements supporting sequential and parallel
50 * aggregate operations. This is the {@code long} primitive specialization of
51 * {@link Stream}.
54 * {@link Stream} and {@link LongStream}, computing the sum of the weights of the
58 * long sum = widgets.stream()
[all …]
Dpackage-info.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
27 * Classes to support functional-style operations on streams of elements, such
28 * as map-reduce transformations on collections. For example:
31 * int sum = widgets.stream()
32 * .filter(b -> b.getColor() == RED)
33 * .mapToInt(b -> b.getWeight())
38 * as a source for a stream, and then perform a filter-map-reduce on the stream
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/22/libcore/ojluni/src/main/java/java/util/stream/
DStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
50 * {@link Stream} and {@link IntStream}:
53 * int sum = widgets.stream()
54 * .filter(w -> w.getColor() == RED)
55 * .mapToInt(w -> w.getWeight())
59 * In this example, {@code widgets} is a {@code Collection<Widget>}. We create
[all …]
DDoubleStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
48 * A sequence of primitive double-valued elements supporting sequential and parallel
49 * aggregate operations. This is the {@code double} primitive specialization of
50 * {@link Stream}.
53 * {@link Stream} and {@link DoubleStream}, computing the sum of the weights of the
57 * double sum = widgets.stream()
[all …]
DIntStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
49 * A sequence of primitive int-valued elements supporting sequential and parallel
50 * aggregate operations. This is the {@code int} primitive specialization of
51 * {@link Stream}.
54 * {@link Stream} and {@link IntStream}, computing the sum of the weights of the
58 * int sum = widgets.stream()
[all …]
DLongStream.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
49 * A sequence of primitive long-valued elements supporting sequential and parallel
50 * aggregate operations. This is the {@code long} primitive specialization of
51 * {@link Stream}.
54 * {@link Stream} and {@link LongStream}, computing the sum of the weights of the
58 * long sum = widgets.stream()
[all …]
Dpackage-info.java5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
27 * Classes to support functional-style operations on streams of elements, such
28 * as map-reduce transformations on collections. For example:
31 * int sum = widgets.stream()
32 * .filter(b -> b.getColor() == RED)
33 * .mapToInt(b -> b.getWeight())
38 * as a source for a stream, and then perform a filter-map-reduce on the stream
[all …]
/aosp_15_r20/external/oboe/docs/
H A DFullGuide.md2 Oboe is a C++ library which makes it easy to build high-performance audio apps on Android. Apps com…
6 …ams*, represented by the class `AudioStream`. The read/write calls can be blocking or non-blocking.
8 A stream is defined by the following:
10 * The *audio* *device* that is the source or sink for the data in the stream.
11 * The *sharing mode* that determines whether a stream has exclusive access to an audio device tha…
12 * The *format* of the audio data in the stream.
16 Each stream is attached to a single audio device.
18 An audio device is a hardware interface or virtual endpoint that acts as a source or sink for a con…
19 (a built-in mic or bluetooth headset) with the *Android device* (the phone or watch) that is runnin…
23 … a unique ID on the Android device. You can use the ID to bind an audio stream to a specific audi…
[all …]
/aosp_15_r20/external/sonic/
H A Dsonic.c4 This file is part of the Sonic Library.
6 This file is licensed under the Apache 2.0 license.
24 return 0.5*(1.0 - cos(2*M_PI*x/N));
31 x -= N/2.0;
32 if (x > 1e-9 || x < -1e-9) {
59 0, 0, 0, 0, 0, 0, 0, -1, -1, -2, -2,
60 -3, -4, -6, -7, -9, -10, -12, -14, -17, -19, -21,
61 -24, -26, -29, -32, -34, -37, -40, -42, -44, -47, -48,
62 -50, -51, -52, -53, -53, -53, -52, -50, -48, -46, -43,
63 -39, -34, -29, -22, -16, -8, 0, 9, 19, 29, 41,
[all …]
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/stream/
H A DStreams.java9 * http://www.apache.org/licenses/LICENSE-2.0
12 * distributed under the License is distributed on an "AS IS" BASIS,
17 package org.apache.commons.lang3.stream;
36 import java.util.stream.Collector;
37 import java.util.stream.Collectors;
38 import java.util.stream.Stream;
39 import java.util.stream.StreamSupport;
48 …* Provides utility functions, and classes for working with the {@code java.util.stream} package, o…
55 * Consumer<java.lang.reflect.Method> consumer = m -> {
62 * stream.forEach(consumer);
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/h2/src/proto/streams/
Dprioritize.rs18 /// Queued streams are ordered by stream ID, as we need to ensure that
19 /// lower-numbered streams are sent headers before higher-numbered ones.
20 /// This is because "idle" stream IDs – those which have been initiated but
22 /// frame on a higher stream ID. If these queues was not ordered by stream
23 /// IDs, some mechanism would be necessary to ensure that the lowest-numbered]
24 /// idle stream is opened first.
28 pending_send: store::Queue<stream::NextSend>,
31 pending_capacity: store::Queue<stream::NextSendCapacity>,
35 /// The `SendRequest` handle is `Clone`. This enables initiating requests
37 /// backpressure at some level is tricky. If there are many `SendRequest`
[all …]
Drecv.rs24 /// The lowest stream ID that is still idle
27 /// The stream ID of the last processed stream
32 /// This starts as MAX, but is lowered when a GOAWAY is received.
36 /// > the identified last stream.
40 pending_window_updates: store::Queue<stream::NextWindowUpdate>,
43 pending_accept: store::Queue<stream::NextAccept>,
46 pending_reset_expired: store::Queue<stream::NextResetExpire>,
60 /// If extended connect protocol is enabled.
84 pub fn new(peer: peer::Dyn, config: &Config) -> Self { in new()
114 pub fn init_window_sz(&self) -> WindowSize { in init_window_sz()
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dyoutube_v3.liveStreams.html8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
16 font-size: 13px;
21 font-size: 26px;
22 margin-bottom: 1em;
26 font-size: 24px;
27 margin-bottom: 1em;
[all …]
/aosp_15_r20/external/cronet/net/base/
H A Dchunked_upload_data_stream_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
27 constexpr size_t kTestDataSize = std::size(kTestData) - 1;
32 // Reads data once from the upload data stream, and returns the data as string.
34 std::string ReadSync(UploadDataStream* stream, int buffer_size) { in ReadSync() argument
36 int result = stream->Read(buf.get(), in ReadSync()
40 return std::string(buf->data(), result); in ReadSync()
43 // Check the case data is added after the first read attempt.
45 ChunkedUploadDataStream stream(0); in TEST() local
48 stream.Init(TestCompletionCallback().callback(), NetLogWithSource()), in TEST()
50 EXPECT_FALSE(stream.IsInMemory()); in TEST()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/stream/stream/
Dmod.rs3 //! This module contains a number of functions for working with `Stream`s,
4 //! including the `StreamExt` trait which adds methods to `Stream` types.
7 use crate::stream::assert_stream;
14 use futures_core::stream::TryStream;
16 use futures_core::stream::{BoxStream, LocalBoxStream};
19 stream::{FusedStream, Stream},
28 #[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
32 #[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
36 #[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
40 #[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
[all …]

12345678910>>...48