/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/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/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/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> {
|
D | GrRedBlackTree.h | 137 enum Child { enum 356 Child pc = kLeft_Child; // suppress uninit warning in insert() 357 Child gpc = kLeft_Child; in insert() 498 Child c = d->fChildren[kLeft_Child] == n ? kLeft_Child : in rotateRight() 530 Child c = d->fChildren[kRight_Child] == n ? kRight_Child : in rotateLeft() 593 Child c = hasLeft ? kLeft_Child : kRight_Child; in deleteAtNode() 637 Child pc; in deleteAtNode()
|
/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/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/output_tests/ |
D | clone_test.cc | 9 int Child(void *arg) { in Child() function 20 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/include/llvm/Analysis/ |
D | LoopInfo.h | 377 LoopT *Child = *I; in removeChildLoop() local 378 assert(Child->ParentLoop == this && "Child is not a child of this loop!"); in removeChildLoop() 380 Child->ParentLoop = 0; in removeChildLoop() 381 return Child; in removeChildLoop() 840 LoopT *Child = L->SubLoops[i]; in ConsiderForLoop() local 841 assert(Child->getParentLoop() == L && "Not proper child loop?"); in ConsiderForLoop() 843 if (LoopT *ContainingLoop = ContainingLoops[Child->getHeader()]) { in ConsiderForLoop() 846 MoveSiblingLoopInto(Child, ContainingLoop); in ConsiderForLoop() 852 for (unsigned b = 0, e = Child->Blocks.size(); b != e; ++b) { in ConsiderForLoop() 853 LoopT *&BlockLoop = ContainingLoops[Child->Blocks[b]]; in ConsiderForLoop() [all …]
|
/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/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 | 314 if (Region* Child = getSubRegionNode(BB)) in getNode() local 315 return Child->getNode(); in getNode() 363 Region *Region::removeSubRegion(Region *Child) { in removeSubRegion() argument 364 assert(Child->parent == this && "Child is not a child of this region!"); in removeSubRegion() 365 Child->parent = 0; in removeSubRegion() 366 RegionSet::iterator I = std::find(children.begin(), children.end(), Child); in removeSubRegion() 369 return Child; in removeSubRegion()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRCommonTreeAdaptor.h | 56 - (void) setChild:(ANTLRCommonTree *)t At:(NSInteger)i Child:(ANTLRCommonTree *)child;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRCommonTreeAdaptor.h | 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRCommonTreeAdaptor.h | 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRCommonTreeAdaptor.h | 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;
|