Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for Equals (0.08 sec)

  1. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/java/source/JavaElementPsiSourceWithSmartPointer.kt

    ) : JavaElementPsiSource<PSI>() {
    
        // is used only for the purposes of equals/hashCode to avoid underlying PCE
        private val originalPsi: PSI = psi
    
        override val psi: PSI
            get() {
                return pointer.element
                    ?: error("Cannot restore a PsiElement from $pointer")
            }
    
        override fun equals(other: Any?): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 22 14:14:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtPredicates.kt

        override fun hashCode(): Int = Objects.hashCode(backingArgument, backingType, backingIsNegated)
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractIsInstancePredicateExpression &&
                    other.backingArgument == backingArgument &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationFromMemberScope/subsitutionOverride.txt

      S from /Y.foo1
      t: Int from /Y.foo1
    
    fun <Q> foo2(t: Int) fromClass Y
      Q from /Y.foo2
      t: Int from /Y.foo2
    
    fun <U> foo3() fromClass X
      U from /X.foo3
    
    fun equals(other: Any?): Boolean fromClass kotlin/Any
      other: Any? from kotlin/Any.equals
    
    fun hashCode(): Int fromClass kotlin/Any
    
    fun toString(): String fromClass kotlin/Any
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Nov 22 17:25:30 UTC 2022
    - 400 bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtEffects.kt

        override fun hashCode(): Int = Objects.hashCode(backingValueParameterReference, backingOccurrencesRange)
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractCallsInPlaceContractEffectDeclaration &&
                    other.backingValueParameterReference == backingValueParameterReference &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationFromMemberScope/intersectionOverride.txt

    fun <T> foo() fromClass Y
      T from /Y.foo
    
    fun equals(other: Any?): Boolean fromClass kotlin/Any
      other: Any? from kotlin/Any.equals
    
    fun hashCode(): Int fromClass kotlin/Any
    
    fun toString(): String fromClass kotlin/Any
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Nov 22 17:25:30 UTC 2022
    - 247 bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10VariableLikeSignature.kt

            KaFe10VariableLikeSignature(
                symbol,
                substitutor.substitute(returnType),
                receiverType?.let { substitutor.substitute(it) },
            )
        }
    
        override fun equals(other: Any?): Boolean {
            if (this === other) return true
            if (javaClass != other?.javaClass) return false
    
            other as KaFe10VariableLikeSignature<*>
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/KtFe10PackageSymbol.kt

                } else {
                    KaSymbolOrigin.LIBRARY
                }
            }
    
        override fun hashCode(): Int {
            return packageName.hashCode()
        }
    
        override fun equals(other: Any?): Boolean {
            return packageName == (other as? KaFe10PackageSymbol)?.fqName
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirTypeParameterType.kt

        override val abbreviatedType: KaUsualClassType?
            get() = withValidityAssertion { null }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString(): String = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10ReceiverParameterSymbol.kt

            KaPsiBasedSymbolPointer.createForSymbolFromSource<KaReceiverParameterSymbol>(this) ?: KaFe10NeverRestoringSymbolPointer()
        }
    
        override fun equals(other: Any?): Boolean = isEqualTo(other)
        override fun hashCode(): Int = calculateHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

         *
         * @see KaSubstitutor.substitute
         */
        public abstract fun substitute(substitutor: KaSubstitutor): KaCallableSignature<S>
    
        abstract override fun equals(other: Any?): Boolean
        abstract override fun hashCode(): Int
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top