Home
last modified time | relevance | path

Searched refs:ReplaceWith (Results 1 – 25 of 33) sorted by relevance

12

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DMigration.kt113 replaceWith = ReplaceWith("catch { emitAll(fallback) }") in <lambda>()
125 replaceWith = ReplaceWith("catch { emitAll(fallback) }") in <lambda>()
193 replaceWith = ReplaceWith("flatMapConcat(mapper)") in <lambda>()
204 replaceWith = ReplaceWith("flatMapConcat(mapper)") in <lambda>()
216 replaceWith = ReplaceWith("flattenConcat()") in <lambda>()
227 replaceWith = ReplaceWith("flattenConcat()") in <lambda>()
247 replaceWith = ReplaceWith("let(transformer)") in <lambda>()
258 replaceWith = ReplaceWith("drop(count)") in <lambda>()
273 replaceWith = ReplaceWith("collect(block)") in <lambda>()
284 replaceWith = ReplaceWith("scan(initial, operation)") in <lambda>()
[all …]
/external/deqp-deps/SPIRV-Tools/source/util/
Dilist_node.h90 void ReplaceWith(NodeType* target);
140 that.ReplaceWith(this); in IntrusiveNodeBase()
151 that.ReplaceWith(this);
213 void IntrusiveNodeBase<NodeType>::ReplaceWith(NodeType* target) { in ReplaceWith() function
Dilist.h220 list.sentinel_.ReplaceWith(&sentinel_); in IntrusiveList()
231 list.sentinel_.ReplaceWith(&sentinel_);
/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dilist_node.h90 void ReplaceWith(NodeType* target);
140 that.ReplaceWith(this); in IntrusiveNodeBase()
151 that.ReplaceWith(this);
213 void IntrusiveNodeBase<NodeType>::ReplaceWith(NodeType* target) { in ReplaceWith() function
Dilist.h220 list.sentinel_.ReplaceWith(&sentinel_); in IntrusiveList()
231 list.sentinel_.ReplaceWith(&sentinel_);
/external/angle/third_party/spirv-tools/src/source/util/
Dilist_node.h90 void ReplaceWith(NodeType* target);
140 that.ReplaceWith(this); in IntrusiveNodeBase()
151 that.ReplaceWith(this);
213 void IntrusiveNodeBase<NodeType>::ReplaceWith(NodeType* target) { in ReplaceWith() function
Dilist.h220 list.sentinel_.ReplaceWith(&sentinel_); in IntrusiveList()
231 list.sentinel_.ReplaceWith(&sentinel_);
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/
DRxChannel.kt45 …"Use collect instead", level = DeprecationLevel.WARNING, replaceWith = ReplaceWith("this.collect(a…
50 …"Use collect instead", level = DeprecationLevel.WARNING, replaceWith = ReplaceWith("this.collect(a… in consumeEach()
DRxFlowable.kt49 replaceWith = ReplaceWith("rxFlowable(context, block)")
DRxCompletable.kt40 replaceWith = ReplaceWith("rxCompletable(context, block)")
DRxSingle.kt40 replaceWith = ReplaceWith("rxSingle(context, block)")
DRxMaybe.kt41 replaceWith = ReplaceWith("rxMaybe(context, block)")
/external/llvm/lib/Transforms/Scalar/
DCorrelatedValuePropagation.cpp81 Value *ReplaceWith = S->getOperand(1); in processSelect() local
83 if (!CI->isOne()) std::swap(ReplaceWith, Other); in processSelect()
84 if (ReplaceWith == S) ReplaceWith = UndefValue::get(S->getType()); in processSelect()
86 S->replaceAllUsesWith(ReplaceWith); in processSelect()
/external/v8/src/regexp/
Dregexp-bytecode-peephole.cc66 BytecodeSequenceNode& ReplaceWith(int bytecode);
311 BytecodeSequenceNode& BytecodeSequenceNode::ReplaceWith(int bytecode) { in ReplaceWith() function in v8::internal::__anon145cd1840111::BytecodeSequenceNode
514 .ReplaceWith(BC_SKIP_UNTIL_BIT_IN_TABLE) in DefineStandardSequences()
529 .ReplaceWith(BC_SKIP_UNTIL_CHAR_POS_CHECKED) in DefineStandardSequences()
545 .ReplaceWith(BC_SKIP_UNTIL_CHAR_AND) in DefineStandardSequences()
566 .ReplaceWith(BC_SKIP_UNTIL_CHAR) in DefineStandardSequences()
584 .ReplaceWith(BC_SKIP_UNTIL_CHAR_OR_CHAR) in DefineStandardSequences()
612 .ReplaceWith(BC_SKIP_UNTIL_GT_OR_NOT_BIT_IN_TABLE) in DefineStandardSequences()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DErrors.kt70 replaceWith = ReplaceWith("(Throwable) -> Boolean")
83 replaceWith = ReplaceWith("catch { e -> if (predicate(e)) emitAll(fallback) else throw e }")
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannel.kt222 replaceWith = ReplaceWith("receiveOrNull", "kotlinx.coroutines.channels.receiveOrNull") in send()
240 replaceWith = ReplaceWith("onReceiveOrNull", "kotlinx.coroutines.channels.onReceiveOrNull") in send()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/test_/
DTestCoroutineContext.kt34 ReplaceWith("TestCoroutineScope", "kotlin.coroutines.test"), in <lambda>()
287 ReplaceWith("testContext.runBlockingTest(testBody)", "kotlin.coroutines.test"), in toString()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DMigration.kt34 replaceWith = ReplaceWith("asFlow().buffer(batchSize)", imports = ["kotlinx.coroutines.flow.*"])
DChannel.kt31 …"Use collect instead", level = DeprecationLevel.WARNING, replaceWith = ReplaceWith("this.collect(a…
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DCorrelatedValuePropagation.cpp115 Value *ReplaceWith = S->getTrueValue(); in processSelect() local
117 if (!CI->isOne()) std::swap(ReplaceWith, Other); in processSelect()
118 if (ReplaceWith == S) ReplaceWith = UndefValue::get(S->getType()); in processSelect()
120 S->replaceAllUsesWith(ReplaceWith); in processSelect()
/external/dokka/runners/cli/src/main/kotlin/cli/
Dmain.kt76 @Deprecated("There is no way to set this to false.", replaceWith = ReplaceWith( in <lambda>()
81 @Deprecated("There is no way to set this to false.", replaceWith = ReplaceWith( in <lambda>()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/src/
DFlux.kt54 replaceWith = ReplaceWith("flux(context, block)")
DMono.kt43 replaceWith = ReplaceWith("mono(context, block)")
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCancellableContinuation.kt231 replaceWith = ReplaceWith("suspendAtomicCancellableCoroutine(block)")
/external/v8/src/compiler/backend/
Dmid-tier-register-allocator.cc621 InstructionOperand::ReplaceWith(operand, spill_operand()); in SpillOperand()
624 InstructionOperand::ReplaceWith(operand, &pending_op); in SpillOperand()
654 InstructionOperand::ReplaceWith(&move_ops->destination(), &to_operand); in EmitGapMoveToInputFromSpillSlot()
668 InstructionOperand::ReplaceWith(&move_ops->source(), &from_operand); in EmitGapMoveToSpillSlot()
706 InstructionOperand::ReplaceWith(current, &allocated); in AllocatePendingSpillOperand()
942 InstructionOperand::ReplaceWith(operand, &pending_op); in PendingUse()
986 InstructionOperand::ReplaceWith(pending_use, &allocated_op); in Commit()
1121 InstructionOperand::ReplaceWith(operand, &allocated); in Commit()
2150 InstructionOperand::ReplaceWith(operand, &to); in AllocateUseWithMove()
2176 InstructionOperand::ReplaceWith(operand, &allocated); in AllocateInput()
[all …]

12