Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 353 for symbolz (0.12 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    )
    
    // Symbolizer implements the plugin.Symbolize interface.
    type Symbolizer struct {
    	Obj       plugin.ObjTool
    	UI        plugin.UI
    	Transport http.RoundTripper
    }
    
    // test taps for dependency injection
    var symbolzSymbolize = symbolz.Symbolize
    var localSymbolize = doLocalSymbolize
    var demangleFunction = Demangle
    
    // Symbolize attempts to symbolize profile p. First uses binutils on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/objfile.go

    // are the RelocIndex[i]-th (inclusive) to RelocIndex[i+1]-th (exclusive)
    // elements in the Relocs array. Aux/Data are likewise. (The index is
    // 0-based.)
    
    // Auxiliary symbols.
    //
    // Each symbol may (or may not) be associated with a number of auxiliary
    // symbols. They are described in the Aux block. See Aux struct below.
    // Currently a symbol's Gotype, FuncInfo, and associated DWARF symbols
    // are auxiliary symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/ldpe.go

    //
    // Background: DLL import symbols are data (SNOPTRDATA) symbols whose
    // name is of the form "__imp_XXX", which contain a pointer/reference
    // to symbol XXX. It's possible to have import symbols for both data
    // symbols ("__imp__fmode") and text symbols ("__imp_CreateEventA").
    // In some case import symbols are just references to some external
    // thing, and in other cases we see actual definitions of import
    // symbols when reading host objects.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

    import org.jetbrains.kotlin.analysis.api.scopes.KaTypeScope
    import org.jetbrains.kotlin.analysis.api.symbols.KaFileSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaPackageSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaSymbolWithMembers
    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.psi.KtElement
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

                analyseForTest(mainFile) {
                    val (symbols, symbolForPrettyRendering) = collectSymbols(mainFile, testServices)
    
                    checkContainingFiles(symbols, mainFile, testServices)
    
                    val pointerWithRenderedSymbol = symbols
                        .asSequence()
                        .flatMap { symbol ->
                            sequenceOf(symbol to true) + symbol.withImplicitSymbols().map { implicitSymbol ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. 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)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

            val platform = getContainingModule(symbol).platform
            if (!platform.has<JvmPlatform>()) return null
    
            val containingSymbolOrSelf = when (symbol) {
                is KaValueParameterSymbol -> {
                    getContainingDeclaration(symbol) as? KaFunctionLikeSymbol ?: symbol
                }
                is KaPropertyAccessorSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

        }
    
        override fun buildSelfClassType(symbol: KaNamedClassOrObjectSymbol): KaType {
            require(symbol is KaFirNamedClassOrObjectSymbol)
            symbol.firSymbol.lazyResolveToPhase(FirResolvePhase.SUPER_TYPES)
            val firClass = symbol.firSymbol.fir
            val type = ConeClassLikeTypeImpl(
                firClass.symbol.toLookupTag(),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

        }
    
        private inline fun <reified T : DeclarationDescriptor> getDescriptor(symbol: KaSymbol): T? {
            return when (symbol) {
                is KaFe10DescSymbol<*> -> symbol.descriptor as? T
                is KaFe10PsiSymbol<*, *> -> symbol.descriptor as? T
                else -> {
                    require(symbol is KaFe10Symbol) { "Unrecognized symbol implementation found" }
                    null
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/objfile.go

    	// This preserves the length of symbols, preventing the following two symbols
    	// from hashing the same:
    	//
    	//    [2]int{1,2} ≠ [10]int{1,2,0,0,0...}
    	//
    	// In this case, if the smaller symbol is alive, the larger is not kept unless
    	// needed.
    	binary.LittleEndian.PutUint64(tmp[:8], uint64(s.Size))
    	// Some symbols require being in separate sections.
    	tmp[8] = contentHashSection(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top