Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for Postorder (0.12 sec)

  1. src/cmd/compile/internal/ssa/dom.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    // This file contains code to compute the dominator tree
    // of a control-flow graph.
    
    // postorder computes a postorder traversal ordering for the
    // basic blocks in f. Unreachable blocks will not appear.
    func postorder(f *Func) []*Block {
    	return postorderWithNumbering(f, nil)
    }
    
    type blockAndIndex struct {
    	b     *Block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    //  1 type filtering
    //  2 pruning
    //  3 postorder calls to f
    //  4 stack
    // Rather than offer all of them in the API,
    // only a few combinations are exposed:
    // - Preorder is the fastest and has fewest features,
    //   but is the most commonly needed traversal.
    // - Nodes and WithStack both provide pruning and postorder calls,
    //   even though few clients need it, because supporting two versions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/TreeTraverser.java

     *
     * <pre>{@code
     *        h
     *      / | \
     *     /  e  \
     *    d       g
     *   /|\      |
     *  / | \     f
     * a  b  c
     * }</pre>
     *
     * <p>can be iterated over in preorder (hdabcegf), postorder (abcdefgh), or breadth-first order
     * (hdegabcf).
     *
     * <p>Null nodes are strictly forbidden.
     *
     * <p>Because this is an abstract class, not an interface, you can't use a lambda expression to
     * implement it:
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/flagalloc.go

    	// each block. This is basically a best-effort live variable
    	// analysis, so it can be much simpler than a full analysis.
    	end := f.Cache.allocValueSlice(f.NumBlocks())
    	defer f.Cache.freeValueSlice(end)
    	po := f.postorder()
    	for n := 0; n < 2; n++ {
    		for _, b := range po {
    			// Walk values backwards to figure out what flag
    			// value we want in the flag register at the start
    			// of the block.
    			var flag *Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/numberlines.go

    // -d=ssa/number_lines/stats=1 (that bit) for line and file distribution statistics
    // -d=ssa/number_lines/debug for information about why particular values are marked as statements.
    func numberLines(f *Func) {
    	po := f.Postorder()
    	endlines := make(map[ID]src.XPos)
    	ranges := make(map[int]lineRange)
    	note := func(p src.XPos) {
    		line := uint32(p.Line())
    		i := int(p.FileIndex())
    		lp, found := ranges[i]
    		change := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TreeTraverser.java

     *
     * <pre>{@code
     *        h
     *      / | \
     *     /  e  \
     *    d       g
     *   /|\      |
     *  / | \     f
     * a  b  c
     * }</pre>
     *
     * <p>can be iterated over in preorder (hdabcegf), postorder (abcdefgh), or breadth-first order
     * (hdegabcf).
     *
     * <p>Null nodes are strictly forbidden.
     *
     * <p>Because this is an abstract class, not an interface, you can't use a lambda expression to
     * implement it:
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsBoostDocumentRule.java

            this.createdTime = value;
        }
    
        public Integer getSortOrder() {
            checkSpecifiedProperty("sortOrder");
            return sortOrder;
        }
    
        public void setSortOrder(Integer value) {
            registerModifiedProperty("sortOrder");
            this.sortOrder = value;
        }
    
        public String getUpdatedBy() {
            checkSpecifiedProperty("updatedBy");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsRoleType.java

            this.name = value;
        }
    
        public Integer getSortOrder() {
            checkSpecifiedProperty("sortOrder");
            return sortOrder;
        }
    
        public void setSortOrder(Integer value) {
            registerModifiedProperty("sortOrder");
            this.sortOrder = value;
        }
    
        public String getUpdatedBy() {
            checkSpecifiedProperty("updatedBy");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsPathMapping.java

            this.replacement = value;
        }
    
        public Integer getSortOrder() {
            checkSpecifiedProperty("sortOrder");
            return sortOrder;
        }
    
        public void setSortOrder(Integer value) {
            registerModifiedProperty("sortOrder");
            this.sortOrder = value;
        }
    
        public String getUpdatedBy() {
            checkSpecifiedProperty("updatedBy");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSelectionSpec.java

        private final boolean allowNoMatchingVariants;
        private final ResolutionStrategy.SortOrder sortOrder;
    
        public ArtifactSelectionSpec(
            ImmutableAttributes requestAttributes,
            Spec<? super ComponentIdentifier> componentFilter,
            boolean selectFromAllVariants,
            boolean allowNoMatchingVariants,
            ResolutionStrategy.SortOrder sortOrder
        ) {
            this.requestAttributes = requestAttributes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top