Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 770 for SYMBOL (0.12 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtModifierListRenderer.kt

                symbol: KaDeclarationSymbol,
                declarationModifiersRenderer: KaDeclarationModifiersRenderer,
            ): List<KtModifierKeywordToken> {
                return buildList {
                    if (symbol is KaSymbolWithVisibility) {
                        declarationModifiersRenderer.visibilityProvider.getVisibilityModifier(analysisSession, symbol)?.let(::add)
                    }
    
                    if (symbol is KaSymbolWithModality) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/nm/doc.go

    //
    // The default output prints one line per symbol, with three space-separated
    // fields giving the address (in hexadecimal), type (a character), and name of
    // the symbol. The types are:
    //
    //	T	text (code) segment symbol
    //	t	static text segment symbol
    //	R	read-only data segment symbol
    //	r	static read-only data segment symbol
    //	D	data segment symbol
    //	d	static data segment symbol
    //	B	bss segment symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/pseudo_test.go

    		{"TEXT", "", "expect two or three operands for TEXT"},
    		{"TEXT", "%", "expect two or three operands for TEXT"},
    		{"TEXT", "1, 1", "TEXT symbol \"<erroneous symbol>\" must be a symbol(SB)"},
    		{"TEXT", "$\"foo\", 0, $1", "TEXT symbol \"<erroneous symbol>\" must be a symbol(SB)"},
    		{"TEXT", "$0É:0, 0, $1", "expected end of operand, found É"}, // Issue #12467.
    		{"TEXT", "$:0:(SB, 0, $1", "expected '(', found 0"},          // Issue 12468.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeCreator.kt

                    classSymbol.toLookupTag()
                }
                is KaClassTypeBuilder.BySymbol -> {
                    val symbol = builder.symbol
                    check(symbol is KaFirSymbol<*>)
                    (symbol.firSymbol as FirClassLikeSymbol<*>).toLookupTag()
                }
            }
    
            val typeContext = rootModuleSession.typeContext
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractMemberScopeTests.kt

    }
    
    abstract class AbstractCombinedDeclaredMemberScopeTest : AbstractMemberScopeTestBase() {
        override fun KaSession.getScope(symbol: KaSymbolWithMembers): KaScope = symbol.getCombinedDeclaredMemberScope()
    }
    
    abstract class AbstractDelegateMemberScopeTest : AbstractMemberScopeTestBase() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererVisibilityModifierProvider.kt

            }
        }
    
        public object NO_IMPLICIT_VISIBILITY : KaRendererVisibilityModifierProvider {
            override fun getVisibilityModifier(
                analysisSession: KaSession,
                symbol: KaSymbolWithVisibility,
            ): KtModifierKeywordToken? {
                with(analysisSession) {
                    when (symbol) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/classifiers/KtSingleTypeParameterSymbolRenderer.kt

                        { declarationRenderer.modifiersRenderer.renderDeclarationModifiers(analysisSession, symbol, printer) },
                        { declarationRenderer.nameRenderer.renderName(analysisSession, symbol,declarationRenderer, printer) },
                        {
                            if (symbol.upperBounds.isNotEmpty()) {
                                withPrefix(": ") {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtJavaFieldSymbolRenderer.kt

                printer {
                    val mutabilityKeyword = if (symbol.isVal) KtTokens.VAL_KEYWORD else KtTokens.VAR_KEYWORD
                    declarationRenderer.callableSignatureRenderer
                        .renderCallableSignature(session, symbol, mutabilityKeyword, declarationRenderer, printer)
    
                    declarationRenderer.variableInitializerRenderer.renderInitializer(session, symbol, printer)
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtLocalVariableSymbolRenderer.kt

            ) {
                val mutabilityKeyword = if (symbol.isVal) KtTokens.VAL_KEYWORD else KtTokens.VAR_KEYWORD
                declarationRenderer.callableSignatureRenderer
                    .renderCallableSignature(analysisSession, symbol, mutabilityKeyword, declarationRenderer, printer)
    
                declarationRenderer.variableInitializerRenderer.renderInitializer(analysisSession, symbol, printer)
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. 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)
Back to top