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

1 2 3 4

  /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/compiler-rt/test/asan/TestCases/Windows/
wrong_downcast_on_heap.cc 4 class Parent {
9 class Child : public Parent {
15 Parent *p = new Parent;
wrong_downcast_on_stack.cc 4 class Parent {
9 class Child : public Parent {
15 Parent p;
  /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 35 class Parent {
37 Parent() {}
38 virtual ~Parent();
42 class Derived : public Parent {
53 Parent::~Parent() {}
55 void uses(Parent &p, Derived &d, VeryDerived &vd) {
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfPageTreeNodeDictionary_autogen.cpp 23 SkPdfDictionary* SkPdfPageTreeNodeDictionary::Parent(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Parent", "");
32 return get("Parent", "") != NULL;
SkPdfPopUpAnnotationDictionary_autogen.cpp 35 SkPdfDictionary* SkPdfPopUpAnnotationDictionary::Parent(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Parent", "");
44 return get("Parent", "") != NULL;
SkPdfFieldDictionary_autogen.cpp 23 SkPdfDictionary* SkPdfFieldDictionary::Parent(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Parent", "");
32 return get("Parent", "") != NULL;
  /external/clang/lib/Sema/
Scope.cpp 21 void Scope::Init(Scope *parent, unsigned flags) {
22 AnyParent = parent;
25 if (parent && !(flags & FnScope)) {
26 BreakParent = parent->BreakParent;
27 ContinueParent = parent->ContinueParent;
34 if (parent) {
35 Depth = parent->Depth + 1;
36 PrototypeDepth = parent->PrototypeDepth;
38 FnParent = parent->FnParent;
39 BlockParent = parent->BlockParent
    [all...]
  /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> */
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.cc 77 Path Path::Parent() const {
  /external/chromium_org/printing/
emf_win_unittest.cc 33 typedef testing::Test Parent;
  /external/llvm/include/llvm/Object/
MachOUniversal.h 36 const MachOUniversalBinary *Parent;
43 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
46 Parent = nullptr;
51 return (Parent == Other.Parent) && (Index == Other.Index);
54 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /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...]

Completed in 603 milliseconds

1 2 3 4