Searched refs:Parent (Results 1 - 25 of 172) sorted by relevance

1234567

/freebsd-10.0-release/sys/contrib/dev/acpica/components/parser/
H A Dpswalk.c71 ACPI_PARSE_OBJECT *Parent = NULL; local
83 if (Op != Parent)
100 Parent = Op->Common.Parent;
116 Op = Parent;
H A Dpstree.c201 Arg->Common.Parent = Op;
229 ACPI_PARSE_OBJECT *Parent; local
259 Parent = Op->Common.Parent;
261 while (Parent)
263 Arg = AcpiPsGetArg (Parent, 0);
276 if (Parent->Common.Next)
280 return (Parent->Common.Next);
283 Op = Parent;
284 Parent
[all...]
H A Dpsparse.c175 if (Op->Common.Parent)
177 Prev = Op->Common.Parent->Common.Value.Arg;
189 ParentInfo = AcpiPsGetOpcodeInfo (Op->Common.Parent->Common.AmlOpcode);
214 if ((Op->Common.Parent->Common.AmlOpcode == AML_REGION_OP) ||
215 (Op->Common.Parent->Common.AmlOpcode == AML_DATA_REGION_OP) ||
216 (Op->Common.Parent->Common.AmlOpcode == AML_BUFFER_OP) ||
217 (Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
218 (Op->Common.Parent->Common.AmlOpcode == AML_BANK_FIELD_OP) ||
219 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP))
227 else if ((Op->Common.Parent
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h160 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
162 if (Parent)
163 Parent->addChild(this);
169 LexicalScope *getParent() const { return Parent; }
185 if (Parent)
186 Parent->openInsnRange(MI);
194 if (Parent)
195 Parent->extendInsnRange(MI);
206 // If Parent dominates NewScope then do not close Parent'
231 LexicalScope *Parent; // Parent to this scope. member in class:llvm::LexicalScope
[all...]
H A DLiveRangeEdit.h58 LiveInterval *Parent; member in class:llvm::LiveRangeEdit
80 /// scanRemattable - Identify the Parent values that may rematerialize.
108 : Parent(parent), NewRegs(newRegs),
116 assert(Parent && "No parent LiveInterval");
117 return *Parent;
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DArgument.h37 Function *Parent; member in class:llvm::Argument
49 inline const Function *getParent() const { return Parent; }
50 inline Function *getParent() { return Parent; }
H A DBasicBlock.h79 Function *Parent; member in class:llvm::BasicBlock
93 Function *Parent = 0, BasicBlock *InsertBefore = 0);
106 /// If the Parent parameter is specified, the basic block is automatically
110 Function *Parent = 0,BasicBlock *InsertBefore = 0) {
111 return new BasicBlock(Context, Name, Parent, InsertBefore);
116 const Function *getParent() const { return Parent; }
117 Function *getParent() { return Parent; }
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Format/
H A DTokenAnnotator.cpp51 AnnotatedToken *Tok = Parent;
53 Tok = Tok->Parent;
93 AnnotatedToken *Left = CurrentToken->Parent;
124 AnnotatedToken *Left = CurrentToken->Parent;
128 } else if (AnnotatedToken *MaybeSel = Left->Parent) {
130 if (MaybeSel->isObjCAtKeyword(tok::objc_selector) && MaybeSel->Parent &&
131 MaybeSel->Parent->is(tok::at)) {
147 AnnotatedToken &Prev = *CurrentToken->Parent;
149 if (Prev.Parent->is(tok::identifier) &&
158 if (CurrentToken->Parent
191 AnnotatedToken *Parent = Left->getPreviousNoneComment(); local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DTraversalChecker.cpp39 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition); local
40 if (!Parent) {
42 Parent = Parents.getParent(Condition);
48 SourceLocation Loc = Parent->getLocStart();
50 << Parent->getStmtClassName() << "\n";
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCAtom.h38 MCModule *Parent; member in class:llvm::MCAtom
46 : Type(T), Parent(P), Begin(B), End(E) { }
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.h33 void getMips16SPRefReg(SDNode *Parent, SDValue &AliasReg);
35 virtual bool selectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
H A DMips16ISelDAGToDAG.cpp124 void Mips16DAGToDAGISel::getMips16SPRefReg(SDNode *Parent, SDValue &AliasReg) { argument
126 if (Parent) {
127 switch (Parent->getOpcode()) {
129 LoadSDNode *SD = dyn_cast<LoadSDNode>(Parent);
140 StoreSDNode *SD = dyn_cast<StoreSDNode>(Parent);
158 SDNode *Parent, SDValue Addr, SDValue &Base, SDValue &Offset,
168 getMips16SPRefReg(Parent, Alias);
191 getMips16SPRefReg(Parent, Alias);
222 const LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(Parent);
157 selectAddr16( SDNode *Parent, SDValue Addr, SDValue &Base, SDValue &Offset, SDValue &Alias) argument
/freebsd-10.0-release/contrib/llvm/include/llvm/Object/
H A DArchive.h68 const Archive *Parent; member in class:llvm::object::Archive::Child
75 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {
91 return (Parent == other.Parent) && (Data.begin() == other.Data.begin());
107 if (NextLoc >= Parent->Data->getBufferEnd())
108 return Child(Parent, StringRef(0, 0));
113 return Child(Parent, StringRef(NextLoc, NextSize));
135 getBuffer(), FullPath ? (Twine(Parent->getFileName()) + "(" + Name +
171 const Archive *Parent; member in class:llvm::object::Archive::Symbol
177 return (Parent
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/compiler/
H A Dasltransform.c75 ACPI_PARSE_OBJECT *Parent);
201 * Parent - Parent of the subtree
212 ACPI_PARSE_OBJECT *Parent)
220 Next->Asl.Parent = Parent;
458 NewOp->Asl.Parent = Conditional->Asl.Parent;
459 TrAmlInitLineNumbers (NewOp, NewOp->Asl.Parent);
519 NewOp->Asl.Parent
210 TrAmlSetSubtreeParent( ACPI_PARSE_OBJECT *Op, ACPI_PARSE_OBJECT *Parent) argument
[all...]
H A Daslxref.c340 if ((Op->Asl.Parent) &&
341 (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_CONDREFOF))
524 switch (Op->Asl.Parent->Asl.AmlOpcode)
592 switch (Op->Asl.Parent->Asl.AmlOpcode)
622 (Op->Asl.Parent) &&
623 (Op->Asl.Parent->Asl.ParseOpcode != PARSEOP_METHOD)) ||
632 if ((Op->Asl.Parent) &&
633 ((Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_REFOF) ||
634 (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_DEREFOF) ||
635 (Op->Asl.Parent
[all...]
H A Daslanalyze.c286 * PARAMETERS: Op - Parent
287 * OpInfo - Parent info
358 * PARAMETERS: Op - Parent op for the operator
371 ACPI_PARSE_OBJECT *Parent; local
390 Parent = Op->Asl.Parent;
391 switch (Parent->Asl.ParseOpcode)
400 if (Parent->Asl.Child == Op)
541 ACPI_PARSE_OBJECT *Parent; local
553 Parent
[all...]
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCAtom.cpp22 Parent->remap(this, Begin, End+Size);
29 Parent->remap(this, Begin, End+1);
45 Parent->remap(this, LeftBegin, LeftEnd);
48 MCAtom *RightAtom = Parent->createAtom(Type, RightBegin, RightEnd);
80 Parent->remap(this, Begin, TruncPt);
/freebsd-10.0-release/contrib/llvm/lib/Object/
H A DArchive.cpp58 const char *addr = Parent->StringTable->Data.begin()
62 if (Parent->StringTable == Parent->end_children()
63 || addr < (Parent->StringTable->Data.begin()
65 || addr > (Parent->StringTable->Data.begin()
67 + Parent->StringTable->getSize()))
71 if (Parent->kind() == K_GNU) {
187 Result = StringRef(Parent->SymbolTable->getBuffer().begin() + StringIndex);
192 const char *Buf = Parent->SymbolTable->getBuffer().begin();
195 if (Parent
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsutils.c226 if ((!Op->Common.Parent) ||
227 (Op->Common.Parent->Common.AmlOpcode == AML_SCOPE_OP))
239 ParentInfo = AcpiPsGetOpcodeInfo (Op->Common.Parent->Common.AmlOpcode);
257 switch (Op->Common.Parent->Common.AmlOpcode)
298 if ((Op->Common.Parent->Common.AmlOpcode == AML_REGION_OP) ||
299 (Op->Common.Parent->Common.AmlOpcode == AML_DATA_REGION_OP) ||
300 (Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
301 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP) ||
302 (Op->Common.Parent->Common.AmlOpcode == AML_BUFFER_OP) ||
303 (Op->Common.Parent
[all...]
H A Ddsobject.c117 ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
118 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP)))
146 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
147 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP))
401 ACPI_PARSE_OBJECT *Parent; local
414 Parent = Op->Common.Parent;
415 while ((Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
416 (Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP))
418 Parent
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DDominatorInternals.h49 SuccVInfo.Parent = V;
74 BBInfo.Parent = 1;
98 SuccVInfo.Parent = BBDFSNum;
118 if (VInInfo.Parent >= LastLinked)
125 typename GraphT::NodeType* VAncestor = DT.Vertex[VInfo.Parent];
128 if (Visited.insert(VAncestor) && VInfo.Parent >= LastLinked) {
135 if (VInfo.Parent < LastLinked)
144 VInfo.Parent = VAInfo.Parent;
206 WInfo.Semi = WInfo.Parent;
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransProtectedScope.cpp67 Stmt *Parent = getCaseParent(Curr);
71 if (getCaseParent(Curr) != Parent)
88 Stmt *Parent = PMap.getParent(S); local
89 while (Parent && (isa<SwitchCase>(Parent) || isa<LabelStmt>(Parent)))
90 Parent = PMap.getParent(Parent);
91 return Parent;
/freebsd-10.0-release/sys/boot/efi/include/
H A Defifs.h65 EFI_LBA Parent; member in struct:_EFI_FILE_HEADER
98 EFI_LBA Parent; member in struct:_EFI_LBAL
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DModule.cpp25 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, argument
27 : Name(Name), DefinitionLoc(DefinitionLoc), Parent(Parent),
34 if (Parent) {
35 if (!Parent->isAvailable())
37 if (Parent->IsSystem)
40 Parent->SubModuleIndex[Name] = Parent->SubModules.size();
41 Parent->SubModules.push_back(this);
74 for (const Module *Current = this; Current; Current = Current->Parent) {
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DModule.h55 Module *Parent; member in class:clang::Module
232 : Name(Name), DefinitionLoc(DefinitionLoc), Parent(0),Umbrella(),ASTFile(0),
240 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent,
265 bool isSubModule() const { return Parent != 0; }
275 for (const Module *Mod = this; Mod; Mod = Mod->Parent)
285 return IsFramework && Parent && Parent->isPartOfFramework();

Completed in 227 milliseconds

1234567