Searched refs:Child (Results 1 - 25 of 90) sorted by relevance

1234

/external/compiler-rt/test/asan/TestCases/Windows/
H A Dwrong_downcast_on_stack.cc9 class Child : public Parent { class in inherits:Parent
16 Child *c = (Child*)&p; // Intentional error here!
H A Dwrong_downcast_on_heap.cc9 class Child : public Parent { class in inherits:Parent
16 Child *c = (Child*)p; // Intentional error here!
/external/valgrind/none/tests/
H A Dmmap_fcntl_bug.stderr.exp0 Child exited with zero (TEST PASSED).
/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/libcxxabi/test/
H A Dinherited_exception.pass.cpp38 struct Child : public Base, public Base2 { struct in inherits:Base,Base2
43 Child child;
51 Child child;
59 static Child 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* b)
/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"
81 // Make sure that the Base destructor call in the Child denstructor uses
83 // CHECK: define linkonce_odr x86_thiscallcc void @"\01??1Child@@QAE@XZ"
/external/llvm/include/llvm/DebugInfo/PDB/
H A DConcreteSymbolEnumerator.h32 std::unique_ptr<PDBSymbol> Child = Enumerator->getChildAtIndex(Index); variable
33 return make_concrete_child(std::move(Child));
37 std::unique_ptr<PDBSymbol> Child = Enumerator->getNext(); variable
38 return make_concrete_child(std::move(Child));
50 make_concrete_child(std::unique_ptr<PDBSymbol> Child) const {
51 ChildType *ConcreteChild = dyn_cast_or_null<ChildType>(Child.release());
/external/compiler-rt/test/lsan/TestCases/
H A Dswapcontext.cc19 void Child() { function
21 printf("Child: %p\n", &child_stack);
30 printf("Child stack: %p\n", child_stack);
37 makecontext(&child_context, Child, 0);
/external/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/llvm/include/llvm/Object/
H A DArchive.h54 class Child { class in class:llvm::object::Archive
66 Child(const Archive *Parent, const char *Start);
68 bool operator ==(const Child &other) const {
73 bool operator <(const Child &other) const {
77 Child getNext() const;
109 Child child;
112 child_iterator() : child(Child(nullptr, nullptr)) {}
113 child_iterator(const Child &c) : child(c) {}
114 const Child *operator->() const { return &child; }
115 const Child
[all...]
/external/clang/test/Analysis/
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...]
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.
/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/llvm/tools/dsymutil/
H A DBinaryHolder.cpp64 for (const auto &Child : CurrentArchive->children()) {
65 if (auto NameOrErr = Child.getName())
69 return Child.getMemoryBufferRef();
/external/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolFunc.cpp39 while (auto Child = DataChildren->getNext()) {
40 if (Child->getDataKind() == PDB_DataKind::Param) {
41 std::string Name = Child->getName();
44 Args.push_back(std::move(Child));
H A DPDBSymbol.cpp146 while (auto Child = Result->getNext()) {
147 ++Stats[Child->getSymTag()];
/external/llvm/lib/Object/
H A DArchive.cpp84 Archive::Child::Child(const Archive *Parent, const char *Start) function in class:Archive::Child
108 uint64_t Archive::Child::getSize() const {
114 uint64_t Archive::Child::getRawSize() const {
118 Archive::Child Archive::Child::getNext() const {
128 return Child(Parent, nullptr);
130 return Child(Parent, NextLoc);
133 uint64_t Archive::Child::getChildOffset() const {
140 ErrorOr<StringRef> Archive::Child
[all...]
/external/llvm/tools/llvm-pdbdump/
H A DClassDefinitionDumper.cpp79 while (auto Child = Children->getNext()) {
80 PDB_MemberAccess Access = Child->getRawSymbol().getAccess();
81 if (isa<PDBSymbolTypeBaseClass>(*Child))
86 if (auto Func = dyn_cast<PDBSymbolFunc>(Child.get())) {
92 Child.release();
94 } else if (auto Data = dyn_cast<PDBSymbolData>(Child.get())) {
95 Child.release();
98 AccessGroup.Unknown.push_back(std::move(Child));
/external/llvm/include/llvm/ADT/
H A DTwine.h134 union Child union in class:llvm::Twine
154 Child LHS;
157 Child RHS;
179 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind)
246 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const;
249 void printOneChildRepr(raw_ostream &OS, Child Ptr,
387 Child LHS, RHS;
500 Child NewLHS, NewRHS;
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.cpp359 const DWARFDebugInfoEntryMinimal *Child = getFirstChild();
360 while (Child) {
361 Child->collectChildrenAddressRanges(U, Ranges);
362 Child = Child->getSibling();
446 const DWARFDebugInfoEntryMinimal *Child = DIE->getFirstChild();
447 while (Child) {
448 if (Child->addressRangeContainsAddress(U, Address)) {
452 Child = Child
[all...]
/external/clang/lib/Index/
H A DCommentToXML.cpp102 const Comment *Child = *I; local
103 if (!Child)
105 switch (Child->getCommentKind()) {
110 const ParagraphComment *PC = cast<ParagraphComment>(Child);
121 const BlockCommandComment *BCC = cast<BlockCommandComment>(Child);
144 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child);
156 const TParamCommandComment *TPCC = cast<TParamCommandComment>(Child);
168 MiscBlocks.push_back(cast<BlockCommandComment>(Child));
172 const VerbatimLineComment *VLC = cast<VerbatimLineComment>(Child);
/external/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp35 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/clang/lib/Format/
H A DTokenAnnotator.h62 for (const auto& Child : Node.Children) {
63 Children.push_back(new AnnotatedLine(Child));
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp112 for (auto &Child : Children)
113 Offset = computeSizeAndOffset(*Child, Offset);

Completed in 4252 milliseconds

1234