Searched refs:Child (Results 1 - 25 of 195) sorted by relevance

12345678

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslexternal.c196 ACPI_PARSE_OBJECT *ExternTypeOp = Op->Asl.Child->Asl.Next;
220 if (TypeOp->Asl.Child)
224 (void) MtProcessTypeOp (TypeOp->Asl.Child);
236 if (TypeOp->Asl.Child)
238 ParamCount = MtProcessParameterTypeList (TypeOp->Asl.Child, ParamTypes);
247 ArgCountOp = Op->Asl.Child->Asl.Next->Asl.Next;
259 ListOp->Asl.Child = Op;
302 ACPI_PARSE_OBJECT *Child; local
319 if (Next->Asl.Child->Asl.CompileFlags & OP_VISITED)
325 NameOp = Next->Asl.Child
[all...]
H A Dasloperands.c226 Next = Op->Asl.Child;
266 Next = Op->Asl.Child;
404 PkgLengthNode = Next->Asl.Child;
414 PkgLengthNode = Next->Asl.Child;
479 PkgLengthNode = Next->Asl.Child;
562 Next = Op->Asl.Child;
592 Next = Op->Asl.Child;
626 Next = Op->Asl.Child;
666 Next = Op->Asl.Child;
726 BufferLengthOp = Op->Asl.Child;
1046 ACPI_PARSE_OBJECT *Child; local
1241 ACPI_PARSE_OBJECT *Child = NULL; local
[all...]
H A Daslparseop.c184 ACPI_PARSE_OBJECT *Child; local
198 "\nCreateOp Ln/Col %u/%u NewParent %p Child %u Op %s ",
243 Child = va_arg (ap, ACPI_PARSE_OBJECT *);
244 DbgPrint (ASL_PARSE_OUTPUT, "%p, ", Child);
252 if (!Child)
254 Child = TrAllocateOp (PARSEOP_DEFAULT_ARG);
262 Op->Asl.Child = Child;
278 Op->Asl.CommentList = Child->Asl.CommentList;
279 Op->Asl.EndBlkComment = Child
[all...]
H A Daslprintf.c224 DestOp = Op->Asl.Child;
225 Op->Asl.Child = DestOp->Asl.Next;
245 * Op->Child - Format string
267 Format = ACPI_CAST_PTR (char, Op->Asl.Child->Asl.Value.String);
268 ArgNode = Op->Asl.Child->Asl.Next;
274 Op->Asl.Child = NULL;
358 if (!Op->Asl.Child)
401 if (!Op->Asl.Child)
431 Op->Asl.Child->Asl.Next = DestOp;
457 if (!Op->Asl.Child)
[all...]
H A Dasltree.c463 ACPI_PARSE_OBJECT *Child; local
476 "\nLinkChildren Line [%u to %u] NewParent %p Child %u Op %s ",
546 Child = va_arg (ap, ACPI_PARSE_OBJECT *);
548 if ((Child == PrevChild) && (Child != NULL))
550 AslError (ASL_WARNING, ASL_MSG_COMPILER_INTERNAL, Child,
551 "Child op list invalid");
556 DbgPrint (ASL_PARSE_OUTPUT, "%p, ", Child);
564 if (!Child)
566 Child
[all...]
H A Daslprune.c313 PrPrintObjectAtLevel (Level, Op->Asl.Child->Asl.Value.Name);
314 Op->Asl.Child->Asl.Next->Asl.Next->Asl.Next->Asl.Next->Asl.Next->Asl.Next = NULL;
321 PrPrintObjectAtLevel (Level, Op->Asl.Child->Asl.Value.Name);
322 Op->Asl.Child->Asl.Next = NULL;
332 Op->Asl.Child = NULL;
337 Op->Asl.Child->Asl.Next = NULL;
H A Daslcodegen.c280 /* 11 */ Op->Asl.Child,
531 ACPI_PARSE_OBJECT *Child; local
540 Child = Op->Asl.Child;
544 Child = Child->Asl.Next;
556 ACPI_COPY_NAMESEG (AcpiGbl_TableSig, Child->Asl.Value.String);
557 Child->Asl.Value.String = ACPI_SIG_XXXX;
560 ACPI_COPY_NAMESEG (AslGbl_TableHeader.Signature, Child->Asl.Value.String);
564 Child
[all...]
H A Dasltransform.c495 MethodOp = MethodOp->Asl.Child;
533 if (Op->Asl.Child->Asl.Value.Integer > 1000)
579 Next = Op->Asl.Child;
651 Next = StartNode->Asl.Child;
677 TrCheckForDuplicateCase (Next, Next->Asl.Child);
695 CaseBlock = CaseOp->Asl.Child->Asl.Next;
696 Conditional->Asl.Child->Asl.Next = NULL;
697 Predicate = CaseOp->Asl.Child;
734 NewOp2->Asl.Child = Predicate; /* PARSEOP_PACKAGE */
744 NewOp2->Asl.Child
[all...]
H A Daslopcodes.c266 ACPI_PARSE_OBJECT *Child; local
280 Child = Op->Asl.Child;
281 Child = Child->Asl.Next;
282 Child = Child->Asl.Next;
286 AcpiUtSetIntegerWidth ((UINT8) Child->Asl.Value.Integer);
448 TypeOp = Op->Asl.Child;
479 * Child o
[all...]
H A Ddtsubtable.c226 if (!ParentTable->Child)
228 ParentTable->Child = Subtable;
234 ChildTable = ParentTable->Child;
345 return (ParentTable->Child);
H A Daslmethod.c268 Next = Op->Asl.Child;
288 NextType = Next->Asl.Child;
296 NextType = Next->Asl.Child;
319 Op->Asl.Child->Asl.Next, AslGbl_MsgBuffer);
487 if ((Op->Asl.Child) &&
488 (Op->Asl.Child->Asl.ParseOpcode != PARSEOP_DEFAULT_ARG) &&
489 (!(Op->Asl.Child->Asl.CompileFlags & OP_IS_NULL_RETURN)))
522 if ((Op->Asl.Child->Asl.ParseOpcode == PARSEOP_INTEGER) &&
523 (Op->Asl.Child->Asl.Value.Integer > ACPI_UINT8_MAX))
584 Next = Op->Asl.Child
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DLexicallyOrderedRecursiveASTVisitor.h84 Decl *Child = *I; local
85 if (BaseType::canIgnoreChildDeclWhileTraversingDeclContext(Child)) {
89 if (!isa<ObjCImplementationDecl>(Child) &&
90 !isa<ObjCCategoryImplDecl>(Child)) {
91 if (!BaseType::getDerived().TraverseDecl(Child))
102 Child->getEndLoc()))
107 if (!BaseType::getDerived().TraverseDecl(Child))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/WindowsManifest/
H A DWindowsManifestMerger.cpp90 for (xmlNodePtr Child = Parent->children; Child; Child = Child->next) {
91 if (xmlStringsEqual(Child->name, ElementName)) {
92 return Child;
326 for (xmlNodePtr Child = Node->children; Child; Child = Child
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp30 for (const Stmt *Child : S->children())
31 if (Child && containsMacro(Child))
44 for (const Stmt *Child : S->children())
45 if (Child && containsEnum(Child))
60 for (const Stmt *Child : S->children())
61 if (Child && containsStaticLocal(Child))
72 for (const Stmt *Child
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h38 for (const Stmt *Child : S->children())
39 if (Child && containsStmt<T>(Child))
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DArchive.h87 class Child { class in class:llvm::object::Archive
101 Child(const Archive *Parent, const char *Start, Error *Err);
102 Child(const Archive *Parent, StringRef Data, uint16_t StartOfFile);
104 bool operator ==(const Child &other) const {
110 Expected<Child> getNext() const;
147 Child C;
150 ChildFallibleIterator() : C(Child(nullptr, nullptr, nullptr)) {}
151 ChildFallibleIterator(const Child &C) : C(C) {}
153 const Child *operator->() const { return &C; }
154 const Child
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DConcreteSymbolEnumerator.h35 std::unique_ptr<PDBSymbol> Child = Enumerator->getChildAtIndex(Index); variable
36 return unique_dyn_cast_or_null<ChildType>(Child);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSizeofPointer.cpp39 for (Stmt *Child : S->children())
40 if (Child)
41 Visit(Child);
H A DUndefCapturedBlockVarChecker.cpp42 for (const Stmt *Child : S->children())
43 if (Child)
44 if (const DeclRefExpr *BR = FindBlockDeclRefExpr(Child, VD))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DInlineInfo.cpp34 for (const auto &Child : II.Children)
35 OS << Child; local
47 for (const auto &Child : II.Children) {
48 if (::getInlineStackHelper(Child, Addr, InlineStack))
129 // Child address ranges are encoded relative to the first address in the
206 // Child address ranges are encoded relative to the first address in the
210 llvm::Expected<InlineInfo> Child = decode(Data, Offset, ChildBaseAddr); local
211 if (!Child)
212 return Child.takeError();
214 if (Child
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp176 while (auto Child = Children->getNext()) {
177 if (auto Base = unique_dyn_cast<PDBSymbolTypeBaseClass>(Child)) {
183 else if (auto Data = unique_dyn_cast<PDBSymbolData>(Child)) {
188 } else if (auto VT = unique_dyn_cast<PDBSymbolTypeVTable>(Child))
190 else if (auto Func = unique_dyn_cast<PDBSymbolFunc>(Child))
193 Other.push_back(std::move(Child));
277 void UDTLayoutBase::addChildToLayout(std::unique_ptr<LayoutItemBase> Child) { argument
278 uint32_t Begin = Child->getOffsetInParent();
280 if (!Child->isElided()) {
281 BitVector ChildBytes = Child
[all...]
H A DPDBSymbolFunc.cpp38 while (auto Child = DataChildren->getNext()) {
39 if (Child->getDataKind() == PDB_DataKind::Param) {
40 std::string Name = Child->getName();
43 Args.push_back(std::move(Child));
/freebsd-13-stable/sys/contrib/dev/acpica/components/parser/
H A Dpstree.c412 * RETURN: Child Op, Null if none is found.
422 ACPI_PARSE_OBJECT *Child = NULL; local
436 Child = AcpiPsGetArg (Op, 0);
447 Child = AcpiPsGetArg (Op, 1);
453 Child = AcpiPsGetArg (Op, 2);
459 Child = AcpiPsGetArg (Op, 3);
469 return (Child);
/freebsd-13-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsalloc.c310 NextNode = ParentNode->Child;
332 ParentNode->Child = Node->Peer;
366 ACPI_NAMESPACE_NODE *Node, /* New Child*/
402 ChildNode = ParentNode->Child;
406 ParentNode->Child = Node;
466 NextNode = ParentNode->Child;
471 if (NextNode->Child)
488 ParentNode->Child = NULL;
548 if (ChildNode->Child)
666 if (ChildNode->Child)
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTree.cpp73 void syntax::Tree::prependChildLowLevel(Node *Child, NodeRole Role) { argument
74 assert(Child->role() == NodeRole::Detached);
77 Child->setRole(Role);
78 prependChildLowLevel(Child);
81 void syntax::Tree::prependChildLowLevel(Node *Child) { argument
82 assert(Child->Parent == nullptr);
83 assert(Child->NextSibling == nullptr);
84 assert(Child->role() != NodeRole::Detached);
86 Child->Parent = this;
87 Child
[all...]

Completed in 275 milliseconds

12345678