Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,337 for symbolz (0.17 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolDeclarationOverridesProvider/AbstractOverriddenDeclarationProviderTest.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaClassLikeSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaFunctionSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaNamedSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/pe.go

    }
    
    func (f *peFile) symbols() ([]Sym, error) {
    	// Build sorted list of addresses of all symbols.
    	// We infer the size of a symbol by looking at where the next symbol begins.
    	var addrs []uint64
    
    	imageBase, _ := f.imageBase()
    
    	var syms []Sym
    	for _, s := range f.pe.Symbols {
    		const (
    			N_UNDEF = 0  // An undefined (extern) symbol
    			N_ABS   = -1 // An absolute symbol (e_value is a constant, not an address)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/components/psiDeclarationProvider/PsiDeclarationProvidierTestUtils.kt

    // Mimic [psiForUast] in FIR UAST
    internal fun KaSession.psiForTest(symbol: KaSymbol, project: Project): PsiElement? {
        return when (symbol.origin) {
            KaSymbolOrigin.LIBRARY -> {
                findPsi(symbol, project) ?: symbol.psi
            }
            KaSymbolOrigin.SUBSTITUTION_OVERRIDE, KaSymbolOrigin.INTERSECTION_OVERRIDE -> {
                psiForTest((symbol as KaCallableSymbol).unwrapFakeOverrides, project)
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirReference.kt

            }
            return null
        }
    }
    
    internal fun KaSession.getPsiDeclarations(symbol: KaFirSymbol<*>): Collection<PsiElement> {
        val intersectionOverriddenSymbolsOrSingle = when {
            symbol.origin == KaSymbolOrigin.INTERSECTION_OVERRIDE && symbol is KaCallableSymbol -> symbol.getIntersectionOverriddenSymbols()
            else -> listOf(symbol)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolInfoProvider.kt

        public abstract fun getDeprecation(symbol: KaSymbol): DeprecationInfo?
        public abstract fun getDeprecation(symbol: KaSymbol, annotationUseSiteTarget: AnnotationUseSiteTarget?): DeprecationInfo?
        public abstract fun getGetterDeprecation(symbol: KaPropertySymbol): DeprecationInfo?
        public abstract fun getSetterDeprecation(symbol: KaPropertySymbol): DeprecationInfo?
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSignatureSubstitutor.kt

        public open fun <S : KaCallableSymbol> substitute(symbol: S, substitutor: KaSubstitutor): KaCallableSignature<S> = when (symbol) {
            is KaFunctionLikeSymbol -> substitute(symbol, substitutor)
            is KaVariableLikeSymbol -> substitute(symbol, substitutor)
            else -> unexpectedElementError("symbol", symbol)
        }
    
        public abstract fun <S : KaFunctionLikeSymbol> substitute(symbol: S, substitutor: KaSubstitutor): KaFunctionLikeSignature<S>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

        }
    
        override fun getGetterDeprecation(symbol: KaPropertySymbol): DeprecationInfo? {
            return getAccessorDeprecation(symbol, symbol.getter) { it.getter }
        }
    
        override fun getSetterDeprecation(symbol: KaPropertySymbol): DeprecationInfo? {
            return getAccessorDeprecation(symbol, symbol.setter) { it.setter }
        }
    
        override fun getJavaGetterName(symbol: KaPropertySymbol): Name {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirKDocReference.kt

        ): Collection<PsiElement> = with(analysisSession) {
            referenceTargetSymbols.flatMap { symbol ->
                when (symbol) {
                    is KaFirSyntheticJavaPropertySymbol -> listOfNotNull(symbol.javaGetterSymbol.psi, symbol.javaSetterSymbol?.psi)
                    is KaFirSymbol<*> -> getPsiDeclarations(symbol)
                    else -> listOfNotNull(symbol.psi)
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    	// symbol reference in the object file.
    	pkgIdx map[string]int32
    
    	defs         []*LSym // list of defined symbols in the current package
    	hashed64defs []*LSym // list of defined short (64-bit or less) hashed (content-addressable) symbols
    	hasheddefs   []*LSym // list of defined hashed (content-addressable) symbols
    	nonpkgdefs   []*LSym // list of defined non-package symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirOverrideInfoProvider.kt

            return memberFir.symbol.getImplementationStatus(
                SessionHolderImpl(
                    rootModuleSession,
                    analysisSession.getScopeSessionFor(analysisSession.useSiteSession),
                ),
                parentClassFir.symbol
            )
        }
    
        override fun getOriginalContainingClassForOverride(symbol: KaCallableSymbol): KaClassOrObjectSymbol? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top