Home
last modified time | relevance | path

Searched refs:toTypedArray (Results 1 – 25 of 29) sorted by relevance

12

/external/dokka/core/src/main/kotlin/javadoc/
Ddocbase.kt26 …Array<out Tag>? = tags().filter { it.kind() == tagname || it.kind() == "@$tagname" }.toTypedArray() in name()
27 override fun seeTags(): Array<out SeeTag>? = tags().filterIsInstance<SeeTag>().toTypedArray() in seeTags()
64 …rride fun inlineTags(): Array<out Tag> = buildInlineTags(module, this, node.content).toTypedArray() in equals()
65 …un firstSentenceTags(): Array<out Tag> = buildInlineTags(module, this, node.summary).toTypedArray() in equals()
81 return result.toTypedArray() in equals()
100 …> = node.members(NodeKind.AnnotationClass).map { AnnotationDescAdapter(module, it) }.toTypedArray() in annotationTypes()
101 …= node.members(NodeKind.Exception).map { ClassDocumentationNodeAdapter(module, it) }.toTypedArray() in <lambda>()
102 …oc> = node.members(NodeKind.Class).map { ClassDocumentationNodeAdapter(module, it) }.toTypedArray() in <lambda>()
103 …= node.members(NodeKind.Interface).map { ClassDocumentationNodeAdapter(module, it) }.toTypedArray() in <lambda>()
105 …Doc> = node.members(NodeKind.Enum).map { ClassDocumentationNodeAdapter(module, it) }.toTypedArray() in errors()
[all …]
Dtags.kt108 …override fun inlineTags(): Array<out Tag> = buildInlineTags(module, holder, content).toTypedArray() in name()
124 …ide fun inlineTags(): Array<out Tag> = buildInlineTags(type.module, holder, content).toTypedArray() in name()
140 override fun inlineTags(): Array<Tag> = buildInlineTags(module, holder, content).toTypedArray() in name()
/external/skia/modules/canvaskit/tests/
Dpath.spec.js124 mVerbs.toTypedArray().set([CanvasKit.MOVE_VERB, CanvasKit.LINE_VERB,
128 mPoints.toTypedArray().set([
136 mWeights.toTypedArray().set([117]);
196 mVerbs.toTypedArray().set([CanvasKit.MOVE_VERB, CanvasKit.LINE_VERB,
200 mPoints.toTypedArray().set([
208 mWeights.toTypedArray().set([117]);
439 const mPoints = pointsObj.toTypedArray();
Dcore.spec.js69 ambientColor.toTypedArray().set(CanvasKit.BLUE);
71 spotColor.toTypedArray().set(CanvasKit.RED);
156 const pixels2 = rdsData.toTypedArray();
159 expect(rdsData.toTypedArray()[0]).toEqual(pixels[0]);
541 const typedColorsArray = colors.toTypedArray();
1013 mZPlane.toTypedArray().set(zPlaneParams);
1015 const lightTA = mLight.toTypedArray();
1091 mObj.toTypedArray()[0] = 127; // sentinel value. Should be overwritten by readPixels.
1103 expect(pixels[0]).toEqual(mObj.toTypedArray()[0]);
1240 mThings.toTypedArray().set([4, 5, 6, 7, 8, 9]);
[all …]
Dfont.spec.js164 const mArr = mIDs.toTypedArray();
168 const mXformsArr = mXforms.toTypedArray();
Dcanvas.spec.js207 rrect.toTypedArray().set([10, 10, 210, 210,
369 const cm = colorObj.toTypedArray();
579 const mPoints = mPointsObj.toTypedArray();
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/
DStackTraceRecoveryTest.kt47 nestedMethod(deferred, *traces.toTypedArray()) in <lambda>()
70 nestedMethod(deferred, *stacktrace.toTypedArray()) in <lambda>()
DStacktraces.kt26 verifyStackTrace(e, *lines.toTypedArray()) in verifyStackTrace()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/
DReactiveStreamTckTest.kt22 … fun dispatchers(): Array<Array<Any>> = Dispatcher.values().map { arrayOf<Any>(it) }.toTypedArray() in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/linearizability/
DSegmentListRemoveLCStressTest.kt23 segments = (0..5).map { q.enqueue(it)!! }.toTypedArray() in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/operators/
DMergeTest.kt67 override fun <T> Iterable<Flow<T>>.merge(): Flow<T> = originalMerge(*toList().toTypedArray()) in merge()
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DMetadataTransformer.kt30 data1 = (map["d1"] as? List<String>)?.toTypedArray(), in <lambda>()
31 data2 = (map["d2"] as? List<String>)?.toTypedArray(), in <lambda>()
DAtomicFUTransformer.kt153 .map { it.toURI().toURL() }.toTypedArray() in <lambda>()
481 getMethodDescriptor(f.fuType, *params.toTypedArray()), in descToName()
782 iv.desc = getMethodDescriptor(methodType.returnType, *params.toTypedArray()) in vhOperation()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DAwait.kt43 if (isEmpty()) emptyList() else AwaitAll(toTypedArray()).await() in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DZip.kt287 val flowArray = flows.toList().toTypedArray() in combine()
306 val flowArray = flows.toList().toTypedArray() in combineTransform()
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/scheduler/actors/
DConcurrentStatefulActorBenchmark.kt116 val received = hashMapOf(*computations.map { it to 0 }.toTypedArray()) in requestorActorFair()
/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/src/
DJavaFxDispatcher.kt108 val cur = next.toTypedArray() in handle()
/external/okio/okio/src/commonMain/kotlin/okio/
DOptions.kt43 val indexes = mutableListOf(*byteStrings.map { -1 }.toTypedArray()) in <lambda>()
/external/kotlinx.atomicfu/atomicfu-gradle-plugin/src/main/kotlin/kotlinx/atomicfu/plugin/gradle/
DAtomicFUGradlePlugin.kt169 project.files(classesDirs.from.toTypedArray()).filter { it.exists() } in Project()
298 …val originalClassesDirs: FileCollection = project.files(classesDirs.toTypedArray()).filter { it.ex… in Project()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/knit/
DTestUtil.kt134 val expectedSorted = expected.sorted().toTypedArray() in <lambda>()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DReactiveFlow.kt161 .toList().toTypedArray() // R8 opto
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DStackTraceRecovery.kt104 result.stackTrace = resultStackTrace.toTypedArray() in createFinalException()
/external/okio/okio/src/commonTest/kotlin/okio/
DCommonOptionsTest.kt379 return Options.of(*options.map { it.encodeUtf8() }.toTypedArray()) in utf8Options()
/external/dokka/core/src/main/kotlin/Analysis/
DCoreProjectFileIndex.kt171 .toTypedArray()
/external/skia/tools/perf-canvaskit-puppeteer/
Dcanvas_perf.js133 const ta = ctx.rect.toTypedArray();

12