Searched refs:Child (Results 26 - 50 of 195) sorted by relevance

12345678

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslwalks.c211 if ((Op->Asl.Child) &&
212 (Op->Asl.Child->Asl.ParseOpcode != PARSEOP_DEFAULT_ARG))
214 ThisOpBtype = AnGetBtype (Op->Asl.Child);
216 if ((Op->Asl.Child->Asl.ParseOpcode == PARSEOP_METHODCALL) &&
224 * Child->Node will be null if the method has not been
227 if (Op->Asl.Child->Asl.Node &&
228 (Op->Asl.ParentMethod != Op->Asl.Child->Asl.Node->Op))
232 TrWalkParseTree (Op->Asl.Child->Asl.Node->Op,
236 ThisOpBtype = AnGetBtype (Op->Asl.Child);
315 ArgOp = Op->Asl.Child;
[all...]
H A Daslnamesp.c337 Op = Op->Asl.Child;
355 Op = Op->Asl.Child;
374 Op = Op->Asl.Child;
427 Op = Op->Asl.Child;
436 Op = Op->Asl.Child;
451 Op = Op->Asl.Child;
460 Op = Op->Asl.Child;
H A Dasloffset.c246 if (!Op->Asl.Child)
256 Op = Op->Asl.Child;
299 NextOp = Op->Asl.Child;
321 NextOp = Op->Asl.Child;
368 NextOp = Op->Asl.Child;
392 NextOp = Op->Asl.Child; /* Get Namepath */
417 NextOp = Op->Asl.Child; /* Get Namepath */
H A Dcvparser.c663 * DESCRIPTION: Point the parent pointer of the Child to the node that
673 ACPI_FILE_NODE *Child; local
677 Child = CvFilenameExists (ChildFile, AcpiGbl_FileTreeRoot);
680 if (Child && Parent)
682 Child->Parent = Parent;
684 while (Child->Parent)
686 if (Child->Parent->FileEnd < Child->FileStart)
688 Child->Parent->FileEnd = Child
[all...]
H A Daslload.c280 ACPI_PARSE_OBJECT *Child = NULL; local
309 Child = UtGetArg (Op, 6);
314 Child = UtGetArg (Op, 5);
319 Child = UtGetArg (Op, 4);
331 while (Child)
333 switch (Child->Asl.AmlOpcode)
343 Child->Asl.Value.String,
352 AslError (ASL_ERROR, ASL_MSG_CORE_EXCEPTION, Child,
353 Child->Asl.Value.String);
370 AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Child,
[all...]
H A Daslrestype2.c190 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
297 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
325 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
529 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
541 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
H A Dasllookup.c401 NameOp = Op->Asl.Child;
408 NameOp = Op->Asl.Child->Asl.Next;
415 NameOp = Op->Asl.Child;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DSynthesis.cpp18 static void prependChildLowLevel(syntax::Tree *T, syntax::Node *Child, argument
20 T->prependChildLowLevel(Child, R);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DParentMapContext.cpp124 const auto *Child = Node.get<Expr>(); local
125 if (E && Child)
126 return AscendIgnoreUnlessSpelledInSource(E, Child);
134 const Expr *Child) {
136 auto ShouldSkip = [](const Expr *E, const Expr *Child) {
155 auto SR = Child->getSourceRange();
174 while (ShouldSkip(E, Child)) {
187 Child = E;
133 AscendIgnoreUnlessSpelledInSource(const Expr *E, const Expr *Child) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp400 TreeNode *Child; local
407 Child = &Node.addNameChild(NameString, StringTable);
410 Child = &Node.addIDChild(Entry.Identifier.ID);
416 addChildren(*Child, RSR, NextTable, Origin, Context, Duplicates);
430 TreeNode *Child; local
434 Origin, Data.size(), Child);
443 Context, InputFilenames[Child->Origin], InputFilenames.back()));
525 auto Child = IDChildren.find(ID); local
526 if (Child == IDChildren.end()) {
532 return *(Child
540 auto Child = StringChildren.find(NameString); local
[all...]
H A DArchive.cpp321 Archive::Child::Child(const Archive *Parent, StringRef Data, function in class:Archive::Child
327 Archive::Child::Child(const Archive *Parent, const char *Start, Error *Err) function in class:Archive::Child
394 Expected<uint64_t> Archive::Child::getSize() const {
400 Expected<uint64_t> Archive::Child::getRawSize() const {
404 Expected<bool> Archive::Child::isThinMember() const {
412 Expected<std::string> Archive::Child::getFullName() const {
430 Expected<StringRef> Archive::Child::getBuffer() const {
452 Expected<Archive::Child> Archiv
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFixIrreducible.cpp132 auto Child = *II; local
133 LLVM_DEBUG(dbgs() << "child loop: " << Child->getHeader()->getName()
138 if (Headers.count(Child->getHeader())) {
139 for (auto BB : Child->blocks()) {
144 LI.destroy(Child);
149 Child->setParentLoop(nullptr);
150 NewLoop->addChildLoop(Child);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DTwine.h136 union Child union in class:llvm::Twine
156 Child LHS;
160 Child RHS;
182 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind)
245 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const;
248 void printOneChildRepr(raw_ostream &OS, Child Ptr,
388 Child LHS, RHS;
501 Child NewLHS, NewRHS;
/freebsd-13-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfobj.c320 ACPI_HANDLE Child,
344 if (!Child)
360 ChildNode = AcpiNsValidateHandle (Child);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DArchiveWriter.h30 getOldMember(const object::Archive::Child &OldMember, bool Deterministic);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp226 for (const auto &Child : Node.Children)
227 dump(Child, OS, Indent + 1);
240 for (const auto &Child : Node.Children) {
241 if (Child.SelectionKind == Kind)
243 if (Child.SelectionKind == SourceSelectionKind::None)
244 return hasAnyDirectChildrenWithKind(Child, Kind);
348 for (const auto &Child : ASTSelection.Children) {
349 if (!hasAnyDirectChildrenWithKind(Child, Kind)) {
365 for (const auto &Child : ASTSelection.Children)
366 findDeepestWithKind(Child, MatchingNode
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp102 const Comment *Child = *I; local
103 if (!Child)
105 switch (Child->getCommentKind()) {
110 const ParagraphComment *PC = cast<ParagraphComment>(Child);
121 const BlockCommandComment *BCC = cast<BlockCommandComment>(Child);
144 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child);
156 const TParamCommandComment *TPCC = cast<TParamCommandComment>(Child);
168 MiscBlocks.push_back(cast<BlockCommandComment>(Child));
172 const VerbatimLineComment *VLC = cast<VerbatimLineComment>(Child);
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/
H A DFileArchive.cpp54 Archive::Child c = member->second;
138 std::error_code instantiateMember(Archive::Child member,
174 Expected<Archive::Child> memberOrErr = sym.getMember();
177 Archive::Child member = memberOrErr.get();
188 typedef std::unordered_map<StringRef, Archive::Child> MemberMap;
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp99 ASTNode Child = i->second; local
100 bool Abstract = Child.isAbstract();
101 std::string NodeName = macroName(std::string(Child.getName()));
109 OS << NodeName << "(" << Child.getName() << ", " << baseName(Base) << ")";
113 auto Result = EmitNode(OS, Child);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp174 while (auto Child = Result->getNext()) {
175 ++Stats[Child->getSymTag()];
204 auto Child = Session.getSymbolById(Value);
208 if (!Child)
213 Child->defaultDump(OS, Indent + 2, ShowFlags, PdbSymbolIdField::None);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp79 for (const Stmt *Child : S->children())
80 if (Child)
81 this->Visit(Child);
H A DObjCContainersASTChecker.cpp154 for (Stmt *Child : S->children())
155 if (Child)
156 Visit(Child);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp127 for (const auto &Child : AllChildren) {
128 if (Comparator.equivalent(Child, FileName)) {
130 Result = Child;
/freebsd-13-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmopcode.c799 ACPI_PARSE_OBJECT *Child; local
862 Child = Op->Common.Value.Arg;
863 if ((Child->Common.AmlOpcode == AML_LOGICAL_EQUAL_OP) ||
864 (Child->Common.AmlOpcode == AML_LOGICAL_GREATER_OP) ||
865 (Child->Common.AmlOpcode == AML_LOGICAL_LESS_OP))
867 Child->Common.DisasmOpcode = ACPI_DASM_LNOT_SUFFIX;
1049 Child = Op->Common.Value.Arg;
1051 if (Child->Common.AmlOpcode == AML_INT_BYTELIST_OP)
1055 Aml = Child->Named.Data;
1056 Length = (UINT32) Child
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp33 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
34 ContractNodes(Child, CGP);
35 Scope->resetChild(i, Child.release());
209 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
210 FactorNodes(Child);
212 if (Child) {
214 if (auto *SM = dyn_cast<ScopeMatcher>(Child.get())) {
218 OptionsToMatch.push_back(Child.release());

Completed in 217 milliseconds

12345678