Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for lists (0.17 sec)

  1. .idea/runConfigurations/Generate_Compiler_Arguments_Copy.xml

          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value="generateCompilerArgumentsCopy" />
            </list>
          </option>
          <option name="vmOptions" />
        </ExternalSystemSettings>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Apr 03 13:47:35 GMT 2023
    - 1K bytes
    - Viewed (0)
  2. .space/CODEOWNERS

    # OWNER_LIST: "Kotlin IDE Analysis Core"
    # OWNER_LIST: "Kotlin Release"
    # OWNER_LIST: "Kotlin Apple Ecosystem"
    # OWNER_LIST: "Kotlin Language Evolution"
    # OWNER_LIST: "Kotlin in Fleet"
    # OWNER_LIST: Compose
    # OWNER_LIST: Mikhail.Glukhikh Dmitriy.Novozhilov Kirill.Rakhman
    # OWNER_LIST: Yan.Zhulanow
    # OWNER_LIST: Dmitry.Gridin
    # OWNER_LIST: Alexander.Udalov
    # OWNER_LIST: Zalim.Bashorov
    # OWNER_LIST: Ilya.Goncharov Artem.Kobzar
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  3. 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)
                }
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Mar 10 11:03:45 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiFunctionSymbol.kt

            val bindingContext = analysisContext.analyze(psi, AnalysisMode.PARTIAL)
            bindingContext[BindingContext.FUNCTION, psi]
        }
    
        override val contractEffects: List<KtContractEffectDeclaration> by cached {
            descriptor?.getUserData(ContractProviderKey)?.getContractDescription()?.effects
                ?.map { it.effectDeclarationToAnalysisApi(analysisContext) }
                .orEmpty()
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 17:23:15 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSamConstructorSymbol.kt

        override val name: Name
            get() = withValidityAssertion { expandedDescriptor.name }
    
        override val valueParameters: List<KtValueParameterSymbol>
            get() = withValidityAssertion { descriptor.valueParameters.map { KtFe10DescValueParameterSymbol(it, analysisContext) } }
    
        override val hasStableParameterNames: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        override val type: KtClassLikeSymbol,
        override val bounds: List<KtType>,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.InconsistentTypeParameterBounds
    
    internal class AmbiguousSuperImpl(
        override val candidates: List<KtType>,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10InheritorsProvider.kt

    ) : KtInheritorsProvider(), Fe10KtAnalysisSessionComponent {
        override val token: KtLifetimeToken
            get() = analysisSession.token
    
        override fun getInheritorsOfSealedClass(classSymbol: KtNamedClassOrObjectSymbol): List<KtNamedClassOrObjectSymbol> {
            val classDescriptor = getSymbolDescriptor(classSymbol) as? ClassDescriptor ?: return emptyList()
    
            val inheritorsProvider = analysisContext.resolveSession.sealedClassInheritorsProvider
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Jun 22 07:31:36 GMT 2022
    - 2.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10FunctionLikeSignature.kt

    internal class KtFe10FunctionLikeSignature<out S : KtFunctionLikeSymbol>(
        private val backingSymbol: S,
        private val backingReturnType: KtType,
        private val backingReceiverType: KtType?,
        private val backingValueParameters: List<KtVariableLikeSignature<KtValueParameterSymbol>>,
    ) : KtFunctionLikeSignature<S>() {
        override val token: KtLifetimeToken get() = backingSymbol.token
        override val symbol: S get() = withValidityAssertion { backingSymbol }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescConstructorSymbol.kt

        override val containingClassIdIfNonLocal: ClassId?
            get() = withValidityAssertion { descriptor.constructedClass.classId }
    
        override val valueParameters: List<KtValueParameterSymbol>
            get() = withValidityAssertion { descriptor.valueParameters.map { KtFe10DescValueParameterSymbol(it, analysisContext) } }
    
        override val hasStableParameterNames: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

                    }
                }
                analyzedElements.addAll(nextInlineFunctions)
            }
        }
    
        /**
         * Returns the list of files that contain all reached inline functions.
         */
        fun allFiles(): List<KtFile> = analyzedElements.mapTo(mutableSetOf()) { it.containingKtFile }.toList()
    
        /**
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 5.1K bytes
    - Viewed (0)
Back to top