Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 98 for intree (0.25 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.txt

        public final inner class kotlin/jvm/internal/Ref$IntRef
    }
    
    public final class ContextKt
    
    public final class Foo {
        // source: 'context.kt'
        public method <init>(): void
        private final static method test$call(p0: Foo, p1: java.lang.String, p2: kotlin.jvm.internal.Ref$IntRef, p3: int): void
        public final method test(p0: java.lang.String): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 626 bytes
    - Viewed (0)
  2. src/runtime/symtabinl.go

    	inldata := funcdata(f, abi.FUNCDATA_InlTree)
    	if inldata == nil {
    		return inlineUnwinder{f: f}, inlineFrame{pc: pc, index: -1}
    	}
    	inlTree := (*[1 << 20]inlinedCall)(inldata)
    	u := inlineUnwinder{f: f, inlTree: inlTree}
    	return u, u.resolveInternal(pc)
    }
    
    func (u *inlineUnwinder) resolveInternal(pc uintptr) inlineFrame {
    	return inlineFrame{
    		pc: pc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localMutated.txt

    public final class CodeFragment {
        // source: 'fragment.kt'
        public method <init>(): void
        public final static method generated_for_debugger_fun(p0: kotlin.jvm.internal.Ref$IntRef): void
        public final inner class kotlin/jvm/internal/Ref$IntRef
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 258 bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/funcinfo.go

    	for _, f := range a.File {
    		writeUint32(uint32(f))
    	}
    	writeUint32(uint32(len(a.InlTree)))
    	for i := range a.InlTree {
    		a.InlTree[i].Write(w)
    	}
    }
    
    // FuncInfoLengths is a cache containing a roadmap of offsets and
    // lengths for things within a serialized FuncInfo. Each length field
    // stores the number of items (e.g. files, inltree nodes, etc), and the
    // corresponding "off" field stores the byte offset of the start of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosureMutating.txt

    public final class CodeFragment {
        // source: 'fragment.kt'
        public method <init>(): void
        public final static method run(p0: kotlin.jvm.internal.Ref$IntRef): void
        public final inner class kotlin/jvm/internal/Ref$IntRef
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 265 bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreatorTest.groovy

        }
    
        private List<SourceFolder> externalSourceFolders(String... paths) {
            javaTree = dirTree("src", [], [])
            resourcesTree = dirTree("resources", [], [])
    
            def allExtTrees = paths.collect { path -> dirTree(path, [], []) }
    
            _ * java.srcDirs >> allExtTrees.collect { it.dir } + javaTree.dir
            _ * java.srcDirTrees >> allExtTrees + javaTree
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/intro/tests/intro.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 24 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// children in the resulting table.
    	parCallIdx := -1
    	parInlIdx := base.Ctxt.InlTree.Parent(inlIdx)
    	if parInlIdx >= 0 {
    		parCallIdx = insertInlCall(dwcalls, parInlIdx, imap)
    	}
    
    	// Create new entry for this inline
    	inlinedFn := base.Ctxt.InlTree.InlinedFunction(inlIdx)
    	callXPos := base.Ctxt.InlTree.CallPos(inlIdx)
    	callPos := base.Ctxt.InnermostPos(callXPos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/internal/poll/sockopt.go

    func (fd *FD) SetsockoptInt(level, name, arg int) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.SetsockoptInt(fd.Sysfd, level, name, arg)
    }
    
    // SetsockoptInet4Addr wraps the setsockopt network call with an IPv4 address.
    func (fd *FD) SetsockoptInet4Addr(level, name int, arg [4]byte) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:44:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/pcln.go

    // pcinlineState holds the state used to create a function's inlining
    // tree and the PC-value table that maps PCs to nodes in that tree.
    type pcinlineState struct {
    	globalToLocal map[int]int
    	localTree     InlTree
    }
    
    // addBranch adds a branch from the global inlining tree in ctxt to
    // the function's local inlining tree, returning the index in the local tree.
    func (s *pcinlineState) addBranch(ctxt *Link, globalIndex int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top