HomeSort by relevance Sort by last modified time
    Searched defs:Parent (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium/base/
template_util_unittest.cc 15 class Parent {};
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/llvm/include/llvm/
Argument.h 33 Function *Parent;
36 void setParent(Function *parent);
44 inline const Function *getParent() const { return Parent; }
45 inline Function *getParent() { return Parent; }
BasicBlock.h 77 Function *Parent;
79 void setParent(Function *parent);
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; }
Metadata.h 150 // function-local operand, return the first such operand's parent function.
192 Module *Parent;
195 void setParent(Module *M) { Parent = M; }
200 /// eraseFromParent - Drop all references and remove the node from parent
211 inline Module *getParent() { return Parent; }
212 inline const Module *getParent() const { return Parent; }
Instruction.h 34 BasicBlock *Parent;
51 inline const BasicBlock *getParent() const { return Parent; }
52 inline BasicBlock *getParent() { return Parent; }
269 /// * The instruction has no parent
  /external/clang/test/SemaCXX/
warn-weak-vtables.cpp 34 class Parent {
36 Parent() {}
37 virtual ~Parent();
41 class Derived : public Parent {
52 Parent::~Parent() {}
54 void uses(Parent &p, Derived &d, VeryDerived &vd) {
  /external/clang/lib/Index/
EntityImpl.h 28 Entity Parent;
39 EntityImpl(Entity parent, DeclarationName name, unsigned idNS,
41 : Parent(parent), Name(name), IdNS(idNS),
55 Profile(ID, Parent, Name, IdNS, IsObjCInstanceMethod);
57 static void Profile(llvm::FoldingSetNodeID &ID, Entity Parent,
60 ID.AddPointer(Parent.getAsOpaquePtr());
Entity.cpp 46 Entity getEntity(Entity Parent, DeclarationName Name,
62 Entity EntityGetter::getEntity(Entity Parent, DeclarationName Name,
65 EntityImpl::Profile(ID, Parent, Name, IdNS, isObjCInstanceMethod);
74 new (Buf) EntityImpl(Parent, Name, IdNS, isObjCInstanceMethod);
88 Entity Parent;
90 Parent = Visit(cast<Decl>(D->getDeclContext()));
92 if (Parent.isInvalid())
95 if (Parent.isValid() && Parent.isInternalToTU())
128 return getEntity(Parent, GlobName, IdNS, isObjCInstanceMethod)
    [all...]
  /external/clang/tools/libclang/
IndexTypeSourceInfo.cpp 21 const NamedDecl *Parent;
25 TypeIndexer(IndexingContext &indexCtx, const NamedDecl *parent,
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()
    [all...]
  /external/llvm/include/llvm/MC/
MCAtom.h 38 MCModule *Parent;
46 : Type(T), Parent(P), Begin(B), End(E) { }
  /external/llvm/include/llvm/Object/
Archive.h 27 const Archive *Parent;
31 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {}
34 return (Parent == other.Parent) && (Data.begin() == other.Data.begin());
  /external/skia/gpu/include/
GrTLList.h 53 class Parent {
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
Parent.java 3 public class Parent
9 public Parent() { throw new RuntimeException("Stub!"); }
23 public static com.android.stubs.Parent public_static_Parent;
24 public static final com.android.stubs.Parent public_static_final_Parent;
25 public static final com.android.stubs.Parent public_static_final_Parent_null;
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
Parent.java 20 public class Parent {
31 public static Parent public_static_Parent = new Parent();
32 public static final Parent public_static_final_Parent = new Parent();
33 public static final Parent public_static_final_Parent_null = null;
39 public Parent() {
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 82 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!");
89 // if either group is 0, then that must become the parent
90 unsigned Parent = (Group1 == 0) ? Group1 : Group2;
91 unsigned Other = (Parent == Group1) ? Group2 : Group1;
92 GroupNodes.at(Other) = Parent;
93 return Parent;
    [all...]
  /external/llvm/include/llvm/Analysis/
IVUsers.h 41 : CallbackVH(U), Parent(P), OperandValToReplace(O) {
77 /// Parent - a pointer to the IVUsers that owns this IVStrideUse.
78 IVUsers *Parent;
RegionIterator.h 28 /// the parent Region. Furthermore for BasicBlocks that start a subregion, a
185 assert(Node->getParent() && "A BB node must have a parent!");
212 Region* Parent = Node->getParent();
216 assert(Parent->getExit() != BB && "iterator out of range!");
218 return Parent->getBBNode(BB);
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 77 MachineBasicBlock *Parent; // Pointer to the owning basic block.
86 void setParent(MachineBasicBlock *P) { Parent = P; }
128 const MachineBasicBlock* getParent() const { return Parent; }
129 MachineBasicBlock* getParent() { return Parent; }
LexicalScopes.h 159 : 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's instructio
    [all...]
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 221 BasicBlock *Parent = II->getParent();
230 if (BB->isLandingPad() && BB != Parent &&
231 isa<InvokeInst>(Parent->getTerminator())) {
240 SplitLandingPadPredecessors(LPad, Parent, ".1", ".2", 0, NewBBs);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 76 // to calculate the parent and child positions.
79 if (comp_(val, A_[Parent(i)])) {
117 // compute left child of parent
122 // compute right child of parent
127 // given a child compute parent
128 int Parent(int i) {
132 // swap a child, parent. Use to move element up/down tree
172 while (i > 0 && !comp_(A_[p = Parent(i)], val)) {
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMMap.h 78 typedef AbstractWeakReferenceMap<KeyType, ValueType> Parent;
79 WeakReferenceMap(v8::WeakReferenceCallback callback) : Parent(callback) { }
92 wrapper.MakeWeak(obj, Parent::weakReferenceCallback());
126 virtual void visit(DOMDataStore* store, typename Parent::Visitor* visitor)
  /external/chromium/chrome/browser/printing/
printing_layout_uitest.cc 197 typedef PrintingLayoutTest Parent;
203 return Parent::IsTestCaseDisabled() || IsClearTypeEnabled();
  /external/clang/lib/Analysis/
AnalysisContext.cpp 198 const LocationContext *parent,
202 ID.AddPointer(parent);
225 const LocationContext *parent,
228 LOC::Profile(ID, ctx, parent, d);
234 L = new LOC(ctx, parent, d);
242 const LocationContext *parent,
246 StackFrameContext::Profile(ID, ctx, parent, s, blk, idx);
251 L = new StackFrameContext(ctx, parent, s, blk, idx);
259 const LocationContext *parent,
261 return getLocationContext<ScopeContext, Stmt>(ctx, parent, s)
    [all...]
  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 241 const BasicBlock *Parent = p.find(Dest)->second;
242 Edge e = getEdge(Parent, Dest);
248 Dest = Parent;

Completed in 415 milliseconds

1 2 3