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

1 2 3 4

  /external/compiler-rt/test/asan/TestCases/Windows/
wrong_downcast_on_stack.cc 9 class Child : public Parent {
16 Child *c = (Child*)&p; // Intentional error here!
wrong_downcast_on_heap.cc 9 class Child : public Parent {
16 Child *c = (Child*)p; // Intentional error here!
  /external/libcxxabi/test/
inherited_exception.cpp 38 struct Child : public Base, public Base2 {
43 Child child; local
44 child.b1 = 10;
45 child.b2 = 11;
46 child.c = 12;
47 throw child;
51 Child child; local
52 child.b1 = 10
59 Child* child = new Child; local
    [all...]
  /external/clang/test/Analysis/inlining/
dyn-dispatch-bifurcate.cpp 28 class Child : public Parent {
34 Child *b = reinterpret_cast<Child *>(a);
  /external/clang/test/CodeGenCXX/
microsoft-abi-methods.cpp 68 class Child: public Base { };
71 Child c;
72 // Make sure that the Base constructor call in the Child constructor uses
74 // CHECK: define linkonce_odr x86_thiscallcc %class.Child* @"\01??0Child@@QAE@XZ"
78 // Make sure that the Base destructor call in the Child denstructor uses
80 // CHECK: define linkonce_odr x86_thiscallcc void @"\01??1Child@@QAE@XZ"
  /external/chromium_org/mojo/examples/surfaces_app/
child_app.cc 16 class ChildApp : public ApplicationDelegate, public InterfaceFactory<Child> {
33 // InterfaceFactory<Child> implementation.
35 InterfaceRequest<Child> request) OVERRIDE {
child_gl_app.cc 18 class ChildGLApp : public ApplicationDelegate, public InterfaceFactory<Child> {
37 // InterfaceFactory<Child> implementation.
39 InterfaceRequest<Child> request) OVERRIDE {
child_gl_impl.h 15 #include "mojo/examples/surfaces_app/child.mojom.h"
34 // Simple example of a child app using surfaces + GL.
35 class ChildGLImpl : public InterfaceImpl<Child>, public SurfaceClient {
45 // Child implementation.
child_impl.h 12 #include "mojo/examples/surfaces_app/child.mojom.h"
34 // Simple example of a child app using surfaces.
35 class ChildImpl : public InterfaceImpl<Child>, public SurfaceClient {
50 // Child implementation.
  /external/compiler-rt/test/lsan/TestCases/
swapcontext.cc 14 void Child() {
16 printf("Child: %p\n", &child_stack);
25 printf("Child stack: %p\n", child_stack);
32 makecontext(&child_context, Child, 0);
  /external/llvm/include/llvm/Object/
Archive.h 50 class Child {
62 Child(const Archive *Parent, const char *Start);
64 bool operator ==(const Child &other) const {
69 bool operator <(const Child &other) const {
73 Child getNext() const;
100 Child child; member in class:llvm::object::Archive::child_iterator
102 child_iterator() : child(Child(nullptr, nullptr)) {}
103 child_iterator(const Child &c) : child(c) {
    [all...]
  /external/clang/test/Analysis/
inline.cpp 68 class Child : public Parent {
77 Child x;
100 class Child : public Parent {
108 Child() : m_child(0) {}
114 Child x;
122 class Grandchild : public Child {};
148 class Child : virtual public Parent {
156 Child() : m_child(0) {}
162 Child x;
170 class Grandchild : virtual public Child {};
    [all...]
reinterpret-cast.cpp 10 struct Child : public IntWrapper {
15 Child *wrapper = reinterpret_cast<Child*>(data);
17 // We don't actually know if 'data' is a Child.
  /external/compiler-rt/test/asan/TestCases/Linux/
clone_test.cc 17 int Child(void *arg) {
19 printf("Child: %p\n", x);
28 pid_t clone_pid = clone(Child, sp, CLONE_FILES | CLONE_VM, NULL);
36 // Make sure the child stack was indeed unpoisoned.
swapcontext_test.cc 34 void Child(int mode) {
36 printf("Child: %p\n", x);
50 printf("Child stack: %p\n", child_stack);
51 // Setup child context.
58 makecontext(&child_context, (void (*)())Child, 1, mode);
  /external/chromium_org/base/
template_util_unittest.cc 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);
61 COMPILE_ASSERT(!(is_same<Child, Parent>::value), IsSame);
62 COMPILE_ASSERT(!(is_same<Parent, Child>::value), IsSame);
  /external/llvm/include/llvm/ADT/
Twine.h 65 /// - If a Twine has another Twine as a child, that child should always be
133 union Child
152 Child LHS;
155 Child RHS;
179 explicit Twine(Child _LHS, NodeKind _LHSKind,
180 Child _RHS, NodeKind _RHSKind)
229 // A twine child should always be binary.
246 /// printOneChild - Print one child from a twine.
247 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 82 Archive::Child::Child(const Archive *Parent, const char *Start)
103 Archive::Child Archive::Child::getNext() const {
113 return Child(Parent, nullptr);
115 return Child(Parent, NextLoc);
118 ErrorOr<StringRef> Archive::Child::getName() const {
163 Archive::Child::getMemoryBuffer(bool FullPath) const {
179 Archive::Child::getAsBinary(LLVMContext *Context) const {
322 Child c(this, Loc)
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 48 const DWARFDebugInfoEntryMinimal *child = getFirstChild(); local
49 if (recurseDepth > 0 && child) {
50 while (child) {
51 child->dump(OS, u, recurseDepth-1, indent+2);
52 child = child->getSibling();
269 const DWARFDebugInfoEntryMinimal *Child = getFirstChild();
270 while (Child) {
271 Child->collectChildrenAddressRanges(U, Ranges);
272 Child = Child->getSibling()
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
easy_xml_test.py 48 ['Child']
58 ' <Child/>\n'
  /external/clang/lib/Index/
CommentToXML.cpp 103 const Comment *Child = *I;
104 if (!Child)
106 switch (Child->getCommentKind()) {
111 const ParagraphComment *PC = cast<ParagraphComment>(Child);
122 const BlockCommandComment *BCC = cast<BlockCommandComment>(Child);
145 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child);
157 const TParamCommandComment *TPCC = cast<TParamCommandComment>(Child);
169 MiscBlocks.push_back(cast<BlockCommandComment>(Child));
173 const VerbatimLineComment *VLC = cast<VerbatimLineComment>(Child);
186 llvm_unreachable("AST node of this kind can't be a child of
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 35 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
36 ContractNodes(Child, CGP);
37 Scope->resetChild(i, Child.release());
200 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
201 SinkPatternPredicates(Child);
202 Scope->resetChild(i, Child.release());
273 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
274 FactorNodes(Child);
276 if (Matcher *N = Child.release())
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2073.js 50 var Child,
51 child;
52 Child = function() {};
53 Child.prototype = this;
54 child = new Child();
55 child.id = nextid();
56 child.parent = this;
57 child.left = this.last;
58 child.right = null
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.cpp 120 for (auto &Child : Children)
121 Offset = computeSizeAndOffset(*Child, Offset);
  /external/clang/test/SemaCXX/
typo-correction.cpp 172 class Child: public Parent {};
173 void Child::add_types(int value) {} // expected-error{{out-of-line definition of 'add_types' does not match any declaration in 'Child'}}

Completed in 2091 milliseconds

1 2 3 4