Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for FqName (0.12 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolProvider.kt

    import org.jetbrains.kotlin.descriptors.findTypeAliasAcrossModuleDependencies
    import org.jetbrains.kotlin.descriptors.isEmpty
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.resolve.scopes.DescriptorKindFilter
    
    internal class KaFe10SymbolProvider(
        override val analysisSession: KaFe10Session
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ReferenceShortener.kt

            return object : ShortenCommand {
                override val targetFile: SmartPsiElementPointer<KtFile> get() = ktFilePointer
                override val importsToAdd: Set<FqName> get() = emptySet()
                override val starImportsToAdd: Set<FqName> get() = emptySet()
                override val listOfTypeToShortenInfo: List<TypeToShortenInfo> get() = emptyList()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/NativeStandaloneSessionBuilderTest.kt

    import org.jetbrains.kotlin.analysis.project.structure.builder.buildKtSourceModule
    import org.jetbrains.kotlin.konan.target.HostManager
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.platform.konan.NativePlatforms
    import org.jetbrains.kotlin.psi.KtCallExpression
    import org.jetbrains.kotlin.psi.KtFile
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirResolveExtensionInfoProvider.kt

                for (tool in tools) {
                    for (packageName in tool.packageFilter.getAllSubPackages(FqName.ROOT)) {
                        if (seenTopLevelPackages.add(packageName) && nameFilter(packageName)) {
                            yield(analysisSession.firSymbolBuilder.createPackageSymbol(FqName.ROOT.child(packageName)))
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaFromTypes.kt

    import org.gradle.declarative.dsl.schema.FqName
    import kotlin.reflect.KCallable
    import kotlin.reflect.KClass
    import kotlin.reflect.KFunction
    import kotlin.reflect.KVisibility
    
    
    fun schemaFromTypes(
        topLevelReceiver: KClass<*>,
        types: Iterable<KClass<*>>,
        externalFunctions: List<KFunction<*>> = emptyList(),
        externalObjects: Map<FqName, KClass<*>> = emptyMap(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbolProvider.kt

        override fun getTopLevelCallableSymbols(packageFqName: FqName, name: Name): Sequence<KaCallableSymbol> {
            val firs = firSymbolProvider.getTopLevelCallableSymbols(packageFqName, name)
            return firs.asSequence().map { firSymbol ->
                firSymbolBuilder.buildSymbol(firSymbol) as KaCallableSymbol
            }
        }
    
        override fun getPackageSymbolIfPackageExists(packageFqName: FqName): KaPackageSymbol? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosure.ir.txt

    MODULE_FRAGMENT
      FILE fqName:<root> fileName:context.kt
        FUN name:call visibility:local modality:FINAL <> () returnType:kotlin.Unit
        FUN name:consume visibility:public modality:FINAL <> (n:kotlin.Int) returnType:kotlin.Unit
          VALUE_PARAMETER name:n index:0 type:kotlin.Int
          BLOCK_BODY
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
            VAR name:x type:kotlin.Int [val]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.resolve.extensions
    
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    
    /**
     * Represents the Kotlin file which provides additional, generated declarations for resolution.
     *
     * All member implementations should:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                }
            """
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation)
                .generatedSourceFile(fqName(generatedClass))
                .containsElementsIn(generatedClass)
            assertThat(compilation)
                .generatedSourceFile(fqName(adapterClass))
                .containsElementsIn(adapterClass)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

        public abstract fun getPackageSymbolIfPackageExists(packageFqName: FqName): KaPackageSymbol?
    
        public abstract fun getClassOrObjectSymbolByClassId(classId: ClassId): KaClassOrObjectSymbol?
    
        public abstract fun getTypeAliasByClassId(classId: ClassId): KaTypeAliasSymbol?
    
        public abstract fun getTopLevelCallableSymbols(packageFqName: FqName, name: Name): Sequence<KaCallableSymbol>
    
        @Suppress("PropertyName")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top