Searched refs:children (Results 226 - 250 of 317) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/expat/lib/
H A Dexpat.h141 and children point to an array of XML_Content cells that will be
145 the numchildren field will be zero and children will be NULL. The
148 CHOICE and SEQ will have name NULL, the number of children in
149 numchildren and children will point, recursively, to an array
162 XML_Content *children; member in struct:XML_cp
/freebsd-11-stable/usr.bin/gprof/
H A Dgprof.c371 for ( arcp = nlp -> children ; arcp ; arcp = arcp -> arc_childlist ) {
/freebsd-11-stable/usr.sbin/ypserv/
H A Dyp_main.c206 children--;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DADCE.cpp265 // Invoked after we have visited all children of a node.
296 // We do this by seeing which of the postdomtree root children exit the
298 for (auto &PDTChild : children<DomTreeNode *>(PDT.getRootNode())) {
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dcommit_util.c467 const apr_array_header_t *children;
473 /* A function to retrieve not present children would be nice to have */
474 SVN_ERR(svn_wc__node_get_not_present_children(&children, wc_ctx,
478 for (i = 0; i < children->nelts; i++)
480 const char *this_abspath = APR_ARRAY_IDX(children, i, const char *);
741 * We delete not-present children of copies
910 /* Make sure we check for dangling children on additions
1189 * children which is named as part of the commit; the child is
466 const apr_array_header_t *children; local
H A Dimport.c306 * children of DIR_ABSPATH. EXCLUDES is a hash of absolute paths to filter
314 get_filtered_children(apr_hash_t **children,
402 *children = dirents;
424 /* Import the children of DIR_ABSPATH, with other arguments similar to
569 /* Import this directory, but not yet its children. */
595 /* Now import the children recursively. */
643 * repository target and thus dictates which immediate children of that
313 get_filtered_children(apr_hash_t **children, const char *dir_abspath, apr_hash_t *excludes, apr_array_header_t *ignores, apr_array_header_t *global_ignores, svn_client_import_filter_func_t filter_callback, void *filter_baton, svn_client_ctx_t *ctx, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp183 for (const Archive::Child &Child : Ar.children(Err)) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h86 /// Whether or not this node has children.
89 /// are 0 and 1 for no children and children respectively.
718 /// Size of instance + children.
724 /// children even when it doesn't. This is used for unit testing purposes.
729 /// The owner is either the parent DIE for children of other DIEs, or a
760 child_range children() { function in class:llvm::DIE
763 const_child_range children() const { function in class:llvm::DIE
782 /// Compute the offset of this DIE and all its children.
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp127 for (Stmt *Child : S->children())
186 // Recurse and check children.
200 // Recurse and check children.
205 for (Stmt *Child : S->children())
216 // Recurse and check children.
H A DIvarInvalidationChecker.cpp166 for (const auto *Child : S->children()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp220 for (Stmt *CS : If->children()) {
385 for (const Stmt *Child : S->children())
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTree.h123 "Not in immediate dominator children set!");
504 /// CFG about its children and inverse children. This implies that deletions
562 /// into the children list of the immediate dominator.
619 /// children list. Deletes dominator node associated with basic block BB.
627 // Remove node from immediate dominator's children list.
632 "Not in immediate dominator children set!");
709 // If we visited all of the children of this node, "recurse" back up the
781 for (auto Pred : children<Inverse<N>>(NewBB))
787 for (auto Pred : children<Invers
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp72 // Emit whether it has children DIEs.
265 for (const auto &Child : children())
294 // Let the children compute their offsets and abbreviation numbers.
299 for (auto &Child : children())
306 // Compute the byte size of this DIE and all of its children correctly. This
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Ddwarf_dump.c511 dwarf_get_CHILDREN_name(unsigned children, const char **s) argument
516 switch (children) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp415 ArrayRef<Stmt *> children; member in class:__anon297::reverse_children
422 iterator begin() const { return children.rbegin(); }
423 iterator end() const { return children.rend(); }
430 children = CE->getRawSubExprs();
437 children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()),
446 for (Stmt *SubStmt : S->children())
450 children = childrenBuf;
2346 /// VisitChildren - Visit the children of a Stmt.
2350 // Visit the children in their reverse order so that they appear in
3094 // Visit children
[all...]
H A DAnalysisDeclContext.cpp593 for (auto *Child : S->children())
/freebsd-11-stable/sys/dev/rl/
H A Dif_rl.c642 struct sysctl_oid_list *children; local
656 children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->rl_dev));
657 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "twister_enable", CTLFLAG_RD,
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/zfs/
H A Dzfs_ioctl_compat.c958 uint_t c, children, nelem; local
961 &child, &children) == 0) {
962 for (c = 0; c < children; c++) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp408 for (Stmt *SubStmt : Form->children()) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1821 for (auto &C : A->children(Err)) {
1892 for (auto &C : A->children(Err)) {
1963 for (auto &C : A->children(Err)) {
2028 for (auto &C : A->children(Err)) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp172 ShowChildren("show-children",
173 desc("Show a debug info entry's children when selectively "
176 static alias ShowChildrenAlias("c", desc("Alias for -show-children."),
194 "children of debug info entries."),
247 // In -verify mode, print DIEs without children in error messages.
472 for (auto Child : Arch.children(Err)) {
617 // Unless dumping a specific DIE, default to --show-children.
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DChunks.h231 // and its children are treated as a group by the garbage collector.
264 // Single linked list iterator for associated comdat children.
284 llvm::iterator_range<AssociatedIterator> children() const { function in class:lld::coff::final
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dsound.c238 CHN_EMPTY(c, children) ||
243 CHN_FOREACH_SAFE(ch, c, nch, children) {
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_ntoskrnl.c2666 device_t *children = NULL; local
2703 * If this device has children, do another
2707 device_get_children(dev, &children, &childcnt);
2710 matching_dev = ntoskrnl_finddev(children[i], paddr, res);
2712 free(children, M_TEMP);
2718 /* Won't somebody please think of the children! */
2720 if (children != NULL)
2721 free(children, M_TEMP);
/freebsd-11-stable/sys/dev/bxe/
H A Dbxe.c16074 struct sysctl_oid_list *children; local
16082 children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev));
16084 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "version",
16100 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "mf_vnics",
16114 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "bc_version",
16117 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "fw_version",
16120 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "mf_mode",
16123 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "mac_addr",
16126 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "pci_link",
16129 SYSCTL_ADD_ULONG(ctx, children, OID_AUT
[all...]

Completed in 693 milliseconds

1234567891011>>