Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 770 for SYMBOL (4.12 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtPsiBasedSymbolPointer.kt

                return createForSymbolFromSource(symbol, S::class)
            }
    
            public fun <S : KaSymbol> createForSymbolFromSource(symbol: S, expectedClass: KClass<S>): KaPsiBasedSymbolPointer<S>? {
                ifDisabled { return null }
    
                if (symbol.origin != KaSymbolOrigin.SOURCE) return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

    def TFL_AFAttr : TFL_AnyStrAttrOf<[
          TFL_AFEnum_None.symbol,  TFL_AFEnum_Relu.symbol, TFL_AFEnum_Relu1.symbol,
          TFL_AFEnum_Relu6.symbol, TFL_AFEnum_Tanh.symbol, TFL_AFEnum_Sign.symbol
        ]>;
    
    // Predefined constant attributes of activation function
    def TFL_AF_None  : ConstantStrAttr<TFL_AFAttr, TFL_AFEnum_None.symbol>;
    def TFL_AF_Relu  : ConstantStrAttr<TFL_AFAttr, TFL_AFEnum_Relu.symbol>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtTypeParametersRenderer.kt

                analysisSession: KaSession,
                symbol: KaDeclarationSymbol,
                declarationRenderer: KaDeclarationRenderer,
                printer: PrettyPrinter,
            ) {
                val typeParameters = symbol.typeParameters
                    .filter { declarationRenderer.typeParametersFilter.filter(analysisSession, it, symbol) }
                    .ifEmpty { return }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/debug/elf/symbols_test.go

    	"testdata/gcc-amd64-linux-exec": {
    		Symbol{
    			Name:    "",
    			Info:    0x3,
    			Other:   0x0,
    			Section: 0x1,
    			Value:   0x400200,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "",
    			Info:    0x3,
    			Other:   0x0,
    			Section: 0x2,
    			Value:   0x40021C,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "",
    			Info:    0x3,
    			Other:   0x0,
    			Section: 0x3,
    			Value:   0x400240,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 05 18:18:26 UTC 2019
    - 13.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtCallableSignatureRenderer.kt

                        } else {
                            renderAnnotationsModifiersAndContextReceivers(analysisSession, symbol, declarationRenderer, printer)
                        }
                    },
                    { declarationRenderer.typeParametersRenderer.renderTypeParameters(analysisSession, symbol, declarationRenderer, printer) },
                    {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtClassifierBodyRenderer.kt

            symbol: KaSymbolWithMembers,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        ) {
            val members = declarationRenderer.bodyMemberScopeProvider.getMemberScope(analysisSession, symbol)
                .filter { it !is KaConstructorSymbol || !it.isPrimary }
                .let { declarationRenderer.bodyMemberScopeSorter.sortMembers(analysisSession, it, symbol) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtDestructuringDeclarationRenderer.kt

        public fun renderSymbol(
            analysisSession: KaSession,
            symbol: KaDestructuringDeclarationSymbol,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        )
    
        public object WITH_ENTRIES : KaDestructuringDeclarationRenderer {
            override fun renderSymbol(
                analysisSession: KaSession,
                symbol: KaDestructuringDeclarationSymbol,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolDeclarationOverridesProvider.kt

        ) = when (declaration) {
            is FirSimpleFunction -> processOverriddenFunctions(declaration.symbol) { symbol ->
                processor.invoke(symbol.fir)
                ProcessorAction.NEXT
            }
            is FirProperty -> processOverriddenProperties(declaration.symbol) { symbol ->
                processor.invoke(symbol.fir)
                ProcessorAction.NEXT
            }
            else -> ProcessorAction.STOP
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    		// ABI wrapper usually wraps an assembly symbol, a linknamed symbol,
    		// or an external symbol, or provide access of a Go symbol to assembly.
    		// For now, allow ABI wrappers.
    		// TODO: check the wrapped symbol?
    		return
    	}
    	error()
    }
    
    // TopLevelSym tests a symbol (by name and kind) to determine whether
    // the symbol first class sym (participating in the link) or is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtRendererBodyMemberScopeProvider.kt

        public fun getMemberScope(analysisSession: KaSession, symbol: KaSymbolWithMembers): List<KaDeclarationSymbol>
    
        public object ALL : KaRendererBodyMemberScopeProvider {
            override fun getMemberScope(analysisSession: KaSession, symbol: KaSymbolWithMembers): List<KaDeclarationSymbol> {
                with(analysisSession) {
                    return symbol.getCombinedDeclaredMemberScope().getAllSymbols().toList()
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top