Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for build_list (0.15 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                computeCodeFragmentMappings(file, mainFirFile, firResolveSession, configuration)
            }
    
            val compilationPeerData = CompilationPeerCollector.process(mainFirFile)
    
            val filesToCompile = buildList {
                val dependencyFiles = buildSet {
                    addAll(compilationPeerData.files)
                    addAll(codeFragmentMappings?.capturedFiles.orEmpty())
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                }
            }
        }
    
        class NestedType(val root: PossiblyInnerType, val nested: List<PossiblyInnerType>) {
            val allInnerTypes: List<PossiblyInnerType>
                get() = buildList {
                    add(root)
                    addAll(nested)
                }
        }
    
        override val typeContext = KaFe10TypeSystemCommonBackendContextForTypeMapping(resolveSession)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

                        }
                    }
                }
            }
        }
    
        private
        fun formatFailuresInLanguageTree(failures: List<SingleFailureResult>): List<String> = buildList {
            failures.forEach { failure ->
                when (failure) {
                    is UnsupportedConstruct -> add(formatUnsupportedConstruct(failure))
                    is ParsingError -> add(formatParsingError(failure))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompletionCandidateChecker.kt

                ?: errorWithAttachment("Cannot find enclosing declaration for ${nameExpression::class}") {
                    withPsiEntry("fakeNameExpression", nameExpression)
                }
    
            return buildList {
                addAll(towerDataContext.implicitReceiverStack)
                for (towerDataElement in towerDataContext.towerDataElements) {
                    addAll(towerDataElement.contextReceiverGroup.orEmpty())
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            } finally {
                state.destroy()
            }
        }
    
        private fun computeErrors(diagnostics: Diagnostics, allowedErrorFilter: (KaDiagnostic) -> Boolean): List<KaDiagnostic> {
            return buildList {
                for (diagnostic in diagnostics.all()) {
                    if (diagnostic.severity == Severity.ERROR) {
                        val ktDiagnostic = KaFe10Diagnostic(diagnostic, token)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

            builder: KaSymbolByFirBuilder,
        ): Pair<Collection<KaAnnotationValue>, KtElement?> {
            var representativePsi: KtElement? = null
            val flattenedVarargs = buildList {
                for (expr in this@convertVarargsExpression) {
                    val converted = expr.convertConstantExpression(builder) ?: continue
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

        }.also { nodeMapping[it] = blockElement }
    
    
        private
        fun mapBlockElementErrors(failingResult: FailingResult): Collection<DocumentError> {
            return buildList {
                fun visit(result: FailingResult) {
                    when (result) {
                        is MultipleFailuresResult -> result.failures.forEach(::visit)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    internal fun <T> interleave(
      a: Iterable<T>,
      b: Iterable<T>,
    ): List<T> {
      val ia = a.iterator()
      val ib = b.iterator()
    
      return buildList {
        while (ia.hasNext() || ib.hasNext()) {
          if (ia.hasNext()) {
            add(ia.next())
          }
          if (ib.hasNext()) {
            add(ib.next())
          }
        }
      }
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                // Identity equals are not supposed to be resolved the same way.
                FirOperation.EQ, FirOperation.NOT_EQ -> {}
                else -> return emptyList()
            }
    
            return buildList {
                expression.processEqualsFunctions(session, analysisSession) {
                    add(it.buildSymbol(symbolBuilder))
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

            val directiveToIgnoreSymbolRestore = directives.doNotCheckSymbolRestoreDirective()
            val directiveToIgnoreNonPsiSymbolRestore = directives.doNotCheckNonPsiSymbolRestoreDirective()
    
            val prettyRenderer = buildList {
                addIfNotNull(defaultRendererOption)
                addAll(directives[PRETTY_RENDERER_OPTION])
            }.fold(defaultRenderer) { acc, prettyRenderingMode ->
                prettyRenderingMode.transformation(acc)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top