Home
last modified time | relevance | path

Searched full:produce (Results 1 – 25 of 8193) sorted by relevance

12345678910>>...328

/external/webrtc/net/dcsctp/tx/
Dstream_scheduler_test.cc55 scheduler.Produce(TimeMs(0), kMtu); in GetPacketCounts()
66 Produce,
78 EXPECT_CALL(producer_, Produce) in TestStream()
93 // A scheduler without active streams doesn't produce data.
97 EXPECT_EQ(scheduler.Produce(TimeMs(0), kMtu), absl::nullopt); in TEST()
120 EXPECT_CALL(producer, Produce).WillOnce(CreateChunk(StreamID(1), MID(0))); in TEST()
128 EXPECT_THAT(scheduler.Produce(TimeMs(0), kMtu), HasDataWithMid(MID(0))); in TEST()
129 EXPECT_EQ(scheduler.Produce(TimeMs(0), kMtu), absl::nullopt); in TEST()
137 EXPECT_CALL(producer1, Produce) in TEST()
151 EXPECT_CALL(producer2, Produce) in TEST()
[all …]
Drr_send_queue_test.cc59 EXPECT_FALSE(buf_.Produce(kNow, kOneFragmentPacketSize).has_value()); in TEST_F()
69 buf_.Produce(kNow, kOneFragmentPacketSize); in TEST_F()
80 buf_.Produce(kNow, /*max_size=*/20); in TEST_F()
86 buf_.Produce(kNow, /*max_size=*/20); in TEST_F()
92 buf_.Produce(kNow, /*max_size=*/20); in TEST_F()
97 EXPECT_FALSE(buf_.Produce(kNow, kOneFragmentPacketSize).has_value()); in TEST_F()
106 buf_.Produce(kNow, kOneFragmentPacketSize); in TEST_F()
114 buf_.Produce(kNow, kOneFragmentPacketSize); in TEST_F()
135 absl::optional<SendQueue::DataToSend> chunk_one = buf_.Produce(kNow, 1000); in TEST_F()
142 absl::optional<SendQueue::DataToSend> chunk_two = buf_.Produce(kNow, 1000); in TEST_F()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/
DProduceTest.kt12 val c = produce { in <lambda>()
30 val c = produce(NonCancellable) { in <lambda>()
51 yield() // to produce in <lambda>()
57 val c = produce(NonCancellable) { in <lambda>()
81 yield() // to produce in <lambda>()
97 val channel = produce<Int> { in <lambda>()
119 val c = produce<Int> { in <lambda>()
130 yield() // let the `produce` procedure run in <lambda>()
137 produce<Int> { in <lambda>()
149 val channel = produce<Int>(parent) { in <lambda>()
[all …]
DBroadcastTest.kt44 val a = produce { in <lambda>()
50 yield() // to produce in <lambda>()
54 yield() // to abort produce in <lambda>()
62 val a = produce { in <lambda>()
68 yield() // to produce in <lambda>()
72 yield() // to abort produce in <lambda>()
80 val a = produce<Unit> { in <lambda>()
87 yield() // to produce in <lambda>()
90 yield() // to produce (cancelled) in <lambda>()
98 val a = produce<Unit> { in <lambda>()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DProduce.kt8 * Scope for the [produce][CoroutineScope.produce], [callbackFlow] and [channelFlow] builders. in <lambda>()
39 * val callbackEventsStream = produce {
51 …* **Pitfall**: when used in [produce], if the channel is [cancelled][ReceiveChannel.cancel], [awai…
53 …* The reason is that, for [produce], cancelling the channel and cancelling the coroutine of the [P…
74 * Launches a new coroutine to produce a stream of values by sending them to a channel
92 * val channel = produce<Int> {
103 * val channel = produce<Int> {
125 * val channel = produce<Int>(produceJob, capacity = Channel.UNLIMITED) {
129 * produceJob.join() // wait for `produce` to fail
141 * val channel = parentScope.produce<Int>(capacity = Channel.UNLIMITED) {
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/
DProduceExceptionsTest.kt14 val producer = produce<Int>(Job()) { in <lambda>()
34 val produce = produce<Int>(Job()) { in <lambda>() constant
46 produce.cancel() in <lambda>()
51 val produce = produce<Int>(NonCancellable) { in <lambda>() constant
62 produce.receive() in <lambda>()
72 channel = produce { in <lambda>()
96 channel = produce(NonCancellable) { in <lambda>()
121 val channel = produce(job) { in <lambda>()
145 val channel = produce(job) { in <lambda>()
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp53 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getOperationCost()
59 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getCallCost()
66 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getCallCost()
82 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getIntrinsicCost()
88 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getUserCost()
149 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getScalingFactorCost()
208 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getFPOpCost()
216 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getIntImmCodeSizeCost()
222 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getIntImmCost()
229 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getIntImmCost()
[all …]
/external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/
DTestUScriptRun.java107 … errln("new UScriptRun(nullString, 0, 100) did not produce an IllegalArgumentException!"); in TestContstruction()
114 … errln("new UScriptRun(nullString, 100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
121 … errln("new UScriptRun(nullString, 0, -100) did not produce an IllegalArgumentException!"); in TestContstruction()
128 … errln("new UScriptRun(nullString, -100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
135 errln("new UScriptRun(nullChars, 0, 100) did not produce an IllegalArgumentException!"); in TestContstruction()
142 errln("new UScriptRun(nullChars, 100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
149 … errln("new UScriptRun(nullChars, 0, -100) did not produce an IllegalArgumentException!"); in TestContstruction()
156 … errln("new UScriptRun(nullChars, -100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
163 errln("new UScriptRun(dummyString, 0, 6) did not produce an IllegalArgumentException!"); in TestContstruction()
170 errln("new UScriptRun(dummy, 6, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DTestUScriptRun.java110 … errln("new UScriptRun(nullString, 0, 100) did not produce an IllegalArgumentException!"); in TestContstruction()
117 … errln("new UScriptRun(nullString, 100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
124 … errln("new UScriptRun(nullString, 0, -100) did not produce an IllegalArgumentException!"); in TestContstruction()
131 … errln("new UScriptRun(nullString, -100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
138 errln("new UScriptRun(nullChars, 0, 100) did not produce an IllegalArgumentException!"); in TestContstruction()
145 errln("new UScriptRun(nullChars, 100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
152 … errln("new UScriptRun(nullChars, 0, -100) did not produce an IllegalArgumentException!"); in TestContstruction()
159 … errln("new UScriptRun(nullChars, -100, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
166 errln("new UScriptRun(dummyString, 0, 6) did not produce an IllegalArgumentException!"); in TestContstruction()
173 errln("new UScriptRun(dummy, 6, 0) did not produce an IllegalArgumentException!"); in TestContstruction()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/channels/
DChannelBuildersFlowTest.kt11 val channel = produce { in <lambda>()
23 val channel = produce { in <lambda>()
35 val channel = produce(NonCancellable) { // otherwise failure will cancel scope as well in <lambda>()
50 val channel = produce(NonCancellable) { // otherwise failure will cancel scope as well in <lambda>()
64 val channel = produce(NonCancellable) { // otherwise failure will cancel scope as well in <lambda>()
77 val channel = produce(NonCancellable) { // otherwise failure will cancel scope as well in <lambda>()
90 val channel = produce { send("OK") } in <lambda>()
99 val channel = produce { send("OK") } in <lambda>()
102 assertSame(channel, flow.produceIn(this)) // can use produce multiple times in <lambda>()
109 val channel = produce { in <lambda>()
/external/libpcap/
Dpcap-config.157 options or their combinations may produce empty output \- this is by design.
62 Produce a help message and exit.
66 Produce libpcap version and exit. The version is the contents of
73 Produce the
79 Produce the
89 Produce the
103 to produce linker flags appropriate for static linking with libpcap.
111 to produce linker flags appropriate for static linking with libpcap and
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
DParserImpl.java171 currentEvent = state.produce(); in peekEvent()
207 public Event produce() { in produce() method in ParserImpl.ParseStreamStart
219 public Event produce() { in produce() method in ParserImpl.ParseImplicitDocumentStart
235 return new ParseDocumentStart().produce(); in produce()
241 public Event produce() { in produce() method in ParserImpl.ParseDocumentStart
287 public Event produce() { in produce() method in ParserImpl.ParseDocumentEnd
307 public Event produce() { in produce() method in ParserImpl.ParseDocumentContent
318 return new ParseBlockNode().produce(); in produce()
408 public Event produce() { in produce() method in ParserImpl.ParseBlockNode
538 public Event produce() { in produce() method in ParserImpl.ParseBlockSequenceFirstEntry
[all …]
/external/google-cloud-java/java-automl/proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/
DBatchPredictRequestOrBuilder.java148 * makes predictions for a text snippet, it will only produce results
152 * makes predictions for an image, it will only produce results that
156 * it will only produce bounding boxes which have at least this
163 * makes predictions for a video, it will only produce results that
194 * it will only produce bounding boxes which have at least this
215 * makes predictions for a text snippet, it will only produce results
219 * makes predictions for an image, it will only produce results that
223 * it will only produce bounding boxes which have at least this
230 * makes predictions for a video, it will only produce results that
261 * it will only produce bounding boxes which have at least this
[all …]
/external/google-cloud-java/java-automl/proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/
DBatchPredictRequestOrBuilder.java149 * makes predictions for a text snippet, it will only produce results
154 * makes predictions for an image, it will only produce results that
159 * it will only produce bounding boxes which have at least this
168 * makes predictions for a video, it will only produce results that
199 * it will only produce bounding boxes which have at least this
223 * makes predictions for a text snippet, it will only produce results
228 * makes predictions for an image, it will only produce results that
233 * it will only produce bounding boxes which have at least this
242 * makes predictions for a video, it will only produce results that
273 * it will only produce bounding boxes which have at least this
[all …]
/external/okio/okio/src/commonMain/kotlin/okio/
DHashingSink.kt52 * Returns a sink that uses the obsolete MD5 hash algorithm to produce 128-bit hashes. in close()
59 * Returns a sink that uses the obsolete SHA-1 hash algorithm to produce 160-bit hashes. in close()
65 /** Returns a sink that uses the SHA-256 hash algorithm to produce 256-bit hashes. */ in close()
68 /** Returns a sink that uses the SHA-512 hash algorithm to produce 512-bit hashes. */ in close()
71 /** Returns a sink that uses the obsolete SHA-1 HMAC algorithm to produce 160-bit hashes. */ in close()
74 /** Returns a sink that uses the SHA-256 HMAC algorithm to produce 256-bit hashes. */ in close()
77 /** Returns a sink that uses the SHA-512 HMAC algorithm to produce 512-bit hashes. */ in close()
DHashingSource.kt52 * Returns a source that uses the obsolete MD5 hash algorithm to produce 128-bit hashes. in close()
59 * Returns a source that uses the obsolete SHA-1 hash algorithm to produce 160-bit hashes. in close()
65 /** Returns a source that uses the SHA-256 hash algorithm to produce 256-bit hashes. */ in close()
68 /** Returns a source that uses the SHA-512 hash algorithm to produce 512-bit hashes. */ in close()
71 /** Returns a source that uses the obsolete SHA-1 HMAC algorithm to produce 160-bit hashes. */ in close()
74 /** Returns a source that uses the SHA-256 HMAC algorithm to produce 256-bit hashes. */ in close()
77 /** Returns a source that uses the SHA-512 HMAC algorithm to produce 512-bit hashes. */ in close()
/external/okio/okio/src/nonJvmMain/kotlin/okio/
DHashingSource.kt71 /** Returns a source that uses the obsolete MD5 hash algorithm to produce 128-bit hashes. */
74 /** Returns a source that uses the obsolete SHA-1 hash algorithm to produce 160-bit hashes. */
77 /** Returns a source that uses the SHA-256 hash algorithm to produce 256-bit hashes. */
80 /** Returns a source that uses the SHA-512 hash algorithm to produce 512-bit hashes. */
83 /** Returns a source that uses the obsolete SHA-1 HMAC algorithm to produce 160-bit hashes. */
86 /** Returns a source that uses the SHA-256 HMAC algorithm to produce 256-bit hashes. */
89 /** Returns a source that uses the SHA-512 HMAC algorithm to produce 512-bit hashes. */
DHashingSink.kt67 /** Returns a sink that uses the obsolete MD5 hash algorithm to produce 128-bit hashes. */
70 /** Returns a sink that uses the obsolete SHA-1 hash algorithm to produce 160-bit hashes. */
73 /** Returns a sink that uses the SHA-256 hash algorithm to produce 256-bit hashes. */
76 /** Returns a sink that uses the SHA-512 hash algorithm to produce 512-bit hashes. */
79 /** Returns a sink that uses the obsolete SHA-1 HMAC algorithm to produce 160-bit hashes. */
82 /** Returns a sink that uses the SHA-256 HMAC algorithm to produce 256-bit hashes. */
85 /** Returns a sink that uses the SHA-512 HMAC algorithm to produce 512-bit hashes. */
/external/python/pyyaml/lib/yaml/
D__init__.py31 Scan a YAML stream and produce scanning tokens.
42 Parse a YAML stream and produce parsing events.
54 and produce the corresponding representation tree.
65 and produce corresponding representation trees.
77 and produce the corresponding Python object.
88 and produce corresponding Python objects.
100 and produce the corresponding Python object.
110 and produce corresponding Python objects.
120 and produce the corresponding Python object.
130 and produce corresponding Python objects.
[all …]
/external/perfetto/ui/src/frontend/
Ddebug.ts15 import {produce} from 'immer';
27 produce: typeof produce; property
36 window.produce = produce;
/external/rust/android-crates-io/crates/darling_core/src/
Dderive.rs22 /// the input cannot produce a valid impl, the returned tokens will contain
29 /// the input cannot produce a valid impl, the returned tokens will contain
36 /// the input cannot produce a valid impl, the returned tokens will contain
43 /// the input cannot produce a valid impl, the returned tokens will contain
50 /// the input cannot produce a valid impl, the returned tokens will contain
57 /// the input cannot produce a valid impl, the returned tokens will contain
/external/google-breakpad/docs/
Dlinux_starter_guide.md9 the Breakpad source directory will produce
11 necessary to produce minidumps from an application.
42 Compiling and running this example should produce a minidump file in /tmp, and
69 To produce useful stack traces, Breakpad requires you to convert the debugging
73 your binaries to produce the text-format symbols. For example, if your main
84 file contains the information you need to produce this directory structure, for
97 ## Processing the minidump to produce a stack trace
100 plus its corresponding text-format symbols and produce a symbolized stacktrace.
/external/llvm/test/CodeGen/PowerPC/
Dvec_mergeow.ll8 ; ordering. If run on a big endian machine, this should produce the vmrgew
9 ; instruction. If run on a little endian machine, this should produce the
33 ; ordering. If run on a big endian machine, this should produce the vmrgew
34 ; instruction. If run on a little endian machine, this should produce the
56 ; ordering. If run on a big endian machine, this should produce the vmrgow
57 ; instruction. If run on a little endian machine, this should produce the
81 ; ordering. If run on a big endian machine, this should produce the vmrgow
82 ; instruction. If run on a little endian machine, this should produce the
/external/kotlinx.coroutines/docs/topics/
Dselect-expression.md20 fun CoroutineScope.fizz() = produce<String> {
31 fun CoroutineScope.buzz() = produce<String> {
45 select<Unit> { // <Unit> means that this select expression does not produce any result
65 fun CoroutineScope.fizz() = produce<String> {
72 fun CoroutineScope.buzz() = produce<String> {
80 select<Unit> { // <Unit> means that this select expression does not produce any result
183 val a = produce<String> {
186 val b = produce<String> {
236 fun CoroutineScope.produceNumbers(side: SendChannel<Int>) = produce<Int> {
237 for (num in 1..10) { // produce 10 numbers from 1 to 10
[all …]
/external/okio/okio/src/jvmMain/kotlin/okio/
DHashingSink.kt113 * Returns a sink that uses the obsolete MD5 hash algorithm to produce 128-bit hashes. in hash()
121 * Returns a sink that uses the obsolete SHA-1 hash algorithm to produce 160-bit hashes. in hash()
128 /** Returns a sink that uses the SHA-256 hash algorithm to produce 256-bit hashes. */ in hash()
132 /** Returns a sink that uses the SHA-512 hash algorithm to produce 512-bit hashes. */ in hash()
136 /** Returns a sink that uses the obsolete SHA-1 HMAC algorithm to produce 160-bit hashes. */ in hash()
140 /** Returns a sink that uses the SHA-256 HMAC algorithm to produce 256-bit hashes. */ in hash()
144 /** Returns a sink that uses the SHA-512 HMAC algorithm to produce 512-bit hashes. */ in hash()

12345678910>>...328