Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 210 for children (0.64 sec)

  1. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

        idx++;
    
        if (c != '?' && c != ',') {
          while (idx < encodedLen) {
            // Read all the children
            idx += doParseTrieToBuilder(stack, encoded, idx, builder);
    
            if (encoded.charAt(idx) == '?' || encoded.charAt(idx) == ',') {
              // An extra '?' or ',' after a child node indicates the end of all children of this node.
              idx++;
              break;
            }
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

        for (kid in kidsArray) {
            if (kid == null) break
            kid.print(indent)
            print(kid, "\t$indent")
        }
    }
    
    
    internal
    fun FlyweightCapableTreeStructure<LighterASTNode>.children(
        node: LighterASTNode
    ): List<LighterASTNode> {
        val ref = Ref<Array<LighterASTNode?>>()
        getChildren(node, ref)
        return ref.get()
            .filterNotNull()
            .filter { it.isUseful }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLeafSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot;
    
    /**
     * The snapshot of a leaf element in the file system that can have no children of its own.
     */
    public interface FileSystemLeafSnapshot extends FileSystemLocationSnapshot {
        @Override
        default SnapshotVisitResult accept(FileSystemSnapshotHierarchyVisitor visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

        idx++;
    
        if (c != '?' && c != ',') {
          while (idx < encodedLen) {
            // Read all the children
            idx += doParseTrieToBuilder(stack, encoded, idx, builder);
    
            if (encoded.charAt(idx) == '?' || encoded.charAt(idx) == ',') {
              // An extra '?' or ',' after a child node indicates the end of all children of this node.
              idx++;
              break;
            }
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/lca.go

    	sibling    ID    // next child of parent
    	pos        int32 // an index in the Euler tour where this block appears (any one of its occurrences)
    	depth      int32 // depth in dominator tree (root=0, its children=1, etc.)
    }
    
    func makeLCArange(f *Func) *lcaRange {
    	dom := f.Idom()
    
    	// Build tree
    	blocks := make([]lcaRangeBlock, f.NumBlocks())
    	for _, b := range f.Blocks {
    		blocks[b.ID].b = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/walk.go

    package syntax
    
    import "fmt"
    
    // Inspect traverses an AST in pre-order: it starts by calling f(root);
    // root must not be nil. If f returns true, Inspect invokes f recursively
    // for each of the non-nil children of root, followed by a call of f(nil).
    //
    // See Walk for caveats about shared nodes.
    func Inspect(root Node, f func(Node) bool) {
    	Walk(root, inspector(f))
    }
    
    type inspector func(Node) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/dwarf.go

    			}
    		}
    
    		putattr(ctxt, s, abbrev, int(f.form), 0, 0, nil)
    	}
    }
    
    // HasChildren reports whether 'die' uses an abbrev that supports children.
    func HasChildren(die *DWDie) bool {
    	abbrevs := Abbrevs()
    	return abbrevs[die.Abbrev].children != 0
    }
    
    // PutIntConst writes a DIE for an integer constant
    func PutIntConst(ctxt Context, info, typ Sym, name string, val int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/stackcheck.go

    			return false, 0
    		}
    		delete(nodes, sym)
    
    		if origin == sym {
    			// We found an unrooted cycle. We already
    			// deleted all children of this node. Walk
    			// back up, tracking the lowest numbered
    			// symbol in this cycle.
    			return true, sym
    		}
    
    		// Delete children of this node.
    		for _, out := range sc.graph[sym] {
    			if c, l := walk(origin, out.target); c {
    				cycle = true
    				if lowest == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    			}
    		}
    		i++
    	}
    }
    
    // Nodes visits the nodes of the files supplied to New in depth-first
    // order. It calls f(n, true) for each node n before it visits n's
    // children. If f returns true, Nodes invokes f recursively for each
    // of the non-nil children of the node, followed by a call of
    // f(n, false).
    //
    // The complete traversal sequence is determined by ast.Inspect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/reporting-plugin-config/sub/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-configuration</artifactId>
            <version>2.1-SNAPSHOT</version>
            <configuration>
              <stringParams combine.children="append">
                <stringParam>  childParam  </stringParam>
                <stringParam xml:space="preserve">  preserve space  </stringParam>
              </stringParams>
            </configuration>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top