HomeSort by: relevance | last modified time | path
    Searched defs:getParent (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ParentMap.h 36 Stmt *getParent(Stmt*) const;
42 const Stmt *getParent(const Stmt* S) const {
43 return getParent(const_cast<Stmt*>(S));
54 bool hasParent(const Stmt *S) const { return getParent(S) != nullptr; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Argument.h 41 inline const Function *getParent() const { return Parent; }
42 inline Function *getParent() { return Parent; }
BasicBlock.h 107 const Function *getParent() const { return Parent; }
108 Function *getParent() { return Parent; }
238 /// \pre \a getParent() is \c nullptr.
Instruction.h 94 inline const BasicBlock *getParent() const { return Parent; }
95 inline BasicBlock *getParent() { return Parent; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopNestAnalysis.h 145 Function *getParent() const {
146 return Loops.front()->getHeader()->getParent();
RegionInfo.h 138 /// @see getParent()
162 /// RegionNodes for this BasicBlock. Each with the getParent() function
166 inline RegionT *getParent() const { return parent; }
364 RegionT *getParent() const {
365 return RegionNodeBase<Tr>::getParent();
469 bool contains(const InstT *Inst) const { return contains(Inst->getParent()); }
  /src/external/bsd/elftosb/dist/common/
OptionDictionary.h 45 inline OptionContext * getParent() const { return m_parent; }
  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPRequest.cpp 106 const LDAPRequest* LDAPRequest::getParent() const{
107 DEBUG(LDAP_DEBUG_TRACE,"LDAPRequest::getParent()" << endl);
134 parent=parent->getParent();
  /src/external/apache2/llvm/dist/clang/lib/AST/
ParentMap.cpp 134 Stmt* ParentMap::getParent(Stmt* S) const {
141 do { S = getParent(S); } while (S && isa<ParenExpr>(S));
147 S = getParent(S);
156 S = getParent(S);
166 S = getParent(S);
172 Stmt *P = getParent(E);
179 P = getParent(P);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 151 LiveInterval &getParent() const {
156 Register getReg() const { return getParent().reg(); }
LexicalScopes.h 60 LexicalScope *getParent() const { return Parent; }
MachineInstr.h 286 const MachineBasicBlock* getParent() const { return Parent; }
287 MachineBasicBlock* getParent() { return Parent; }
MachineOperand.h 236 /// getParent - Return the instruction that this operand belongs to.
238 MachineInstr *getParent() { return ParentMI; }
239 const MachineInstr *getParent() const { return ParentMI; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 182 DIE *DIE::getParent() const {
209 p = p->getParent();
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Tree.h 116 const Tree *getParent() const { return Parent; }
117 Tree *getParent() { return Parent; }
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CursorVisitor.h 57 const CXCursor &getParent() const { return parent; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
UDTLayout.h 45 const UDTLayoutBase *getParent() const { return Parent; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Archive.h 109 const Archive *getParent() const { return Parent; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SplitKit.h 189 /// getParent - Return the last analyzed interval.
190 const LiveInterval &getParent() const { return *CurLI; }
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
AnalysisDeclContext.h 241 const LocationContext *getParent() const { return Parent; }
323 bool inTopFrame() const override { return getParent() == nullptr; }
ConstructionContext.h 220 const ConstructionContextLayer *getParent() const { return Parent; }
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DelayedDiagnostic.h 291 const DelayedDiagnosticPool *getParent() const { return Parent; }
Scope.h 228 void setFlags(unsigned F) { setFlags(getParent(), F); }
233 /// getParent - Return the scope that this is nested in.
234 const Scope *getParent() const { return AnyParent; }
235 Scope *getParent() { return AnyParent; }
378 assert(FnS->getParent() && "TUScope not created?");
379 return FnS->getParent()->isClassScope();
387 for (const Scope *S = this; S; S = S->getParent()) {
431 for (const Scope *S = this; S; S = S->getParent()) {
468 const Scope *P = getParent();
  /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
InterfaceFile.h 343 InterfaceFile *getParent() const { return Parent; }
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 164 /// getParent - Get this TBAANode's Alias tree parent.
165 TBAANodeImpl<MDNodeTy> getParent() const {
496 TA = TA.getParent();
505 TB = TB.getParent();

Completed in 43 milliseconds

1 2