Home
last modified time | relevance | path

Searched refs:unbox (Results 1 – 18 of 18) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DDelay.kt222 timeoutMillis = timeoutMillisSelector(NULL.unbox(lastValue)) in debounceInternal()
225 downstream.emit(NULL.unbox(lastValue)) in debounceInternal()
236 downstream.emit(NULL.unbox(lastValue)) in debounceInternal()
243 if (lastValue != null) downstream.emit(NULL.unbox(lastValue)) in debounceInternal()
302 downstream.emit(NULL.unbox(value)) in sample()
/external/javapoet/src/test/java/com/squareup/javapoet/
DAbstractTypesTest.java269 @Test public void unbox() throws Exception { in unbox() method in AbstractTypesTest
270 assertThat(TypeName.INT).isEqualTo(TypeName.INT.unbox()); in unbox()
271 assertThat(TypeName.VOID).isEqualTo(TypeName.VOID.unbox()); in unbox()
272 assertThat(ClassName.get(Integer.class).unbox()).isEqualTo(TypeName.INT.unbox()); in unbox()
273 assertThat(ClassName.get(Void.class).unbox()).isEqualTo(TypeName.VOID.unbox()); in unbox()
275 TypeName.OBJECT.unbox(); in unbox()
280 ClassName.get(String.class).unbox(); in unbox()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DDynamicType.cpp68 static void unbox(QualType &Ty) { in unbox() function
83 unbox(CastFromTy); in getDynamicCastInfo()
84 unbox(CastToTy); in getDynamicCastInfo()
125 unbox(CastFromTy); in setDynamicTypeAndCastInfo()
126 unbox(CastToTy); in setDynamicTypeAndCastInfo()
/external/guava/guava-tests/benchmark/com/google/common/collect/
DConcurrentHashMultisetBenchmark.java197 return unbox(countMap.get(element));
335 return unbox(countMap.remove(element));
388 return (count == 0) ? removeAllOccurrences(element) : unbox(countMap.put(element, count));
546 private static int unbox(@Nullable Integer i) {
/external/guava/android/guava-tests/benchmark/com/google/common/collect/
DConcurrentHashMultisetBenchmark.java197 return unbox(countMap.get(element));
335 return unbox(countMap.remove(element));
388 return (count == 0) ? removeAllOccurrences(element) : unbox(countMap.put(element, count));
546 private static int unbox(@NullableDecl Integer i) {
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DSymbol.kt16 inline fun <T> unbox(value: Any?): T = if (value === this) null as T else value as T method in kotlinx.coroutines.internal.Symbol
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DStateFlow.kt261 get() = NULL.unbox(_state.value)
342 collector.emit(NULL.unbox(newState)) in collect()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/
DCombine.kt133 emit(transform(value, NULL.unbox(otherValue))) in zipImpl()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DConflatedBroadcastChannel.kt92 is State<*> -> UNDEFINED.unbox<E?>(state.value) in <lambda>()
/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeName.java181 public TypeName unbox() { in unbox() method in TypeName
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DOldClassInstrumentor.java142 generator.unbox(returnType); in generateCallToClassHandler()
/external/dagger2/java/dagger/internal/codegen/writing/
DInjectionMethods.java400 ? typeName.unbox() in accessibleType()
/external/javapoet/
DCHANGELOG.md202 * New: `TypeName.box()` and `TypeName.unbox()` convenience APIs.
/external/llvm-project/flang/test/Fir/
Dfir-ops.fir146 // CHECK: [[VAL_43:%.*]]:6 = fir.unbox [[VAL_42]] : (!fir.box<i32>) -> (!fir.ref<i32>, i32, i32, !f…
172 %2:6 = fir.unbox %1 : (!fir.box<i32>) -> (!fir.ref<i32>,i32,i32,!fir.tdesc<i32>,i32,!fir.dims<0>)
/external/llvm-project/flang/include/flang/Optimizer/Dialect/
DFIROps.td1242 def fir_UnboxOp : fir_SimpleOp<"unbox", [NoSideEffect]> {
1243 let summary = "unbox the boxed value into a tuple value";
1254 …%41:6 = fir.unbox %40 : (!fir.box<!fir.type<T>>) -> (!fir.ref<!fir.type<T>>, i32, i32, !fir.tdesc<…
1271 let summary = "unbox a boxchar value into a pair value";
1289 let summary = "unbox a boxproc value into a pair value";
/external/angle/tools/flex-bison/third_party/m4sugar/
Dm4sugar.m41150 # [] and use m4_car/m4_cdr for recursion, we instead unbox the list (which
1199 # we unbox the list, and use _m4_foreach for iteration. For m4_map,
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api849 public final synthetic fun unbox-impl ()Ljava/lang/Object;
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/
Dospd.txt.gz