Searched refs:Child (Results 76 - 100 of 195) sorted by relevance

12345678

/freebsd-13-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsfield.c439 ACPI_PARSE_OBJECT *Child; local
526 Child = Arg->Common.Value.Arg;
527 if (Child->Common.AmlOpcode == AML_INT_BYTELIST_OP)
529 Info->ResourceBuffer = Child->Named.Data;
530 Info->ResourceLength = (UINT16) Child->Named.Value.Integer;
537 Child->Common.Value.Name, ACPI_TYPE_ANY,
543 Child->Common.Value.Name, Status);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h316 const Node *Child; member in class:final
331 Quals(Quals_), Child(Child_) {}
333 template<typename Fn> void match(Fn F) const { F(Child, Quals); }
336 return Child->hasRHSComponent(S);
339 return Child->hasArray(S);
342 return Child->hasFunction(S);
346 Child->printLeft(S);
350 void printRight(OutputStream &S) const override { Child->printRight(S); }
400 Node *Child; member in class:ElaboratedTypeSpefType
403 : Node(KElaboratedTypeSpefType), Kind(Kind_), Child(Child
810 const Node *Child; member in class:final
1151 const Node *Child; member in class:final
1309 Node *Child; member in class:final
1326 Node *Child; member in struct:StdQualifiedName
1602 const Node *Child; member in class:PostfixExpr
1797 Node *Child; member in class:PrefixExpr
3658 Node *Child = getDerived().parseQualifiedType(); local
3874 Node *Child = getDerived().parseType(); local
4813 Node *Child = getDerived().parseExpr(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp229 for (NodeId Child : N.Children)
230 N.Height = std::max(N.Height, 1 + Tree.getNode(Child).Height);
286 for (NodeId Child : N.Children)
287 Traverse(Child);
300 for (NodeId Child : Tree.getNode(Ids[Expanded++]).Children)
301 Ids.push_back(Child);
310 for (NodeId Child : getNode(Id).Children)
311 PostorderTraverse(Child);
751 for (NodeId Child : Tree.getNode(Id).Children)
752 push(Child);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyTypeDumper.cpp168 while (auto Child = Children->getNext()) {
169 if (isTypeExcluded(Printer, *Child))
173 Child->dump(TD);
H A DPrettyCompilandDumper.cpp121 while (auto Child = ChildrenEnum->getNext())
122 Child->dump(*this);
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslrestype2s.c225 DataList = InitializerOp->Asl.Child;
322 BufferOp = InitializerOp->Asl.Child;
456 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
665 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
867 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
1026 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
1214 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
1420 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
1606 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
1806 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
[all...]
H A Dasldefine.h197 #define ASL_GET_CHILD_NODE(a) (a)->Asl.Child
289 " Parent Child Next Flags AcTyp Final Col"\
H A Daslprepkg.c239 Op = ParentOp->Asl.Child;
435 ParentOp->Asl.Child, AslGbl_MsgBuffer);
543 Op = ParentOp->Asl.Child;
711 Op = SubPackageOp->Asl.Child;
H A Ddtutils.c833 if (ChildTable->Child)
911 if (ChildTable->Child)
H A Daslerror.c641 ASL_ERROR_MSG *Child = Enode->SubError; local
722 while (Child)
725 AePrintSubError (OutputFile, Child);
726 Child = Child->SubError;
H A Daslrestype2e.c193 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
366 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
547 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1392 const TreePatternNode *Child = P->getChild(i); local
1393 if (!Child->isLeaf() && Child->getNumTypes()) {
1394 const TypeSetByHwMode &T0 = Child->getExtType(0);
1398 Size += getPatternSize(Child, CGP);
1402 if (Child->isLeaf()) {
1403 if (isa<IntInit>(Child->getLeafValue()))
1405 else if (Child->getComplexPatternInfo(CGP))
1406 Size += getPatternSize(Child, CGP);
1407 else if (isImmAllOnesAllZerosMatch(Child))
1958 TreePatternNode *Child = getChild(i); local
2007 TreePatternNodePtr Child = getChildShared(i); local
2080 TreePatternNodePtr Child = getChildShared(i); local
2558 TreePatternNode *Child = getChild(ChildNo++); local
2882 TreePatternNodePtr Child = Children[i]; local
2944 TreePatternNodePtr Child = N->getChildShared(i); local
4132 TreePatternNodePtr Child = N->getChildShared(i); local
4583 TreePatternNode *Child = N->getChild(i); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSCCIterator.h56 StackElement(NodeRef Node, const ChildItTy &Child, unsigned Min) argument
57 : Node(Node), NextChild(Child), MinVisited(Min) {}
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h830 DIE &addChild(DIE *Child) { argument
831 assert(!Child->getParent() && "Child should be orphaned");
832 Child->Owner = this;
833 Children.push_back(*Child);
837 DIE &addChildFront(DIE *Child) { argument
838 assert(!Child->getParent() && "Child should be orphaned");
839 Child->Owner = this;
840 Children.push_front(*Child);
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTDumper.cpp132 for (const auto *Child : D->specializations())
133 dumpTemplateDeclSpecialization(Child, DumpExplicitInst,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp1973 SDValue Child = Worklist.pop_back_val(); local
1975 if (Child.getNode() != N && RootWeights.count(Child.getNode())) {
1976 // CASE 1: Child is a root note
1978 int Weight = RootWeights[Child.getNode()];
1980 Child = balanceSubTree(Child.getNode());
1981 // calculateWeight(Child.getNode());
1982 Weight = getWeight(Child.getNode());
1991 NodeHeights[Child]
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCFGDiff.h102 for (auto Child : Pair.second) {
106 Child->printAsOperand(OS, false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp283 for (auto &Child : Die.children())
284 emitDwarfDIE(Child);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp295 /// Mark the \p Child node with a corresponding \p Role. All marked children
299 void markStmtChild(Stmt *Child, NodeRole Role);
302 void markExprChild(Expr *Child, NodeRole Role);
643 for (auto *Child : S->body())
644 Builder.markStmtChild(Child, NodeRole::CompoundStatement_statement);
1310 void syntax::TreeBuilder::markStmtChild(Stmt *Child, NodeRole Role) { argument
1311 if (!Child)
1315 if (Expr *ChildExpr = dyn_cast<Expr>(Child)) {
1321 Pending.foldChildren(Arena, getStmtRange(Child), ChildNode);
1323 ChildNode = Mapping.find(Child);
1329 markExprChild(Expr *Child, NodeRole Role) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp127 for (Stmt *Child : S->children())
128 if (Child)
129 Visit(Child);
205 for (Stmt *Child : S->children())
206 if (Child) {
207 if (CallExpr *CE = dyn_cast<CallExpr>(Child))
209 Visit(Child);
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DDriver.h87 void enqueueArchiveMember(const Archive::Child &c, const Archive::Symbol &sym,
H A DSymbols.cpp130 Archive::Child c =
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h142 std::string getFileNameForError(const object::Archive::Child &C,
/freebsd-13-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmresrc.c384 Node = Node->Child;
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutinit.c350 AcpiGbl_RootNodeStruct.Child = NULL;

Completed in 301 milliseconds

12345678