Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 132 for Sall (0.03 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

         * [computePackageNamesWithTopLevelCallables] if either returns `null`. It depends on the declaration provider whether it's worth
         * computing separate package sets for classifiers and callables, or just one set containing all package names.
         */
        public open fun computePackageNames(): Set<String>? = null
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

        }
    
        private fun FirDeprecationInfo.toDeprecationInfo(): DeprecationInfo {
            // We pass null as the message, otherwise we can trigger a contract violation
            // as getMessage will call lazyResolveToPhase(ANNOTATION_ARGUMENTS)
            // TODO(KT-67823) stop exposing compiler internals, as the message isn't actually required by the callers.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolProvider.kt

            val packageViewDescriptor = analysisContext.resolveSession.moduleDescriptor.getPackage(packageFqName)
            return packageViewDescriptor.memberScope.getContributedDescriptors(DescriptorKindFilter.ALL, nameFilter = { it == name })
                .asSequence()
                .filter { it.name == name }
                .mapNotNull { it.toKtSymbol(analysisContext) as? KaCallableSymbol }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

        )
        public fun KtElement.collectCallCandidates(): List<KaCallCandidateInfo> = collectCallCandidatesOld()
    
        /**
         * Returns all the candidates considered during [overload resolution](https://kotlinlang.org/spec/overload-resolution.html) for the call
         * corresponding to this [KtElement].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

         * appears. E.g. a "statement" in a block is considered used if it is the
         * last expression in that block AND the block itself is used -- a
         * recursive call to `isUsed`, one level higher in the syntax tree.
         *
         * The methods are _conservative_, erring on the side of answering `true`.
         */
        private fun isUsed(psiElement: PsiElement): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

         * `MutableCollection<String>`.
         *
         * Note that for flexible types, both direct super types of the upper and lower bounds are returned. If that's not desirable, please
         * first call [KaFlexibleType.upperBound] or [KaFlexibleType.lowerBound] and then call this method.
         *
         * @param shouldApproximate whether to approximate non-denotable types. For example, super type of `List<out String>` is
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtContractDescriptionElementRenderer.kt

        endWithNewLine: Boolean = true
    ) {
        appendLine(prop.name + ":")
        withIndent {
            renderer(prop.call(), endWithNewLine)
        }
    }
    
    private fun PrettyPrinter.appendSimpleProperty(prop: KProperty<Any>, endWithNewLine: Boolean = true) {
        append(prop.name + ": ")
        append(prop.call().toString())
        if (endWithNewLine) appendLine()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSignatureSubstitutor.kt

        /**
         * Creates a new [KaCallableSignature] by given symbol and leave all types intact
         */
        public fun <S : KaCallableSymbol> S.asSignature(): KaCallableSignature<S> =
            withValidityAssertion { analysisSession.signatureSubstitutor.asSignature(this) }
    
        /**
         * Creates a new [KaCallableSignature] by given symbol and leave all types intact
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/build.gradle.kts

        implementation(project(":analysis:kt-references"))
        api(project(":analysis:project-structure"))
    
        api(intellijCore())
        api(commonDependency("org.jetbrains.intellij.deps:asm-all"))
        api(libs.guava)
    }
    
    kotlin {
        explicitApi()
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" { projectDefault() }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/offline-mode.apt

      offline mode, and then test to see if the file-based basedir for an artifact
      repository works...if it doesn't work, we can mark that repository offline...
    
      OTOH, all offline-mode checks can probably be run from Wagon-based APIs.
    
    ** Maven-SCM
    
      In all but trivial examples, SCM operations cannot complete without
      having access to the versioning server. Therefore, it is assumed that
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top