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

1 2 3 4 5

  /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/chromium_org/base/
template_util_unittest.cc 17 class Parent {};
18 class Child : public Parent {};
44 // (is_convertible < Child), (Parent > ::value)
47 COMPILE_ASSERT( (is_convertible<Child, Parent>::value), IsConvertible);
48 COMPILE_ASSERT(!(is_convertible<Parent, Child>::value), IsConvertible);
49 COMPILE_ASSERT(!(is_convertible<Parent, AStruct>::value), IsConvertible);
61 COMPILE_ASSERT(!(is_same<Child, Parent>::value), IsSame);
62 COMPILE_ASSERT(!(is_same<Parent, Child>::value), IsSame);
63 COMPILE_ASSERT( (is_same<Parent, Parent>::value), IsSame)
    [all...]
  /external/llvm/include/llvm/IR/
Argument.h 37 Function *Parent;
40 void setParent(Function *parent);
49 inline const Function *getParent() const { return Parent; }
50 inline Function *getParent() { return 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/chromium_org/chrome/test/webdriver/
frame_path.cc 44 FramePath FramePath::Parent() const {
  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 39 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition);
40 if (!Parent) {
42 Parent = Parents.getParent(Condition);
48 SourceLocation Loc = Parent->getLocStart();
50 << Parent->getStmtClassName() << "\n";
  /external/clang/test/Analysis/inlining/
dyn-dispatch-bifurcate.cpp 26 class Parent {};
28 class Child : public Parent {
33 void test(Parent *a) {
  /external/clang/tools/libclang/
IndexTypeSourceInfo.cpp 20 const NamedDecl *Parent;
24 TypeIndexer(IndexingContext &indexCtx, const NamedDecl *parent,
26 : IndexCtx(indexCtx), Parent(parent), ParentDC(DC) { }
32 Parent, ParentDC);
37 IndexCtx.indexNestedNameSpecifierLoc(NNS, Parent, ParentDC);
55 Parent, ParentDC);
61 Parent, ParentDC);
68 Parent, ParentDC);
78 Parent, ParentDC)
    [all...]
IndexBody.cpp 20 const NamedDecl *Parent;
26 const NamedDecl *Parent, const DeclContext *DC)
27 : IndexCtx(indexCtx), Parent(Parent), ParentDC(DC) { }
32 IndexCtx.indexTypeLoc(TL, Parent, ParentDC);
37 IndexCtx.indexNestedNameSpecifierLoc(NNS, Parent, ParentDC);
43 Parent, ParentDC, E);
49 Parent, ParentDC, E);
59 Parent, ParentDC, E);
66 Parent, ParentDC, E)
    [all...]
  /external/lzma/CPP/Common/
Wildcard.h 30 CCensorNode *Parent;
35 CCensorNode(): Parent(0) { };
36 CCensorNode(const UString &name, CCensorNode *parent): Name(name), Parent(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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 40 * parent and child index is very difficult and cumbersome. Better to
59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */
60 CommonTree parent; field in class:Antlr.Runtime.Tree.CommonTree
124 public override ITree Parent {
126 return parent;
129 parent = (CommonTree)value;
ITree.cs 58 // Tree tracks parent and child index now > 3.0
60 ITree Parent {
73 * list is the root and the last is the parent of this node.
84 /** <summary>Set the parent and child index values for all children</summary> */
BaseTree.cs 85 /** <summary>BaseTree doesn't track parent pointers.</summary> */
86 public virtual ITree Parent {
192 c.Parent = this;
208 t.Parent = this;
237 t.Parent = this;
310 child.Parent = this;
346 /** <summary>Set the parent and child index values for all child of t</summary> */
356 child.Parent = this;
364 public virtual void SanityCheckParentAndChildIndexes(ITree parent, int i) {
365 if (parent != this.Parent)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 40 * parent and child index is very difficult and cumbersome. Better to
59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */
60 CommonTree parent; field in class:Antlr.Runtime.Tree.CommonTree
149 public override ITree Parent
153 return parent;
158 parent = (CommonTree)value;
ITree.cs 61 // Tree tracks parent and child index now > 3.0
63 ITree Parent
77 * list is the root and the last is the parent of this node.
89 /** <summary>Set the parent and child index values for all children</summary> */
BaseTree.cs 99 /** <summary>BaseTree doesn't track parent pointers.</summary> */
100 public virtual ITree Parent
230 c.Parent = this;
251 t.Parent = this;
285 t.Parent = this;
369 child.Parent = this;
414 /** <summary>Set the parent and child index values for all child of t</summary> */
427 child.Parent = this;
436 public virtual void SanityCheckParentAndChildIndexes( ITree parent, int i )
438 if ( parent != this.Parent
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.cc 72 Path Path::Parent() const {
  /external/chromium_org/printing/
emf_win_unittest.cc 31 typedef testing::Test Parent;
  /external/llvm/include/llvm/MC/
MCFunction.h 37 MCFunction *Parent;
39 MCBasicBlock(const MCTextAtom &Insts, MCFunction *Parent);
54 const MCFunction *getParent() const { return Parent; }
55 MCFunction *getParent() { return Parent; }
  /external/llvm/include/llvm/Object/
MachOUniversal.h 34 const MachOUniversalBinary *Parent;
41 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
44 Parent = 0;
49 return (Parent == Other.Parent) && (Index == Other.Index);
52 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 81 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!");
88 // if either group is 0, then that must become the parent
89 unsigned Parent = (Group1 == 0) ? Group1 : Group2;
90 unsigned Other = (Parent == Group1) ? Group2 : Group1;
91 GroupNodes.at(Other) = Parent;
92 return Parent;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mutants.py 166 def __init__(self, parent):
167 self.__dict__['parent'] = parent
169 self.parent.a = 1
170 self.parent.b = 1
171 self.parent.c = 1
172 self.parent.d = 1
173 self.parent.e = 1
174 self.parent.f = 1
175 self.parent.g =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mutants.py 166 def __init__(self, parent):
167 self.__dict__['parent'] = parent
169 self.parent.a = 1
170 self.parent.b = 1
171 self.parent.c = 1
172 self.parent.d = 1
173 self.parent.e = 1
174 self.parent.f = 1
175 self.parent.g =
    [all...]

Completed in 788 milliseconds

1 2 3 4 5