Searched refs:children (Results 276 - 300 of 348) sorted by relevance

<<11121314

/freebsd-current/share/examples/drivers/
H A Dmake_device_driver.sh301 * In the 'dumb' case we end up with more children than needed but
316 * file get added as children for probing, whether or not the
/freebsd-current/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp88 // A RecursiveASTVisitor that traverses all children or all descendants of
95 // Creates an AST visitor that matches 'matcher' on all children or
97 // to traverse: use 1 for matching the children and INT_MAX for
522 for (auto *SubStmt : RF->children()) {
537 for (auto *SubStmt : RBO->children()) {
595 // Matches children or descendants of 'Node' with 'BaseMatcher'.
630 // Matches children or descendants of 'Node' with 'BaseMatcher'.
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DInlineSpiller.cpp1471 for (MachineDomTreeNode *Child : Node->children()) {
1523 // children have already been visited and the spill locations in the
1524 // subtrees of all the children have been determined.
1539 for (MachineDomTreeNode *Child : (*RIt)->children()) {
/freebsd-current/contrib/bmake/
H A Djob.c88 * children. This must be called reasonably
94 * Print any output our children have produced.
445 * the output channels of children
643 * Defer sending SIGCONT to our stopped children until we return
712 * Since we defer passing the SIGCONT on to our children until
1358 if ((gn->type & OP_LIB) && !Lst_IsEmpty(&gn->children))
2008 * The job descriptor is removed from the list of children.
2012 * caller, until there are no more children to report. For each
2091 * Catch the output from our children, if we're using pipes do so. Otherwise
2267 * There is a non-zero chance that we already have children
[all...]
/freebsd-current/sys/dev/bxe/
H A Dbxe.c15989 struct sysctl_oid_list *children; local
15997 children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev));
15999 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "version",
16015 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "mf_vnics",
16028 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "bc_version",
16031 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "fw_version",
16034 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "mf_mode",
16037 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "mac_addr",
16040 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "pci_link",
16043 SYSCTL_ADD_ULONG(ctx, children, OID_AUT
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp227 // Mark all children expressions live.
322 for (Stmt *Child : S->children()) {
/freebsd-current/sys/dev/re/
H A Dif_re.c3975 struct sysctl_oid_list *children; local
3979 children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->rl_dev));
3981 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "stats",
3987 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "int_rx_mod",
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp625 for (Stmt *SubStmt : S->children()) {
H A DSemaStmtAsm.cpp153 for (Stmt *Child : E->children()) {
/freebsd-current/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDependencyTracker.cpp17 /// we can show only broken links for DIEs with multiple children.
48 for (DWARFDie Child : reverse(Current.children())) {
453 // Set keep children property for parents.
466 // Return if we do not need to process children.
470 // Process children.
476 // a) Non removable children(like DW_TAG_formal_parameter) should always
479 // b) ODR deduplication candidates(type DIEs) children should not be put
537 // Recursively process children.
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp683 auto Children = BaseVal->getLoc().children();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonEarlyIfConv.cpp610 // Simply keep a list of children of B, and traverse that list.
612 DTNodeVectType Cn(llvm::children<MachineDomTreeNode *>(N));
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DChunks.h274 // and its children are treated as a group by the garbage collector.
307 // Single linked list iterator for associated comdat children.
328 llvm::iterator_range<AssociatedIterator> children() const { function in class:lld::coff::final
329 // Associated sections do not have children. The assocChildren field is
330 // part of the parent's list of children.
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnrollRuntime.cpp882 // NB! We have to examine the dom children of all loop blocks, not just
888 for (auto *DomChild : DomNodeBB->children()) {
H A DLoopPeel.cpp899 for (auto *ChildDomNode : BBDomNode->children()) {
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp221 ShowChildren("show-children",
222 desc("Show a debug info entry's children when selectively "
225 static alias ShowChildrenAlias("c", desc("Alias for --show-children."),
244 "children of debug info entries."),
327 // In -verify mode, print DIEs without children in error messages.
721 for (const auto &Child : Arch.children(Err)) {
847 // Unless dumping a specific DIE, default to --show-children.
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp262 for (auto *ChildDomNode : DT.getNode(Node)->children()) {
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp502 for (const auto &ArcC : Arc->children(Err)) {
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp542 for (auto &Child : Arc->children(Err)) {
/freebsd-current/sys/dev/ice/
H A Dice_type.h722 struct ice_sched_node **children; member in struct:ice_sched_node
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1724 // Perform a bottom up traversal of all children.
1725 for (Stmt *SubStmt : S->children())
1737 // Perform a bottom up traversal of all children.
1738 for (Stmt *SubStmt : S->children())
1747 // Perform a bottom up traversal of all children.
1748 for (Stmt *SubStmt : S->children())
1768 // Perform a bottom up traversal of all children.
1769 for (Stmt *SubStmt : S->children())
3647 for (Stmt *SubStmt : S->children())
3665 for (Stmt *SubStmt : S->children())
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp1362 LambdaExpr::child_range LambdaExpr::children() { function in class:LambdaExpr
1367 LambdaExpr::const_child_range LambdaExpr::children() const { function in class:LambdaExpr
H A DASTStructuralEquivalence.cpp44 // The `while` loop where we iterate over the children is implemented in
50 // the children nodes to the queue via `static bool
207 return true; // Semantics only depend on children.
211 // Number of children is actually checked by the generic children comparison
213 // children frequently differs and the number of statements is also always
214 // precomputed. Directly comparing the number of children here is thus
363 // Semantics only depend on children.
416 /// be of the same kind. The children of the statements and their properties
508 // Iterate over the children o
[all...]
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DDriver.cpp320 for (const object::Archive::Child &c : file->getArchive().children(e)) {
339 ": Archive::children failed: " + toString(std::move(e)));
350 for (const object::Archive::Child &c : file->getArchive().children(e)) {
360 ": Archive::children failed: " + toString(std::move(e)));
/freebsd-current/sys/net/
H A Dpfvar.h696 struct pf_keth_anchor_node children; member in struct:pf_keth_anchor
1318 struct pf_kanchor_node children; member in struct:pf_kanchor

Completed in 519 milliseconds

<<11121314