Home
last modified time | relevance | path

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

12345678910>>...54

/aosp_15_r20/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
H A DMessageExtensions.cs2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
51 /// <param name="message">The message to merge the data into.</param>
52 … /// <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
59 /// <param name="message">The message to merge the data into.</param>
60 …/// <param name="data">The data containing the slice to merge, which must be protobuf-encoded bina…
61 /// <param name="offset">The offset of the slice to merge.</param>
62 /// <param name="length">The length of the slice to merge.</param>
69 /// <param name="message">The message to merge the data into.</param>
70 … /// <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
[all …]
/aosp_15_r20/external/protobuf/csharp/src/Google.Protobuf/
H A DMessageExtensions.cs2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
51 /// <param name="message">The message to merge the data into.</param>
52 … /// <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
59 /// <param name="message">The message to merge the data into.</param>
60 …/// <param name="data">The data containing the slice to merge, which must be protobuf-encoded bina…
61 /// <param name="offset">The offset of the slice to merge.</param>
62 /// <param name="length">The length of the slice to merge.</param>
69 /// <param name="message">The message to merge the data into.</param>
70 … /// <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/util/StringJoiner/
H A DMergeTest.java17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
27 * @summary test StringJoiner::merge
34 import java.util.stream.Stream;
56 private static Stream<Fixes> fixesStream() { in fixesStream()
57 Stream.Builder<Fixes> builder = Stream.builder(); in fixesStream()
74 sj.merge(null); in testNull()
78 fixesStream().forEach(fixes -> { in testSimple()
81 Stream.of("a", "b", "c").forEachOrdered(sj::add); in testSimple()
82 Stream.of("d", "e", "f").forEachOrdered(other::add); in testSimple()
84 sj.merge(other); in testSimple()
[all …]
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/
H A Ddisassemble.cpp1 // Copyright (c) 2015-2020 The Khronos Group Inc.
9 // http://www.apache.org/licenses/LICENSE-2.0
17 // This file contains a disassembler: It converts a SPIR-V binary
45 #include "spirv-tools/libspirv.h"
52 // Merge block in OpLoopMerge and OpSelectionMerge
59 // The body block of a loop, as specified by OpBranch after a merge
62 // The same-nesting-level block that follows this one, indicated by an
63 // OpBranch with no merge instruction.
76 std::make_unique<spv_parsed_operand_t[]>(instruction->num_operands); in ParsedInstruction()
77 memcpy(operands_.get(), instruction->operands, in ParsedInstruction()
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/stream/
DCollectors.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
71 * List<String> list = people.stream()
76 * Set<String> set = people.stream()
81 * String joined = things.stream()
86 * int total = employees.stream()
90 * Map<Department, List<Employee>> byDept = employees.stream()
94 * Map<Department, Integer> totalByDept = employees.stream()
99 * Map<Boolean, List<Student>> passingFailing = students.stream()
100 * .collect(Collectors.partitioningBy(s -> s.getGrade() >= PASS_THRESHOLD));
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/22/libcore/ojluni/src/main/java/java/util/stream/
DCollectors.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
71 * List<String> list = people.stream()
76 * Set<String> set = people.stream()
81 * String joined = things.stream()
86 * int total = employees.stream()
90 * Map<Department, List<Employee>> byDept = employees.stream()
94 * Map<Department, Integer> totalByDept = employees.stream()
99 * Map<Boolean, List<Student>> passingFailing = students.stream()
100 * .collect(Collectors.partitioningBy(s -> s.getGrade() >= PASS_THRESHOLD));
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/stream/
H A DCollectors.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25 package java.util.stream;
71 * List<String> list = people.stream()
76 * Set<String> set = people.stream()
81 * String joined = things.stream()
86 * int total = employees.stream()
90 * Map<Department, List<Employee>> byDept = employees.stream()
94 * Map<Department, Integer> totalByDept = employees.stream()
99 * Map<Boolean, List<Student>> passingFailing = students.stream()
100 * .collect(Collectors.partitioningBy(s -> s.getGrade() >= PASS_THRESHOLD));
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-stream/src/stream_ext/
Dmerge.rs2 use crate::Stream;
9 /// Stream returned by the [`merge`](super::StreamExt::merge) method.
10 pub struct Merge<T, U> {
20 impl<T, U> Merge<T, U> { implementation
21 pub(super) fn new(a: T, b: U) -> Merge<T, U> in new()
23 T: Stream, in new() argument
24 U: Stream, in new() argument
26 Merge { in new()
34 impl<T, U> Stream for Merge<T, U> implementation
36 T: Stream,
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-stream/src/
Dstream_ext.rs2 use futures_core::Stream;
34 mod merge; module
35 pub use merge::Merge;
73 /// An extension trait for the [`Stream`] trait that provides a variety of
76 /// Be aware that the `Stream` trait in Tokio is a re-export of the trait found
79 /// these traits. Click [here][futures-StreamExt] to see the other `StreamExt`
87 /// use futures::stream::StreamExt;
95 /// let merged = tokio_stream::StreamExt::merge(a, b);
97 /// // use normal call notation for futures::stream::StreamExt::collect
103 /// [`Stream`]: crate::Stream
[all …]
/aosp_15_r20/external/llvm/docs/tutorial/
H A DOCamlLangImpl5.rst12 LLVM <index.html>`_" tutorial. Parts 1-4 described the implementation of
40 fib(x-1)+fib(x-2);
54 Kaleidoscope allows side-effects, this behavior is important to nail
61 ---------------------------------
66 .. code-block:: ocaml
74 .. code-block:: ocaml
78 | "def" -> [< 'Token.Def; stream >]
79 | "extern" -> [< 'Token.Extern; stream >]
80 | "if" -> [< 'Token.If; stream >]
81 | "then" -> [< 'Token.Then; stream >]
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DMessageLite.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
40 * <p>This interface is implemented by all protocol message objects. Non-lite messages additionally
42 * you only need the subset of features which it supports -- namely, nothing that uses descriptors
50 * <p>This is particularly useful on resource-constrained systems where the full protocol buffers
53 * <p>Note that on non-constrained systems (e.g. servers) when you need to link in lots of protocol
66 * stream.
82 // -----------------------------------------------------------------
105 * {@link #writeTo(CodedOutputStream)}. This does not flush or close the stream.
107 * <p>NOTE: Protocol Buffers are not self-delimiting. Therefore, if you write any more data to the
[all …]
/aosp_15_r20/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DMessageLite.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
40 * <p>This interface is implemented by all protocol message objects. Non-lite messages additionally
42 * you only need the subset of features which it supports -- namely, nothing that uses descriptors
50 * <p>This is particularly useful on resource-constrained systems where the full protocol buffers
53 * <p>Note that on non-constrained systems (e.g. servers) when you need to link in lots of protocol
66 * stream.
82 // -----------------------------------------------------------------
105 * {@link #writeTo(CodedOutputStream)}. This does not flush or close the stream.
107 * <p>NOTE: Protocol Buffers are not self-delimiting. Therefore, if you write any more data to the
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeStreamMerger.h1 //===- TypeStreamMerger.h ---------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
25 /// Merge one set of type records into another. This method assumes
28 /// \param Dest The table to store the re-written type records into.
31 /// type stream, that contains the index of the corresponding type record
32 /// in the destination stream.
34 /// \param Types The collection of types to merge in.
42 /// Merge one set of id records into another. This method assumes
46 /// another type stream (for example using the above method), and accepts
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/DebugInfo/CodeView/
DTypeStreamMerger.h1 //===- TypeStreamMerger.h ---------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
32 /// Merge one set of type records into another. This method assumes
35 /// \param Dest The table to store the re-written type records into.
38 /// type stream, that contains the index of the corresponding type record
39 /// in the destination stream.
41 /// \param Types The collection of types to merge in.
49 /// Merge one set of id records into another. This method assumes
53 /// another type stream (for example using the above method), and accepts
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/DebugInfo/CodeView/
DTypeStreamMerger.h1 //===- TypeStreamMerger.h ---------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
32 /// Merge one set of type records into another. This method assumes
35 /// \param Dest The table to store the re-written type records into.
38 /// type stream, that contains the index of the corresponding type record
39 /// in the destination stream.
41 /// \param Types The collection of types to merge in.
49 /// Merge one set of id records into another. This method assumes
53 /// another type stream (for example using the above method), and accepts
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/DebugInfo/CodeView/
DTypeStreamMerger.h1 //===- TypeStreamMerger.h ---------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
32 /// Merge one set of type records into another. This method assumes
35 /// \param Dest The table to store the re-written type records into.
38 /// type stream, that contains the index of the corresponding type record
39 /// in the destination stream.
41 /// \param Types The collection of types to merge in.
49 /// Merge one set of id records into another. This method assumes
53 /// another type stream (for example using the above method), and accepts
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeStreamMerger.h1 //===- TypeStreamMerger.h ---------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
32 /// Merge one set of type records into another. This method assumes
35 /// \param Dest The table to store the re-written type records into.
38 /// type stream, that contains the index of the corresponding type record
39 /// in the destination stream.
41 /// \param Types The collection of types to merge in.
49 /// Merge one set of id records into another. This method assumes
53 /// another type stream (for example using the above method), and accepts
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/DebugInfo/CodeView/
DTypeStreamMerger.h1 //===- TypeStreamMerger.h ---------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
32 /// Merge one set of type records into another. This method assumes
35 /// \param Dest The table to store the re-written type records into.
38 /// type stream, that contains the index of the corresponding type record
39 /// in the destination stream.
41 /// \param Types The collection of types to merge in.
49 /// Merge one set of id records into another. This method assumes
53 /// another type stream (for example using the above method), and accepts
[all …]
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestInfo.java8 * http://www.apache.org/licenses/LICENSE-2.0
28 import java.util.stream.Collectors;
32 private static final String OPTION_INCLUDE_ANNOTATION = "include-annotation";
33 private static final String OPTION_EXCLUDE_ANNOTATION = "exclude-annotation";
95 return String.format("%s - %s", mName, mHostOnly); in getNameAndHostOnly()
120 * Merge with another test.
128 public void merge(TestInfo test) { in merge() method in TestInfo
130 // Merge can only happen for tests for the same module. in merge()
133 // Merge can only happen for tests for the same device requirement. in merge()
143 // this.mOptions: include-filter=value1, exclude-annotation=flaky in merge()
[all …]
/aosp_15_r20/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
H A DSyncAdapter.java8 * http://www.apache.org/licenses/LICENSE-2.0
68 private static final String FEED_URL = "http://android-developers.blogspot.com/atom.xml";
123 * run on a background thread. For this reason, blocking I/O and other long-running tasks can be
128 …ndroid.content.AbstractThreadedSyncAdapter} guarantees that this will be called on a non-UI thread,
140 InputStream stream = null; in onPerformSync() local
144 stream = downloadUrl(location); in onPerformSync()
145 updateLocalFeedData(stream, syncResult); in onPerformSync()
149 if (stream != null) { in onPerformSync()
150 stream.close(); in onPerformSync()
182 * Read XML from an input stream, storing it into the content provider.
[all …]
/aosp_15_r20/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
DSyncAdapter.java8 * http://www.apache.org/licenses/LICENSE-2.0
68 private static final String FEED_URL = "http://android-developers.blogspot.com/atom.xml";
123 * run on a background thread. For this reason, blocking I/O and other long-running tasks can be
128 …ndroid.content.AbstractThreadedSyncAdapter} guarantees that this will be called on a non-UI thread,
140 InputStream stream = null; in onPerformSync() local
144 stream = downloadUrl(location); in onPerformSync()
145 updateLocalFeedData(stream, syncResult); in onPerformSync()
149 if (stream != null) { in onPerformSync()
150 stream.close(); in onPerformSync()
182 * Read XML from an input stream, storing it into the content provider.
[all …]
/aosp_15_r20/developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
H A DSyncAdapter.java8 * http://www.apache.org/licenses/LICENSE-2.0
68 private static final String FEED_URL = "http://android-developers.blogspot.com/atom.xml";
123 * run on a background thread. For this reason, blocking I/O and other long-running tasks can be
128 …ndroid.content.AbstractThreadedSyncAdapter} guarantees that this will be called on a non-UI thread,
140 InputStream stream = null; in onPerformSync() local
144 stream = downloadUrl(location); in onPerformSync()
145 updateLocalFeedData(stream, syncResult); in onPerformSync()
149 if (stream != null) { in onPerformSync()
150 stream.close(); in onPerformSync()
182 * Read XML from an input stream, storing it into the content provider.
[all …]
/aosp_15_r20/external/skia/tools/perf-canvaskit-puppeteer/
H A Dpackage-lock.json2 "name": "perf-canvaskit-puppeteer",
9 "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.5.tgz",
10 …"integrity": "sha512-90hiq6/VqtQgX8Sp0EzeIsv3r+ellbGj4URKj5j30tLlZvRUpnAe9YbYnjl3pJM93GyXU0tghHhvX…
15 "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz",
16 …"integrity": "sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0…
24 "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
25 …"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwa…
27 "mime-types": "~2.1.34",
31 "agent-base": {
33 "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz",
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/combine/src/parser/
Dchoice.rs11 ErrorOffset, Parser, Stream, StreamOnce,
23 /// # use combine::stream::easy::Error;
52 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> {
60 ) -> ParseResult<Self::Output, Input::Error> {
70 pub trait ChoiceParser<Input: Stream> {
78 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error>; in parse_first()
84 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error>; in parse_partial()
91 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_choice()
101 Input: Stream,
114 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_choice()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/sparse/
H A Dkernels_gpu.cu.cc7 http://www.apache.org/licenses/LICENSE-2.0
85 /*stream*/ cu_stream); in operator ()()
96 TF_RETURN_IF_ERROR(c->allocate_temp( in operator ()()
109 /*stream*/ cu_stream); in operator ()()
122 // TODO(ebrevdo): Write a custom batch-friendly impl of this to update
131 const int m = csr_row_ptr.size() - 1; // rows in operator ()()
159 d.stream(), indices.data(), coo_row_ind.data(), in operator ()()
164 d.stream(), indices.data(), coo_row_ind.data(), in operator ()()
180 int right = n - 1; in BinarySearchRange()
182 int mid = left + (right - left) / 2; in BinarySearchRange()
[all …]

12345678910>>...54