Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for KaCall (0.1 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCallInfo.kt

     */
    public class KaSuccessCallInfo(private val backingCall: KaCall) : KaCallInfo() {
        override val token: KaLifetimeToken get() = backingCall.token
        public val call: KaCall get() = withValidityAssertion { backingCall }
    }
    
    /**
     * Call that contains errors.
     */
    public class KaErrorCallInfo(
        candidateCalls: List<KaCall>,
        diagnostic: KaDiagnostic,
        override val token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCandidateInfo.kt

     */
    public sealed class KaCallCandidateInfo(
        candidate: KaCall,
        isInBestCandidates: Boolean,
    ) : KaLifetimeOwner {
        private val backingCandidate: KaCall = candidate
    
        override val token: KaLifetimeToken get() = backingCandidate.token
        public val candidate: KaCall get() = withValidityAssertion { backingCandidate }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/lifetime/KtLifetimeOwner.kt

        assertIsValidAndAccessible()
        return action()
    }
    
    /**
     * This is a helper function to properly expose parameters in some [KaLifetimeOwner] implementation.
     *
     * An example:
     * ```kotlin
     * public class KaCall(symbol: KaSymbol) : KaLifetimeTokenOwner {
     *     public val symbol: KaSymbol by validityAsserted(symbol)
     * }
     * ```
     *
     * @see KaLifetimeOwner
     * @see KaLifetimeOwnerField
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtSubstitutor.kt

     * substitute(Map<T, S>, substitutor) = Map<Int, Long>
     * ```
     *
     * Can be built by [org.jetbrains.kotlin.analysis.api.components.buildSubstitutor] or retrieved via a [org.jetbrains.kotlin.analysis.api.calls.KaCall]
     */
    public interface KaSubstitutor : KaLifetimeOwner {
        /**
         * substitutes type parameters in a given type corresponding to internal mapping rules.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/sets/int.go

    }
    
    // Has returns true if and only if item is contained in the set.
    func (s Int) Has(item int) bool {
    	return cast(s).Has(item)
    }
    
    // HasAll returns true if and only if all items are contained in the set.
    func (s Int) HasAll(items ...int) bool {
    	return cast(s).HasAll(items...)
    }
    
    // HasAny returns true if any items are contained in the set.
    func (s Int) HasAny(items ...int) bool {
    	return cast(s).HasAny(items...)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/sets/byte.go

    }
    
    // Has returns true if and only if item is contained in the set.
    func (s Byte) Has(item byte) bool {
    	return cast(s).Has(item)
    }
    
    // HasAll returns true if and only if all items are contained in the set.
    func (s Byte) HasAll(items ...byte) bool {
    	return cast(s).HasAll(items...)
    }
    
    // HasAny returns true if any items are contained in the set.
    func (s Byte) HasAny(items ...byte) bool {
    	return cast(s).HasAny(items...)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/sets/int64.go

    }
    
    // Has returns true if and only if item is contained in the set.
    func (s Int64) Has(item int64) bool {
    	return cast(s).Has(item)
    }
    
    // HasAll returns true if and only if all items are contained in the set.
    func (s Int64) HasAll(items ...int64) bool {
    	return cast(s).HasAll(items...)
    }
    
    // HasAny returns true if any items are contained in the set.
    func (s Int64) HasAny(items ...int64) bool {
    	return cast(s).HasAny(items...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    }
    
    // Has returns true if and only if item is contained in the set.
    func (s String) Has(item string) bool {
    	return cast(s).Has(item)
    }
    
    // HasAll returns true if and only if all items are contained in the set.
    func (s String) HasAll(items ...string) bool {
    	return cast(s).HasAll(items...)
    }
    
    // HasAny returns true if any items are contained in the set.
    func (s String) HasAny(items ...string) bool {
    	return cast(s).HasAny(items...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/int32.go

    }
    
    // Has returns true if and only if item is contained in the set.
    func (s Int32) Has(item int32) bool {
    	return cast(s).Has(item)
    }
    
    // HasAll returns true if and only if all items are contained in the set.
    func (s Int32) HasAll(items ...int32) bool {
    	return cast(s).HasAll(items...)
    }
    
    // HasAny returns true if any items are contained in the set.
    func (s Int32) HasAny(items ...int32) bool {
    	return cast(s).HasAny(items...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/a.out.go

    	ANop
    	ABlock
    	ALoop
    	AIf
    	AElse
    
    	AEnd // opcode 0x0B
    	ABr
    	ABrIf
    	ABrTable
    	// ACall and AReturn are WebAssembly instructions. obj.ACALL and obj.ARET are higher level instructions
    	// with Go semantics, e.g. they manipulate the Go stack on the linear memory.
    	AReturn
    	ACall
    	ACallIndirect
    
    	ADrop // opcode 0x1A
    	ASelect
    
    	ALocalGet // opcode 0x20
    	ALocalSet
    	ALocalTee
    	AGlobalGet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top