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

12345

/external/clang/test/SemaCXX/
H A Dwarn-weak-vtables.cpp34 class Parent { class
36 Parent() {} function in class:Parent
37 virtual ~Parent();
41 class Derived : public Parent {
52 Parent::~Parent() {}
54 void uses(Parent &p, Derived &d, VeryDerived &vd) {
/external/chromium/base/
H A Dno_windows2000_unittest.h13 // Note: Parent should be testing::Test or UITest.
14 template<typename Parent>
15 class NoWindows2000Test : public Parent {
H A Dtemplate_util_unittest.cc15 class Parent {}; class in namespace:base::__anon901
16 class Child : public Parent {};
44 // EXPECT_TRUE( (is_convertible < Child), (Parent > ::value));
47 EXPECT_TRUE( (is_convertible<Child, Parent>::value) );
48 EXPECT_FALSE( (is_convertible<Parent, Child>::value) );
49 EXPECT_FALSE( (is_convertible<Parent, AStruct>::value) );
/external/clang/tools/libclang/
H A DIndexTypeSourceInfo.cpp21 const NamedDecl *Parent; member in class:__anon3875::TypeIndexer
27 : IndexCtx(indexCtx), Parent(parent), ParentDC(DC) { }
33 Parent, ParentDC);
49 Parent, ParentDC);
55 Parent, ParentDC);
62 Parent, ParentDC);
71 const NamedDecl *Parent,
77 DC = Parent->getDeclContext();
78 indexTypeLoc(TInfo->getTypeLoc(), Parent, DC);
82 const NamedDecl *Parent,
70 indexTypeSourceInfo(TypeSourceInfo *TInfo, const NamedDecl *Parent, const DeclContext *DC) argument
81 indexTypeLoc(TypeLoc TL, const NamedDecl *Parent, const DeclContext *DC) argument
[all...]
/external/clang/lib/Index/
H A DEntityImpl.h28 Entity Parent; member in class:clang::idx::EntityImpl
41 : Parent(parent), Name(name), IdNS(idNS),
55 Profile(ID, Parent, Name, IdNS, IsObjCInstanceMethod);
57 static void Profile(llvm::FoldingSetNodeID &ID, Entity Parent, argument
60 ID.AddPointer(Parent.getAsOpaquePtr());
H A DEntity.cpp46 Entity getEntity(Entity Parent, DeclarationName Name,
62 Entity EntityGetter::getEntity(Entity Parent, DeclarationName Name, argument
65 EntityImpl::Profile(ID, Parent, Name, IdNS, isObjCInstanceMethod);
74 new (Buf) EntityImpl(Parent, Name, IdNS, isObjCInstanceMethod);
88 Entity Parent; local
90 Parent = Visit(cast<Decl>(D->getDeclContext()));
92 if (Parent.isInvalid())
95 if (Parent.isValid() && Parent.isInternalToTU())
128 return getEntity(Parent, GlobNam
[all...]
/external/llvm/include/llvm/
H A DArgument.h33 Function *Parent; member in class:llvm::Argument
44 inline const Function *getParent() const { return Parent; }
45 inline Function *getParent() { return Parent; }
H A DBasicBlock.h77 Function *Parent; member in class:llvm::BasicBlock
90 Function *Parent = 0, BasicBlock *InsertBefore = 0);
99 /// Create - Creates a new BasicBlock. If the Parent parameter is specified,
103 Function *Parent = 0,BasicBlock *InsertBefore = 0) {
104 return new BasicBlock(Context, Name, Parent, InsertBefore);
110 const Function *getParent() const { return Parent; }
111 Function *getParent() { return Parent; }
H A DMetadata.h192 Module *Parent; member in class:llvm::NamedMDNode
195 void setParent(Module *M) { Parent = M; }
211 inline Module *getParent() { return Parent; }
212 inline const Module *getParent() const { return Parent; }
/external/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h159 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
161 if (Parent)
162 Parent->addChild(this);
168 LexicalScope *getParent() const { return Parent; }
184 if (Parent)
185 Parent->openInsnRange(MI);
193 if (Parent)
194 Parent->extendInsnRange(MI);
205 // If Parent dominates NewScope then do not close Parent'
230 LexicalScope *Parent; // Parent to this scope. member in class:llvm::LexicalScope
[all...]
/external/llvm/include/llvm/Object/
H A DArchive.h27 const Archive *Parent; member in class:llvm::object::Archive::Child
31 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {}
34 return (Parent == other.Parent) && (Data.begin() == other.Data.begin());
/external/llvm/lib/Object/
H A DArchive.cpp66 if (NextLoc >= Parent->Data->getBufferEnd())
67 return Child(Parent, StringRef(0, 0));
72 return Child(Parent, StringRef(NextLoc, NextSize));
91 const char *addr = Parent->StringTable->Data.begin()
95 if (Parent->StringTable == Parent->end_children()
96 || addr < (Parent->StringTable->Data.begin()
98 || addr > (Parent->StringTable->Data.begin()
100 + Parent->StringTable->getSize()))
/external/llvm/include/llvm/MC/
H A DMCAtom.h38 MCModule *Parent; member in class:llvm::MCAtom
46 : Type(T), Parent(P), Begin(B), End(E) { }
/external/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);
/external/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...]
/external/clang/include/clang/Sema/
H A DInitialization.h82 const InitializedEntity *Parent; member in class:clang::InitializedEntity
127 : Kind(EK_Variable), Parent(0), Type(Var->getType()),
135 : Kind(Kind), Parent(0), Type(Type)
142 InitializedEntity(FieldDecl *Member, const InitializedEntity *Parent) argument
143 : Kind(EK_Member), Parent(Parent), Type(Member->getType()),
148 const InitializedEntity &Parent);
166 Entity.Parent = 0;
180 Entity.Parent = 0;
232 const InitializedEntity *Parent
243 InitializeElement(ASTContext &Context, unsigned Index, const InitializedEntity &Parent) argument
[all...]
/external/llvm/unittests/ADT/
H A DSCCIteratorTest.cpp222 static ChildIterator child_begin(NodeType *Parent) {
223 return ChildIterator(Parent - Parent->first, Parent->second);
227 static ChildIterator child_end(NodeType *Parent) {
228 return ChildIterator(Parent - Parent->first, NodeSubset());
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dheap.h79 if (comp_(val, A_[Parent(i)])) {
128 int Parent(int i) { function in class:fst::Heap
172 while (i > 0 && !comp_(A_[p = Parent(i)], val)) {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAnalysisManager.h193 LocationContext const *Parent,
196 return LocCtxMgr.getStackFrame(Ctx, Parent, S, Blk, Idx);
207 LocationContext const *Parent,
210 return LocCtxMgr.getStackFrame(AnaCtxMgr.getContext(D), Parent, S,
192 getStackFrame(AnalysisContext *Ctx, LocationContext const *Parent, const Stmt *S, const CFGBlock *Blk, unsigned Idx) argument
206 getStackFrame(const Decl *D, LocationContext const *Parent, const Stmt *S, const CFGBlock *Blk, unsigned Idx) argument
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.h59 llvm::MDNode *Parent,
/external/skia/gpu/include/
H A DGrTLList.h53 class Parent { class
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DOMMap.h78 typedef AbstractWeakReferenceMap<KeyType, ValueType> Parent; typedef in class:WebCore::WeakReferenceMap
79 WeakReferenceMap(v8::WeakReferenceCallback callback) : Parent(callback) { }
92 wrapper.MakeWeak(obj, Parent::weakReferenceCallback());
126 virtual void visit(DOMDataStore* store, typename Parent::Visitor* visitor)
/external/skia/src/animator/
H A DSkDisplayXMLParser.h80 struct Parent { struct in class:SkDisplayXMLParser
84 SkTDArray<Parent> fParents;
/external/llvm/lib/CodeGen/
H A DLexicalScopes.cpp162 LexicalScope *Parent = NULL;
164 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope));
165 WScope = new LexicalScope(Parent, DIDescriptor(Scope), NULL, false);
167 if (!Parent && DIDescriptor(Scope).isSubprogram()
200 LexicalScope *Parent = NULL;
204 Parent = getOrCreateAbstractScope(ParentDesc);
206 AScope = new LexicalScope(Parent, DIDescriptor(N), NULL, true);
/external/clang/include/clang/AST/
H A DDependentDiagnostic.h39 DeclContext *Parent,
48 DependentDiagnostic *DD = Create(Context, Parent, PDiag);
102 DeclContext *Parent,
38 Create(ASTContext &Context, DeclContext *Parent, AccessNonce _, SourceLocation Loc, bool IsMemberAccess, AccessSpecifier AS, NamedDecl *TargetDecl, CXXRecordDecl *NamingClass, QualType BaseObjectType, const PartialDiagnostic &PDiag) argument

Completed in 652 milliseconds

12345