Home
last modified time | relevance | path

Searched refs:getOrNull (Results 1 – 12 of 12) sorted by relevance

/external/dokka/core/src/main/kotlin/javadoc/
Dsource-position.kt16 override fun line(): Int = sourcePositionParts.getOrNull(1)?.toInt() ?: -1
18 override fun column(): Int = sourcePositionParts.getOrNull(2)?.toInt() ?: -1
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DExceptionsConstuctor.kt23 return runCatching { exception.createCopy() as E? }.getOrNull() in <lambda>()
72 { e -> runCatching { block(e) }.getOrNull() } in safeCtor()
/external/kotlinx.coroutines/stdlib-stubs/src/
DResult.kt12 public fun getOrNull(): T? method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/
DAgentPremain.kt26 }.getOrNull() ?: DebugProbesImpl.enableCreationStackTraces in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
DDebugProbesImpl.kt67 }.getOrNull() in <lambda>()
260 val actualTrace = runCatching { thread.stackTrace }.getOrNull() in <lambda>()
332 val continuationFrame = actualTrace.getOrNull(frameIndex) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/
DNamedDispatchers.kt46 public fun peek(): String? = elements.getOrNull(head - 1) in peek()
/external/dokka/core/src/main/kotlin/Markdown/
DMarkdownProcessor.kt17 val previous get() = parent?.children?.getOrNull(parent.children.indexOf(this) - 1) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DCancellableContinuationTest.kt136 assertEquals(Unit, it.getOrNull()) in <lambda>()
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/src/
DHandlerDispatcher.kt100 …tcher? = runCatching { HandlerContext(Looper.getMainLooper().asHandler(async = true)) }.getOrNull() in <lambda>()
/external/dokka/core/src/main/kotlin/Samples/
DKotlinWebsiteSampleProcessingService.kt43 expression.valueArguments.getOrNull(1)?.let { in convertAssertTrueFalse()
/external/javassist/src/main/javassist/
DClassPool.java443 public CtClass getOrNull(String classname) { in getOrNull() method in ClassPool
/external/swiftshader/src/Pipeline/
DSpirvShaderDebugger.cpp1115 T *getOrNull(SpirvID<T> id) const;
1623 type->returnTy = getOrNull(debug::Type::ID(insn.word(6))); in process()
1929 T *SpirvShader::Impl::Debugger::getOrNull(SpirvID<T> id) const in getOrNull() function in sw::SpirvShader::Impl::Debugger