Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 770 for SYMBOL (6.07 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtDeclarationRenderer.kt

                is KaAnonymousFunctionSymbol -> anonymousFunctionRenderer.renderSymbol(analysisSession, symbol, this, printer)
                is KaConstructorSymbol -> constructorRenderer.renderSymbol(analysisSession, symbol, this, printer)
                is KaFunctionSymbol -> functionSymbolRenderer.renderSymbol(analysisSession, symbol, this, printer)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/superTypes/KtSuperTypeListRenderer.kt

            ) {
                printer {
                    val superTypesToRender = symbol.superTypes
                        .filter { declarationRenderer.superTypesFilter.filter(analysisSession, it, symbol) }.ifEmpty { return }
    
                    printCollection(superTypesToRender) { type ->
                        declarationRenderer.superTypeRenderer.renderSuperType(analysisSession, type, symbol, declarationRenderer, printer)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                        // Rendering a containing symbol is prone to stack overflow.
                        // * function symbol will render its value parameter symbol(s)
                        //   whose containing symbol is that function symbol.
                        // * property symbol contains accessor symbol(s) and/or backing field symbol
                        //   whose containing symbol is that property symbol.
                        it.name == "getContainingSymbol"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtValueParameterSymbolRenderer.kt

        public fun renderSymbol(
            analysisSession: KaSession,
            symbol: KaValueParameterSymbol,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        )
    
        public object AS_SOURCE : KaValueParameterSymbolRenderer {
            override fun renderSymbol(
                analysisSession: KaSession,
                symbol: KaValueParameterSymbol,
                declarationRenderer: KaDeclarationRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

        override fun getContainingDeclaration(symbol: KaSymbol): KaDeclarationSymbol? {
            if (symbol is KaSymbolWithKind && symbol.symbolKind == KaSymbolKind.TOP_LEVEL) {
                return null
            }
    
            return when (symbol) {
                is KaBackingFieldSymbol -> symbol.owningProperty
                is KaPropertyAccessorSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/TestReferenceResolveResultRenderer.kt

                    }
                    else -> error("Unexpected symbol ${symbol::class}")
                }
                additionalInfo(symbol)?.let { append(" [$it]") }
            }
        }
    
        @Suppress("unused")// KaSession receiver
        private fun KaSession.symbolContainerFqName(symbol: KaSymbol): String? {
            if (symbol is KaPackageSymbol || symbol is KaValueParameterSymbol) return null
            val nonLocalFqName = when (symbol) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri May 31 19:52:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/AbstractKtSignatureSubstitutor.kt

            return asSignature(symbol).substitute(substitutor)
        }
    
        override fun <S : KaCallableSymbol> asSignature(symbol: S): KaCallableSignature<S> {
            return when (symbol) {
                is KaFunctionLikeSymbol -> asSignature(symbol)
                is KaVariableLikeSymbol -> asSignature(symbol)
                else -> unexpectedElementError("symbol", symbol)
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtPropertyAccessorsRenderer.kt

            override fun renderAccessors(
                analysisSession: KaSession,
                symbol: KaPropertySymbol,
                declarationRenderer: KaDeclarationRenderer,
                printer: PrettyPrinter,
            ): Unit = printer {
                val toRender = listOfNotNull(symbol.getter, symbol.setter)
                    .filter { !it.isDefault || it.annotations.isNotEmpty() }
                    .ifEmpty { return }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/internal/xcoff/xcoff.go

    	SSUBTYP_DWMAC   = 0xB0000 // DWARF macros section
    )
    
    // Symbol Table Entry.
    type SymEnt32 struct {
    	Nname   [8]byte // Symbol name
    	Nvalue  uint32  // Symbol value
    	Nscnum  uint16  // Section number of symbol
    	Ntype   uint16  // Basic and derived type specification
    	Nsclass uint8   // Storage class of symbol
    	Nnumaux uint8   // Number of auxiliary entries
    }
    
    type SymEnt64 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/compress/bzip2/move_to_front.go

    // by starting with an initial list of symbols and references symbols by their
    // index into that list. When a symbol is referenced, it's moved to the front
    // of the list. Thus, a repeated symbol ends up being encoded with many zeros,
    // as the symbol will be at the front of the list after the first access.
    type moveToFrontDecoder []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
Back to top