Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 770 for SYMBOL (0.08 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtFunctionSymbolRenderer.kt

                    .renderCallableSignature(analysisSession, symbol, KtTokens.FUN_KEYWORD, declarationRenderer, printer)
    
                declarationRenderer.functionLikeBodyRenderer.renderBody(analysisSession, symbol, printer)
            }
        }
    
        public object AS_RAW_SIGNATURE : KaFunctionSymbolRenderer {
            override fun renderSymbol(
                analysisSession: KaSession,
                symbol: KaFunctionSymbol,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

            token(LBRACKET) * oneOrMore(unescapedAnnotation) * token(RBRACKET)
        }
    
        val annotationUseSiteTarget by debug {
            (symbol("field") + symbol("property") + symbol("get") + symbol("set") +
                symbol("receiver") + symbol("param") + symbol("setparam") + symbol("delgate")) * token(COLON)
        }
    
        val singleAnnotation by debug {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            } else {
                findParentSymbol(resolveResult.symbol, goBackSteps, selectedFqName)
            }
        }
    
        /**
         * Finds the parent symbol of the given [KaSymbol] by traversing back up the symbol hierarchy a certain number of steps,
         * or until the containing class or object symbol is found.
         *
         * @param symbol The [KaSymbol] whose parent symbol needs to be found.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirSimpleNameReference.kt

            referenceTargetSymbols.flatMap { symbol ->
                when (symbol) {
                    is KaFirSyntheticJavaPropertySymbol ->
                        if (isRead) {
                            listOfNotNull(symbol.javaGetterSymbol.psi)
                        } else {
                            if (symbol.javaSetterSymbol == null) listOfNotNull(symbol.javaGetterSymbol.psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/classifiers/KtNamedClassOrObjectSymbolRenderer.kt

            override fun renderSymbol(
                analysisSession: KaSession,
                symbol: KaNamedClassOrObjectSymbol,
                declarationRenderer: KaDeclarationRenderer,
                printer: PrettyPrinter,
            ) {
                printer {
                    val keywords = when (symbol.classKind) {
                        KaClassKind.CLASS -> listOf(KtTokens.CLASS_KEYWORD)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtConstructorSymbolRenderer.kt

                    .renderCallableSignature(analysisSession, symbol, KtTokens.CONSTRUCTOR_KEYWORD, declarationRenderer, printer)
    
                declarationRenderer.functionLikeBodyRenderer.renderBody(analysisSession, symbol, printer)
            }
        }
    
        public object AS_RAW_SIGNATURE : KaConstructorSymbolRenderer {
            override fun renderSymbol(
                analysisSession: KaSession,
                symbol: KaConstructorSymbol,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_nm.go

    	// Lowercase letter means local symbol, uppercase denotes a global symbol.
    	// - b or B: the symbol is in the uninitialized data section, e.g. .bss;
    	// - d or D: the symbol is in the initialized data section;
    	// - r or R: the symbol is in a read only data section;
    	// - v or V: the symbol is a weak object;
    	// - W: the symbol is a weak symbol that has not been specifically tagged as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/symbolTestUtils.kt

    internal fun KaSession.checkContainingFileSymbol(
        ktFileSymbol: KaFileSymbol,
        symbol: KaSymbol,
        testServices: TestServices
    ) {
        if (symbol.origin != KaSymbolOrigin.SOURCE) return
        val containingFileSymbol = symbol.getContainingFileSymbol()
        testServices.assertions.assertEquals(ktFileSymbol, containingFileSymbol) {
            "Invalid file for $symbol, expected $ktFileSymbol but $containingFileSymbol found"
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolDeclarationOverridesProvider/AbstractOverriddenDeclarationProviderTest.kt

        }
    
        private fun KaSession.renderSignature(symbol: KaCallableSymbol): String = buildString {
            append(renderDeclarationQualifiedName(symbol))
            if (symbol is KaFunctionSymbol) {
                append("(")
                symbol.valueParameters.forEachIndexed { index, parameter ->
                    append(parameter.name.identifier)
                    append(": ")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

        is KaCompoundVariableAccessCall -> listOfNotNull(symbol, compoundAccess.operationPartiallyAppliedSymbol.symbol)
        is KaCompoundArrayAccessCall -> listOfNotNull(
            getPartiallyAppliedSymbol.symbol,
            setPartiallyAppliedSymbol.symbol,
            compoundAccess.operationPartiallyAppliedSymbol.symbol,
        )
    
        is KaCallableMemberCall<*, *> -> listOf(symbol)
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top