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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/asan/TestCases/Windows/
wrong_downcast_on_stack.cc 4 class Parent {
9 class Child : public Parent {
15 Parent p;
wrong_downcast_on_heap.cc 4 class Parent {
9 class Child : public Parent {
15 Parent *p = new Parent;
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/b/
B.java 19 import com.android.stubs.Parent;
23 Parent method(Parent p) {
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/a/
A.java 19 import com.android.stubs.Parent;
21 public abstract class A extends Parent implements Parent.Interface, SomeInterface {
26 public A varargs(Parent... args) {
  /external/llvm/test/tools/dsymutil/X86/
submodules.m 3 module Parent {
30 // CHECK-NEXT: DW_AT_name{{.*}}"Parent"
44 // CHECK-NEXT: DW_AT_name{{.*}}"Parent"
49 @import Parent.Child;
50 @import Parent.Empty;
  /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() {
InterfaceEnum.java 19 public enum InterfaceEnum implements Parent.Interface {
  /external/clang/test/SemaCXX/
warn-weak-vtables.cpp 34 class Parent {
36 Parent() {}
37 virtual ~Parent();
41 class Derived : public Parent {
52 Parent::~Parent() {}
  /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/
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...]
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...]
CursorVisitor.h 37 CXCursor parent; member in class:clang::cxcursor::VisitorJob
41 : parent(C), K(k) {
48 const CXCursor &getParent() const { return parent; }
68 /// \brief The parent cursor whose children we are traversing.
69 CXCursor Parent;
71 /// \brief The declaration that serves at the parent of any statement or
122 CXCursor &Parent;
127 SetParentRAII(CXCursor &Parent, const Decl *&StmtParent,
129 : Parent(Parent), StmtParent(StmtParent), OldParent(Parent
    [all...]
  /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;
InterfaceEnum.java 3 implements com.android.stubs.Parent.Interface
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/a/
A.java 3 extends com.android.stubs.Parent
4 implements com.android.stubs.Parent.Interface, com.android.stubs.a.SomeInterface
11 public com.android.stubs.a.A varargs(com.android.stubs.Parent[]... args) { throw new RuntimeException("Stub!"); }
  /external/llvm/include/llvm/ADT/
EpochTracker.h 69 /// HandleBase does not track the parent data structure by itself. It expects
80 explicit HandleBase(const DebugEpochBase *Parent)
81 : EpochAddress(&Parent->Epoch), EpochAtCreation(Parent->Epoch) {}
  /external/v8/test/mjsunit/regress/
regress-crbug-513602.js 5 function Parent() {}
8 Child.prototype = new Parent();
18 // Trigger a fast->slow->fast dance of Parent.prototype's map...
19 Parent.prototype.__defineSetter__("foo", function() { print("A"); });
20 Parent.prototype.__defineSetter__("foo", function() { print("B"); });
  /external/libchrome/base/
template_util_unittest.cc 16 class Parent {};
17 class Child : public Parent {};
44 // (is_convertible < Child), (Parent > ::value)
47 static_assert((is_convertible<Child, Parent>::value), "IsConvertible");
48 static_assert(!(is_convertible<Parent, Child>::value), "IsConvertible");
49 static_assert(!(is_convertible<Parent, AStruct>::value), "IsConvertible");
61 static_assert(!(is_same<Child, Parent>::value), "IsSame");
62 static_assert(!(is_same<Parent, Child>::value), "IsSame");
63 static_assert((is_same<Parent, Parent>::value), "IsSame")
    [all...]
  /external/libweave/third_party/chromium/base/
template_util_unittest.cc 17 class Parent {};
18 class Child : public Parent {};
52 // (is_convertible < Child), (Parent > ::value)
55 static_assert((is_convertible<Child, Parent>::value), "IsConvertible");
56 static_assert(!(is_convertible<Parent, Child>::value), "IsConvertible");
57 static_assert(!(is_convertible<Parent, AStruct>::value), "IsConvertible");
69 static_assert(!(is_same<Child, Parent>::value), "IsSame");
70 static_assert(!(is_same<Parent, Child>::value), "IsSame");
71 static_assert((is_same<Parent, Parent>::value), "IsSame")
    [all...]
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 50 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
54 if (Parent)
55 Parent->addChild(this);
59 LexicalScope *getParent() const { return Parent; }
75 if (Parent)
76 Parent->openInsnRange(MI);
84 if (Parent)
85 Parent->extendInsnRange(MI);
96 // If Parent dominates NewScope then do not close Parent's instructio
    [all...]
  /external/llvm/include/llvm/IR/
Argument.h 36 Function *Parent;
39 void setParent(Function *parent);
48 inline const Function *getParent() const { return Parent; }
49 inline Function *getParent() { return Parent; }
  /external/llvm/lib/Object/
MachOUniversal.cpp 54 const MachOUniversalBinary *Parent, uint32_t Index)
55 : Parent(Parent), Index(Index) {
56 if (!Parent || Index >= Parent->getNumberOfObjects()) {
60 StringRef ParentData = Parent->getData();
72 if (!Parent)
75 StringRef ParentData = Parent->getData();
77 StringRef ObjectName = Parent->getFileName();
84 if (!Parent)
    [all...]
  /external/llvm/include/llvm/Object/
MachOUniversal.h 35 const MachOUniversalBinary *Parent;
42 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
45 Parent = nullptr;
50 return (Parent == Other.Parent) && (Index == Other.Index);
53 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
Archive.h 56 const Archive *Parent;
69 Child(const Archive *Parent, const char *Start, std::error_code *EC);
70 Child(const Archive *Parent, StringRef Data, uint16_t StartOfFile);
73 assert(Parent == other.Parent);
77 const Archive *getParent() const { return Parent; }
139 const Archive *Parent;
145 return (Parent == other.Parent) && (SymbolIndex == other.SymbolIndex);
149 : Parent(p
    [all...]
  /external/clang/test/Analysis/
inline.cpp 60 class Parent {
68 class Child : public Parent {
86 class Parent {
91 Parent() : m_parent(0) {}
100 class Child : public Parent {
134 class Parent {
139 Parent() : m_parent(0) {}
148 class Child : virtual public Parent {
349 struct Parent {
354 struct A : Parent {
    [all...]

Completed in 2990 milliseconds

1 2 3 4 5 6 7 8 91011>>