Searched defs:Child (Results 1 - 25 of 51) sorted by relevance

123

/external/chromium_org/base/
H A Dtemplate_util_unittest.cc18 class Child : public Parent {}; class in namespace:base::__anon2505
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/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2073.js50 var Child,
52 Child = function() {}; class
53 Child.prototype = this;
54 child = new Child();
51 Child = function() {}; function
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dwrong_downcast_on_heap.cc9 class Child : public Parent { class in inherits:Parent
16 Child *c = (Child*)p; // Intentional error here!
H A Dwrong_downcast_on_stack.cc9 class Child : public Parent { class in inherits:Parent
16 Child *c = (Child*)&p; // Intentional error here!
/external/clang/test/Analysis/inlining/
H A Ddyn-dispatch-bifurcate.cpp28 class Child : public Parent { class in namespace:ReinterpretDisruptsDynamicTypeInfo
34 Child *b = reinterpret_cast<Child *>(a);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dclone_test.cc17 int Child(void *arg) { function
19 printf("Child: %p\n", x);
28 pid_t clone_pid = clone(Child, sp, CLONE_FILES | CLONE_VM, NULL);
H A Dswapcontext_test.cc34 void Child(int mode) { function
36 printf("Child: %p\n", x);
50 printf("Child stack: %p\n", child_stack);
58 makecontext(&child_context, (void (*)())Child, 1, mode);
/external/compiler-rt/test/lsan/TestCases/
H A Dswapcontext.cc14 void Child() { function
16 printf("Child: %p\n", &child_stack);
25 printf("Child stack: %p\n", child_stack);
32 makecontext(&child_context, Child, 0);
/external/libcxxabi/test/
H A Dinherited_exception.cpp38 struct Child : public Base, public Base2 { struct in inherits:Base,Base2
43 Child child;
51 Child child;
59 Child* child = new Child;
73 catch (const Child& c)
95 catch (const Child& b)
113 catch (const Child& b)
127 catch (const Child& c)
153 catch (const Child*
[all...]
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-methods.cpp68 class Child: public Base { }; class in inherits: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/clang/test/Analysis/
H A Dreinterpret-cast.cpp10 struct Child : public IntWrapper { struct in inherits:IntWrapper
15 Child *wrapper = reinterpret_cast<Child*>(data);
17 // We don't actually know if 'data' is a Child.
H A Dinline.cpp68 class Child : public Parent { class in namespace:PureVirtualParent
77 Child x;
100 class Child : public Parent { class in namespace:PR13569
108 Child() : m_child(0) {} function in class:PR13569::Child
114 Child x;
122 class Grandchild : public Child {};
148 class Child : virtual public Parent { class in namespace:PR13569_virtual
156 Child() : m_child(0) {} function in class:PR13569_virtual::Child
162 Child x;
170 class Grandchild : virtual public Child {};
418 struct Child : public Parent { struct in namespace:rdar12409977
[all...]
/external/llvm/include/llvm/ADT/
H A DSCCIterator.h55 StackElement(NodeType *Node, const ChildItTy &Child, unsigned Min) argument
56 : Node(Node), NextChild(Child), MinVisited(Min) {}
H A DTwine.h133 union Child union in class:llvm::Twine
152 Child LHS;
155 Child RHS;
179 explicit Twine(Child _LHS, NodeKind _LHSKind,
180 Child _RHS, NodeKind _RHSKind)
247 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const;
250 void printOneChildRepr(raw_ostream &OS, Child Ptr,
379 Child LHS, RHS;
486 Child NewLHS, NewRHS;
/external/llvm/include/llvm/Object/
H A DArchive.h50 class Child { class in class:llvm::object::Archive
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;
102 child_iterator() : child(Child(nullptr, nullptr)) {}
103 child_iterator(const Child &c) : child(c) {}
104 const Child* operator->() const {
/external/llvm/lib/DebugInfo/
H A DDWARFDebugInfoEntry.cpp269 const DWARFDebugInfoEntryMinimal *Child = getFirstChild(); local
270 while (Child) {
271 Child->collectChildrenAddressRanges(U, Ranges);
272 Child = Child->getSibling();
347 const DWARFDebugInfoEntryMinimal *Child = DIE->getFirstChild(); local
348 while (Child) {
349 if (Child->addressRangeContainsAddress(U, Address)) {
353 Child = Child
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp21 CPDF_Bookmark Child = tree.GetFirstChild(This); local
22 while (Child != NULL) {
24 CPDF_Bookmark Found = FindBookmark(tree, Child, title);
26 Child = tree.GetNextSibling(Child);
/external/clang/unittests/AST/
H A DCommentParser.cpp95 T *&Child) {
107 return ::testing::AssertionFailure() << "Child is NULL";
109 Child = dyn_cast<T>(CommentChild);
110 if (!Child)
112 << "Child is not of requested type, but a "
93 GetChildAt(const Comment *C, size_t Idx, T *&Child) argument
/external/llvm/lib/CodeGen/
H A DMachineCSE.cpp643 MachineDomTreeNode *Child = Children[i]; local
644 WorkList.push_back(Child);
/external/llvm/lib/Object/
H A DArchive.cpp82 Archive::Child::Child(const Archive *Parent, const char *Start) function in class:Archive::Child
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
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLoopSimplify.cpp699 DomTreeNode *Child = Children.front(); local
700 DT->changeImmediateDominator(Child, Node->getIDom());
/external/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp293 const Matcher *Child; local
296 Child = SOM->getCaseMatcher(i);
299 Child = cast<SwitchTypeMatcher>(N)->getCaseMatcher(i);
317 ChildSize = EmitMatcherList(Child, Indent+1, CurrentIdx+VBRSize+IdxSize,
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRedBlackTree.h139 enum Child { enum in class:GrRedBlackTree
358 Child pc = kLeft_Child; // suppress uninit warning
359 Child gpc = kLeft_Child;
500 Child c = d->fChildren[kLeft_Child] == n ? kLeft_Child :
532 Child c = d->fChildren[kRight_Child] == n ? kRight_Child :
595 Child c = hasLeft ? kLeft_Child : kRight_Child;
639 Child pc;
/external/clang/lib/Index/
H A DCommentToXML.cpp103 const Comment *Child = *I; local
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);
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp172 class Child: public Parent {}; class in inherits: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 2566 milliseconds

123