/external/llvm/include/llvm/Object/ |
D | Archive.h | 27 class Child { 32 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {} in Child() function 34 bool operator ==(const Child &other) const { 38 bool operator <(const Child &other) const { 42 Child getNext() const; 56 Child child; 58 child_iterator() : child(Child(0, StringRef())) {} in child_iterator() 59 child_iterator(const Child &c) : child(c) {} in child_iterator() 60 const Child* operator->() const {
|
/external/clang/test/Analysis/ |
D | inline.cpp | 67 class Child : public Parent { class 76 Child x; in testVirtual() 99 class Child : public Parent { class 107 Child() : m_child(0) {} in Child() function in PR13569::Child 113 Child x; in testVirtual() 121 class Grandchild : public Child {}; 147 class Child : virtual public Parent { class 155 Child() : m_child(0) {} in Child() function in PR13569_virtual::Child 161 Child x; in testVirtual() 169 class Grandchild : virtual public Child {};
|
D | reinterpret-cast.cpp | 10 struct Child : public IntWrapper { struct 15 Child *wrapper = reinterpret_cast<Child*>(data); in test() argument
|
/external/clang/test/CodeGenObjC/ |
D | category-super-class-meth.m | 7 @interface Child: BASE interface 10 @interface Child (Categ) interface in Categ 14 @implementation Child @end implementation 16 @implementation Child (Categ) implementation in Categ
|
/external/llvm/lib/Object/ |
D | Archive.cpp | 79 Archive::Child Archive::Child::getNext() const { in getNext() 90 return Child(Parent, StringRef(0, 0)); in getNext() 95 return Child(Parent, StringRef(NextLoc, NextSize)); in getNext() 98 error_code Archive::Child::getName(StringRef &Result) const { in getName() 141 uint64_t Archive::Child::getSize() const { in getSize() 153 MemoryBuffer *Archive::Child::getBuffer() const { in getBuffer() 167 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const { in getAsBinary() 206 Child c(this, StringRef(Loc, Size)); in begin_children() 214 return Child(this, StringRef(0, 0)); in end_children() 240 Result = Child(Parent, StringRef(Loc, Size)); in getMember()
|
/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() 243 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const; 246 void printOneChildRepr(raw_ostream &OS, Child Ptr, 375 Child LHS, RHS; in utohexstr() 482 Child NewLHS, NewRHS; in concat()
|
/external/skia/src/gpu/ |
D | GrTLList.h | 47 GrTDLList<Child> fList; 50 class Child : public GrTLList::Entry<Child> {
|
/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/chromium/base/ |
D | template_util_unittest.cc | 16 class Child : public Parent {}; class 47 EXPECT_TRUE( (is_convertible<Child, Parent>::value) ); in TEST() 48 EXPECT_FALSE( (is_convertible<Parent, Child>::value) ); in TEST()
|
/external/llvm/utils/TableGen/ |
D | DAGISelMatcherOpt.cpp | 34 OwningPtr<Matcher> Child(Scope->takeChild(i)); in ContractNodes() local 35 ContractNodes(Child, CGP); in ContractNodes() 36 Scope->resetChild(i, Child.take()); in ContractNodes() 192 OwningPtr<Matcher> Child(Scope->takeChild(i)); in SinkPatternPredicates() local 193 SinkPatternPredicates(Child); in SinkPatternPredicates() 194 Scope->resetChild(i, Child.take()); in SinkPatternPredicates() 265 OwningPtr<Matcher> Child(Scope->takeChild(i)); in FactorNodes() local 266 FactorNodes(Child); in FactorNodes() 268 if (Matcher *N = Child.take()) in FactorNodes()
|
D | CodeGenDAGPatterns.cpp | 717 TreePatternNode *Child = P->getChild(i); in getPatternSize() local 718 if (!Child->isLeaf() && Child->getNumTypes() && in getPatternSize() 719 Child->getType(0) != MVT::Other) in getPatternSize() 720 Size += getPatternSize(Child, CGP); in getPatternSize() 721 else if (Child->isLeaf()) { in getPatternSize() 722 if (dynamic_cast<IntInit*>(Child->getLeafValue())) in getPatternSize() 724 else if (Child->getComplexPatternInfo(CGP)) in getPatternSize() 725 Size += getPatternSize(Child, CGP); in getPatternSize() 726 else if (!Child->getPredicateFns().empty()) in getPatternSize() 1158 TreePatternNode *Child = getChild(i); in SubstituteFormalArguments() local [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/ |
D | regress-137000.js | 114 function Child(id) class 118 Child.prototype=Base; 121 var c1 = new Child('child1');
|
/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/lib/asan/lit_tests/Linux/ |
D | clone_test.cc | 20 int Child(void *arg) { in Child() function 31 pid_t clone_pid = clone(Child, sp, CLONE_FILES | CLONE_VM, NULL, 0, 0, 0); in main()
|
/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/llvm/lib/CodeGen/AsmPrinter/ |
D | DIE.h | 168 void addChild(DIE *Child) { in addChild() argument 169 if (Child->getParent()) { in addChild() 170 assert (Child->getParent() == this && "Unexpected DIE Parent!"); in addChild() 174 Children.push_back(Child); in addChild() 175 Child->Parent = this; in addChild()
|
/external/llvm/lib/DebugInfo/ |
D | DWARFDebugInfoEntry.cpp | 564 const DWARFDebugInfoEntryMinimal *Child = DIE->getFirstChild(); in getInlinedChainForAddress() local 565 while (Child) { in getInlinedChainForAddress() 566 if (Child->addressRangeContainsAddress(CU, Address)) { in getInlinedChainForAddress() 570 Child = Child->getSibling(); in getInlinedChainForAddress() 572 DIE = Child; in getInlinedChainForAddress()
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Tree.pas | 131 procedure AddChild(const T, Child: IANTLRInterface); 291 procedure SetChild(const T: IANTLRInterface; const I: Integer; const Child: IANTLRInterface); 1277 procedure AddChild(const T, Child: IANTLRInterface); virtual; 1296 …procedure SetChild(const T: IANTLRInterface; const I: Integer; const Child: IANTLRInterface); virt… 2089 function VisitChild(const Child: Integer): IANTLRInterface; virtual; 2215 Child: ITree; 2220 Child := GetChild(C); 2221 Child.ChildIndex := C; 2222 Child.Parent := Self; 2286 Child: IBaseTree; [all …]
|
/external/clang/test/SemaCXX/ |
D | typo-correction.cpp | 168 class Child: public Parent {}; class 169 void Child::add_types(int value) {} // expected-error{{out-of-line definition of 'add_types' does n… in add_types()
|
/external/clang/tools/libclang/ |
D | CXComment.cpp | 424 const Comment *Child = *I; in FullCommentParts() local 425 if (!Child) in FullCommentParts() 427 switch (Child->getCommentKind()) { in FullCommentParts() 432 const ParagraphComment *PC = cast<ParagraphComment>(Child); in FullCommentParts() 443 const BlockCommandComment *BCC = cast<BlockCommandComment>(Child); in FullCommentParts() 458 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child); in FullCommentParts() 470 const TParamCommandComment *TPCC = cast<TParamCommandComment>(Child); in FullCommentParts() 482 MiscBlocks.push_back(cast<BlockCommandComment>(Child)); in FullCommentParts() 486 const VerbatimLineComment *VLC = cast<VerbatimLineComment>(Child); in FullCommentParts()
|
/external/valgrind/main/none/tests/ |
D | mmap_fcntl_bug.stderr.exp | 1 Child exited with zero (TEST PASSED).
|
/external/llvm/lib/Support/ |
D | Twine.cpp | 58 void Twine::printOneChild(raw_ostream &OS, Child Ptr, in printOneChild() 102 void Twine::printOneChildRepr(raw_ostream &OS, Child Ptr, in printOneChildRepr()
|
/external/llvm/lib/Analysis/ |
D | RegionInfo.cpp | 298 if (Region* Child = getSubRegionNode(BB)) in getNode() local 299 return Child->getNode(); in getNode() 347 Region *Region::removeSubRegion(Region *Child) { in removeSubRegion() argument 348 assert(Child->parent == this && "Child is not a child of this region!"); in removeSubRegion() 349 Child->parent = 0; in removeSubRegion() 350 RegionSet::iterator I = std::find(children.begin(), children.end(), Child); in removeSubRegion() 353 return Child; in removeSubRegion()
|
/external/llvm/include/llvm/Analysis/ |
D | LoopInfo.h | 266 LoopT *Child = *I; in removeChildLoop() local 267 assert(Child->ParentLoop == this && "Child is not a child of this loop!"); in removeChildLoop() 269 Child->ParentLoop = 0; in removeChildLoop() 270 return Child; in removeChildLoop()
|