/external/perfetto/ui/src/common/ |
D | actions_unittest.ts | 15 import {produce} from 'immer'; 40 const after = produce(createEmptyState(), draft => { 47 const once = produce(createEmptyState(), draft => { 56 const twice = produce(once, draft => { 74 const afterGroup = produce(state, draft => { 84 const afterTrackAdd = produce(afterGroup, draft => { 99 const once = produce(createEmptyState(), draft => { 117 const twice = produce(once, draft => { 137 const after = produce(state, draft => { 157 const after = produce(state, draft => { [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/ |
D | ProduceExceptionsTest.kt | 17 val producer = produce<Int>(Job()) { in <lambda>() 37 val produce = produce<Int>(Job()) { in <lambda>() constant 49 produce.cancel() in <lambda>() 54 val produce = produce<Int>(NonCancellable) { in <lambda>() constant 65 produce.receive() in <lambda>() 75 channel = produce { in <lambda>() 99 channel = produce(NonCancellable) { in <lambda>() 124 val channel = produce(job) { in <lambda>() 148 val channel = produce(job) { in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/ |
D | ProduceTest.kt | 14 val c = produce { in <lambda>() 32 val c = produce(NonCancellable) { in <lambda>() 59 val c = produce(NonCancellable) { in <lambda>() 100 val channel = produce<Int>(parent) { in <lambda>() 116 produce<Int>(parent) { in <lambda>() 120 this@produce.cancel() in <lambda>() 133 produce<Int>(parent) { in <lambda>() 146 val channel = produce<Int> { } in <lambda>() 154 val produced = produce<Int>(coroutineContext, onCompletion = source.consumes()) { in <lambda>()
|
D | ChannelsTest.kt | 133 val c = produce<Int> { in <lambda>() 328 val c = produce<Int> { in <lambda>() 355 val c = produce<Int> { in <lambda>() 383 val c = produce<Int> { in <lambda>() 410 val c = produce<Int> { in <lambda>() 427 val c = produce<Int> { in <lambda>() 448 val c = produce<Int> { in <lambda>() 474 val c = produce<Int> { in <lambda>() 501 val c = produce<Int> { in <lambda>() 558 GlobalScope.produce(context) { in <lambda>()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/ |
D | ParserImpl.java | 157 currentEvent = state.produce(); in peekEvent() 181 public Event produce() { in produce() method in ParserImpl.ParseStreamStart 192 public Event produce() { in produce() method in ParserImpl.ParseImplicitDocumentStart 206 return p.produce(); in produce() 212 public Event produce() { in produce() method in ParserImpl.ParseDocumentStart 250 public Event produce() { in produce() method in ParserImpl.ParseDocumentEnd 269 public Event produce() { in produce() method in ParserImpl.ParseDocumentContent 278 return p.produce(); in produce() 357 public Event produce() { in produce() method in ParserImpl.ParseBlockNode 492 public Event produce() { in produce() method in ParserImpl.ParseBlockSequenceFirstEntry [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | vec_mergeow.ll | 8 ; 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/llvm/test/CodeGen/PowerPC/ |
D | vec_mergeow.ll | 8 ; 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/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | icmpa.ll | 27 ; FIXME: This instruction is redundant. The sltiu can only produce 0 and 1. 48 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 68 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 88 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 108 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 128 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 147 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 166 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 187 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 206 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | icmpa.ll | 27 ; FIXME: This instruction is redundant. The sltiu can only produce 0 and 1. 48 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 68 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 88 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 108 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 128 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 147 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 166 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 187 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 206 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1.
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/channels/ |
D | ChannelBuildersFlowTest.kt | 14 val channel = produce { in <lambda>() 26 val channel = produce(NonCancellable) { // otherwise failure will cancel scope as well in <lambda>() 41 val channel = produce(NonCancellable) { // otherwise failure will cancel scope as well in <lambda>() 54 val channel = produce { send("OK") } in <lambda>() 64 val channel = produce { in <lambda>()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
D | lower-extract-subvector.ll | 15 br i1 undef, label %"produce processed", label %"for matrix.s0.y" 17 "produce processed": ; preds = %"for matrix.s0.y" 20 "for processed.s0.ty.ty.preheader": ; preds = %"produce processed" 39 "consume processed": ; preds = %"produce processed"
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/ |
D | Delay.kt | 46 val values = produce<Any?>(capacity = Channel.CONFLATED) { in <lambda>() 94 val values = produce<Any?>(capacity = Channel.CONFLATED) { in sample() 128 return produce(capacity = 0) { in fixedPeriodTicker()
|
/external/perfetto/ui/src/frontend/ |
D | record_widgets.ts | 15 import {Draft, produce} from 'immer'; 44 const traceCfg = produce(globals.state.recordConfig, draft => { 86 const traceCfg = produce(globals.state.recordConfig, draft => { 177 const traceCfg = produce(globals.state.recordConfig, draft => { 224 const traceCfg = produce(globals.state.recordConfig, draft => {
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_BatchToSpaceND.pbtxt | 32 2. Permute dimensions of `reshaped` to produce `permuted` of shape 41 3. Reshape `permuted` to produce `reshaped_permuted` of shape 53 `reshaped_permuted` according to `crops` to produce the output of shape: 136 optionally cropped according to `crops` to produce the output. This is the
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/guide/ |
D | example-channel-04.kt | 19 fun CoroutineScope.produceNumbers() = produce<Int> { in <lambda>() 24 fun CoroutineScope.square(numbers: ReceiveChannel<Int>): ReceiveChannel<Int> = produce { in <lambda>()
|
D | example-channel-05.kt | 21 fun CoroutineScope.numbersFrom(start: Int) = produce<Int> { in <lambda>() 26 fun CoroutineScope.filter(numbers: ReceiveChannel<Int>, prime: Int) = produce<Int> { in filter()
|
D | example-select-02.kt | 29 val a = produce<String> { in <lambda>() 32 val b = produce<String> { in <lambda>()
|
D | example-select-01.kt | 12 fun CoroutineScope.fizz() = produce<String> { in <lambda>() 19 fun CoroutineScope.buzz() = produce<String> { in <lambda>()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/MachO/AArch64/ |
D | classrefs.s | 3 ; Test that we produce an external relocation with Lbar. We could also produce
|
/external/llvm/test/MC/MachO/AArch64/ |
D | classrefs.s | 3 ; Test that we produce an external relocation with Lbar. We could also produce
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | HtmlLexer.java | 83 protected HtmlToken produce() { in produce() method in HtmlLexer 108 return produce(); in produce() 134 return produce(); in produce() 294 protected HtmlToken produce() { in produce() method in HtmlInputSplitter 719 if (tok == null) { tok = produce(); } in hasNext() 724 if (this.tok == null) { this.tok = produce(); } in next() 731 protected abstract HtmlToken produce(); in produce() method in AbstractTokenStream
|
/external/mockito/src/test/java/org/mockitousage/misuse/ |
D | SpyStubbingMisuseTest.java | 23 when(out.produce()).thenReturn(mpoo); in nestedWhenTest() 50 Sampler produce() { in produce() method in SpyStubbingMisuseTest.Producer
|
/external/python/cryptography/vectors/cryptography_vectors/asymmetric/DSA/FIPS_186-3/ |
D | PQGVer.rsp | 32 Result = F (Seed doesn't produce Q) 64 Result = F (Seed doesn't produce Q) 102 Result = F (Seed doesn't produce Q) 134 Result = F (Seed doesn't produce Q) 148 Result = F (Seed doesn't produce Q) 174 Result = F (Seed doesn't produce Q) 224 Result = F (Seed doesn't produce Q) 262 Result = F (Seed doesn't produce Q) 270 Result = F (Seed doesn't produce Q) 320 Result = F (Seed doesn't produce Q) [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/ |
D | Channels.common.kt | 696 GlobalScope.produce(context, onCompletion = consumes()) { in drop() 724 GlobalScope.produce(context, onCompletion = consumes()) { in dropWhile() 750 GlobalScope.produce(context, onCompletion = consumes()) { in filter() 772 GlobalScope.produce(context, onCompletion = consumes()) { in filterIndexed() 990 GlobalScope.produce(context, onCompletion = consumes()) { in take() 991 if (n == 0) return@produce in take() 998 return@produce in take() 1016 GlobalScope.produce(context, onCompletion = consumes()) { in takeWhile() 1018 if (!predicate(e)) return@produce in takeWhile() 1290 GlobalScope.produce(context, onCompletion = consumes()) { in toMutableList() [all …]
|
/external/clang/test/Sema/ |
D | uninit-variables.c | 446 int produce(void); in uninit_in_loop() 451 k = produce(); in uninit_in_loop() 456 int produce(void); in uninit_in_loop_goto() 466 k = produce(); in uninit_in_loop_goto()
|