Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 616 for which (0.24 sec)

  1. src/cmd/compile/internal/ssa/op.go

    // NameOfResult returns the ir.Name of result which (indexed 0, 1, etc).
    func (a *AuxCall) NameOfResult(which int64) *ir.Name {
    	return a.abiInfo.OutParam(int(which)).Name
    }
    
    // TypeOfResult returns the type of result which (indexed 0, 1, etc).
    func (a *AuxCall) TypeOfResult(which int64) *types.Type {
    	return a.abiInfo.OutParam(int(which)).Type
    }
    
    // TypeOfArg returns the type of argument which (indexed 0, 1, etc).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

    /**
     * A scope inside which use-site type-parameters of callable declarations may be substituted. Such declarations are represented as [KaCallableSignature].
     *
     * @see org.jetbrains.kotlin.analysis.api.components.KaScopeProviderMixIn.getTypeScope
     * @see KaCallableSignature
     */
    public interface KaTypeScope : KaScopeLike {
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         * Return a sequence of all [KaDeclarationSymbol] which current scope contain
         */
        public fun getAllSymbols(): Sequence<KaDeclarationSymbol> = withValidityAssertion {
            sequence {
                yieldAll(getCallableSymbols())
                yieldAll(getClassifierSymbols())
                yieldAll(getConstructors())
            }
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/version.go

    	// goStrictVersion is the Go version at which the Go versions
    	// became "strict" in the sense that, restricted to modules at this version
    	// or later, every module must have a go version line ≥ all its dependencies.
    	// It is also the version after which "too new" a version is considered a fatal error.
    	GoStrictVersion = "1.21"
    
    	// ExplicitModulesTxtImportVersion is the Go version at which vendored packages need to be present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

        /**
         * Creates an out-of-block modification tracker which is incremented every time there is an out-of-block change in some source project
         * module.
         *
         * ### Out-of-block Modification (OOBM)
         *
         * Out-of-block modification is a source code modification which may change the resolution of other non-local declarations.
         *
         * #### Example 1
         *
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

        /**
         * Creates an {@link Instantiator} that can inject services and user provided values into the instances it creates, but does not decorate the instances. Is not lenient.
         *
         * <p>Use for any non-model types for which services or user provided constructor values need to injected. This is simply a convenience for {@link #injectScheme()}.
         *
         * @param services The services to make available to instances.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtInitializerValue.kt

    ) : KaInitializerValue()
    
    /**
     * Property initializer which cannot be represented as Kotlin const value.
     *
     * See [KaConstantInitializerValue] for more info.
     */
    public class KaNonConstantInitializerValue(
        override val initializerPsi: KtExpression?,
    ) : KaInitializerValue()
    
    /**
     * Initializer of property of annotation, which can not be which cannot be represented as Kotlin const value,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         * explicitly. In most cases, explicit type error handling should be preferred.
         *
         * As a motivating example, consider that we want to find all functions which can be called with an argument of a certain type and show
         * them to a user. The user has provided a type `List<>` with an unspecified type argument, which translates to `List<ERROR>`. We still
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScopeLike.kt

        /**
         * Returns a **superset** of names which current scope may contain.
         * In other words `ALL_NAMES(scope)` is a subset of `scope.getAllNames()`
         */
        public fun getAllPossibleNames(): Set<Name> = withValidityAssertion {
            getPossibleCallableNames() + getPossibleClassifierNames()
        }
    
        /**
         * Returns a **superset** of callable names which current scope may contain.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

        /**
         * Allows quickly finding [KtClassOrObject]s which have a given simple name as a supertype. The map may contain local classes as well.
         */
        internal val classesBySupertypeName: MutableMap<Name, MutableSet<KtClassOrObject>> = mutableMapOf()
    
        /**
         * Maps a simple name `N` to type aliases `A` in whose definition `N` occurs as the topmost user type, which is a prerequisite for other
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top