/external/libcxxabi/test/ |
D | inherited_exception.cpp | 38 struct Child : public Base, public Base2 { struct 43 Child child; in f1() argument 51 Child child; in f2() 59 Child* child = new Child; in f3() 73 catch (const Child& c) in main() 95 catch (const Child& b) in main() 113 catch (const Child& b) in main() 127 catch (const Child& c) in main() 153 catch (const Child* b) in main()
|
/external/clang/test/Analysis/ |
D | inline.cpp | 68 class Child : public Parent { class 77 Child x; in testVirtual() 100 class Child : public Parent { class 108 Child() : m_child(0) {} in Child() function in PR13569::Child 114 Child x; in testVirtual() 122 class Grandchild : public Child {}; 148 class Child : virtual public Parent { class 156 Child() : m_child(0) {} in Child() function in PR13569_virtual::Child 162 Child x; in testVirtual() 170 class Grandchild : virtual public Child {}; [all …]
|
D | reinterpret-cast.cpp | 10 struct Child : public IntWrapper { struct 15 Child *wrapper = reinterpret_cast<Child*>(data); in test() argument
|
/external/llvm/include/llvm/Object/ |
D | 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; 102 child_iterator() : child(Child(nullptr, nullptr)) {} in child_iterator() 103 child_iterator(const Child &c) : child(c) {} in child_iterator() 104 const Child* operator->() const {
|
/external/llvm/lib/DebugInfo/ |
D | DWARFDebugInfoEntry.cpp | 269 const DWARFDebugInfoEntryMinimal *Child = getFirstChild(); in collectChildrenAddressRanges() local 270 while (Child) { in collectChildrenAddressRanges() 271 Child->collectChildrenAddressRanges(U, Ranges); in collectChildrenAddressRanges() 272 Child = Child->getSibling(); in collectChildrenAddressRanges() 347 const DWARFDebugInfoEntryMinimal *Child = DIE->getFirstChild(); in getInlinedChainForAddress() local 348 while (Child) { in getInlinedChainForAddress() 349 if (Child->addressRangeContainsAddress(U, Address)) { in getInlinedChainForAddress() 353 Child = Child->getSibling(); in getInlinedChainForAddress() 355 DIE = Child; in getInlinedChainForAddress()
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
D | wrong_downcast_on_stack.cc | 9 class Child : public Parent { class 16 Child *c = (Child*)&p; // Intentional error here! in main()
|
D | wrong_downcast_on_heap.cc | 9 class Child : public Parent { class 16 Child *c = (Child*)p; // Intentional error here! in main()
|
/external/llvm/include/llvm/ADT/ |
D | Twine.h | 133 union Child union 152 Child LHS; 155 Child RHS; 179 explicit Twine(Child _LHS, NodeKind _LHSKind, in Twine() 180 Child _RHS, NodeKind _RHSKind) in Twine() 247 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const; 250 void printOneChildRepr(raw_ostream &OS, Child Ptr, 379 Child LHS, RHS; in utohexstr() 486 Child NewLHS, NewRHS; in concat()
|
/external/chromium_org/v8/test/mjsunit/regress/ |
D | regress-2073.js | 50 var Child, variable in Scope 52 Child = function() {}; class in Scope 53 Child.prototype = this; class 54 child = new Child();
|
/external/clang/test/Analysis/inlining/ |
D | dyn-dispatch-bifurcate.cpp | 28 class Child : public Parent { class 34 Child *b = reinterpret_cast<Child *>(a); in test()
|
/external/llvm/lib/Object/ |
D | Archive.cpp | 82 Archive::Child::Child(const Archive *Parent, const char *Start) in Child() function in Archive::Child 103 Archive::Child Archive::Child::getNext() const { in getNext() 113 return Child(Parent, nullptr); in getNext() 115 return Child(Parent, NextLoc); in getNext() 118 ErrorOr<StringRef> Archive::Child::getName() const { in getName() 163 Archive::Child::getMemoryBuffer(bool FullPath) const { in getMemoryBuffer() 179 Archive::Child::getAsBinary(LLVMContext *Context) const { in getAsBinary() 322 Child c(this, Loc); in child_begin() 327 return Child(this, nullptr); in child_end() 381 child_iterator Iter(Child(Parent, Loc)); in getMember()
|
/external/chromium_org/base/ |
D | template_util_unittest.cc | 18 class Child : public Parent {}; class 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);
|
D | callback_unittest.nc | 12 class Child : Parent { 27 …sion from 'base::Callback<base::Parent\(\)>' to non-scalar type 'base::Callback<base::Child\(\)>'"] 35 Callback<Child(void)> cb_b = cb_a; 44 Callback<Child(void)> cb_b;
|
/external/chromium_org/base/memory/ |
D | scoped_ptr_unittest.nc | 14 class Child : public Parent { 24 scoped_ptr<Child> DowncastUsingPassAs(scoped_ptr<Parent> object) { 25 return object.PassAs<Child>(); 80 scoped_ptr<Parent[]> x(new Child[1]); 94 x.reset(new Child[1]);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/tree/ |
D | ANTLRCommonTreeTest.m | 170 // Child tree 188 …STAssertEquals((NSInteger)[[parent getChild:0] getChildIndex], (NSInteger)0, @"Child index should … 200 // Child tree 250 // Child tree 264 STAssertEquals([newParent getChild:0], tree, @"Child was not the correct object."); 276 // Child tree 287 STAssertNotNil(child, @"Child at index 0 should not be nil"); 288 STAssertEquals(child, tree, @"Child and Original tree were not the same"); 297 // Child tree 312 STAssertNotNil(child, @"Child at index 0 should not be nil"); [all …]
|
/external/llvm/utils/TableGen/ |
D | DAGISelMatcherOpt.cpp | 35 std::unique_ptr<Matcher> Child(Scope->takeChild(i)); in ContractNodes() local 36 ContractNodes(Child, CGP); in ContractNodes() 37 Scope->resetChild(i, Child.release()); in ContractNodes() 200 std::unique_ptr<Matcher> Child(Scope->takeChild(i)); in SinkPatternPredicates() local 201 SinkPatternPredicates(Child); in SinkPatternPredicates() 202 Scope->resetChild(i, Child.release()); in SinkPatternPredicates() 273 std::unique_ptr<Matcher> Child(Scope->takeChild(i)); in FactorNodes() local 274 FactorNodes(Child); in FactorNodes() 276 if (Matcher *N = Child.release()) in FactorNodes()
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-methods.cpp | 68 class Child: public Base { }; class 71 Child c; in constructors()
|
/external/tinyxml/ |
D | xmltest.cpp | 522 …ChildElement( "document" ).FirstChildElement( (const char*) russianElementName ).Child( 0 ).Text(); in main() 530 TiXmlDeclaration* dec = docH.Child( 0 ).Node()->ToDeclaration(); in main() 879 TiXmlUnknown* unknown = docH.Child( 1 ).Unknown(); in main() 882 TiXmlNode* node = docH.Child( 2 ).Node(); in main() 898 TiXmlComment* comment = docH.Child( 0 ).Node()->ToComment(); in main() 921 text = docH.FirstChildElement( "element" ).Child( 0 ).Text(); in main() 926 text = docH.FirstChildElement( "element" ).Child( 0 ).Text(); in main() 931 text = docH.FirstChildElement( "element" ).Child( 0 ).Text(); in main() 937 text = docH.FirstChildElement( "element" ).Child( 0 ).Text(); in main() 942 text = docH.FirstChildElement( "element" ).Child( 0 ).Text(); in main() [all …]
|
/external/compiler-rt/test/lsan/TestCases/ |
D | swapcontext.cc | 14 void Child() { in Child() function 32 makecontext(&child_context, Child, 0); in main()
|
/external/chromium_org/mojo/examples/surfaces_app/ |
D | child_app.cc | 16 class ChildApp : public ApplicationDelegate, public InterfaceFactory<Child> { 35 InterfaceRequest<Child> request) OVERRIDE { in Create()
|
D | child_gl_app.cc | 18 class ChildGLApp : public ApplicationDelegate, public InterfaceFactory<Child> { 39 InterfaceRequest<Child> request) OVERRIDE { in Create()
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | clone_test.cc | 17 int Child(void *arg) { in Child() function 28 pid_t clone_pid = clone(Child, sp, CLONE_FILES | CLONE_VM, NULL); in main()
|
D | swapcontext_test.cc | 34 void Child(int mode) { in Child() function 58 makecontext(&child_context, (void (*)())Child, 1, mode); in Run()
|
/external/clang/test/SemaObjC/ |
D | undef-class-messagin-error.m | 7 @interface Child (Categ) // expected-error {{cannot find interface declaration for 'Child'; did you… interface in Categ
|
/external/pdfium/fpdfsdk/src/ |
D | fpdfdoc.cpp | 21 CPDF_Bookmark Child = tree.GetFirstChild(This); in FindBookmark() local 22 while (Child != NULL) { in FindBookmark() 24 CPDF_Bookmark Found = FindBookmark(tree, Child, title); in FindBookmark() 26 Child = tree.GetNextSibling(Child); in FindBookmark()
|