/external/python/cpython2/Lib/test/ |
D | test_isinstance.py | 173 class NewChild(NewSuper): class 238 self.assertEqual(True, issubclass(NewChild, (NewChild,))) 239 self.assertEqual(True, issubclass(NewChild, (NewSuper,))) 240 self.assertEqual(False, issubclass(NewSuper, (NewChild,))) 241 self.assertEqual(True, issubclass(NewSuper, (NewChild, NewSuper))) 242 self.assertEqual(False, issubclass(NewChild, ())) 243 self.assertEqual(True, issubclass(NewSuper, (NewChild, (NewSuper,)))) 247 self.assertEqual(True, issubclass(str, (unicode, (Child, NewChild, basestring))))
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | LoopInfo.h | 353 LoopT *NewChild) { in replaceChildLoopWith() argument 355 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); in replaceChildLoopWith() 359 *I = NewChild; in replaceChildLoopWith() 361 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith() 367 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument 368 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); in addChildLoop() 369 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop() 370 SubLoops.push_back(NewChild); in addChildLoop() 898 void MoveSiblingLoopInto(LoopT *NewChild, in MoveSiblingLoopInto() argument 900 LoopT *OldParent = NewChild->getParentLoop(); in MoveSiblingLoopInto() [all …]
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 411 T, NewChild: ICommonTree; 417 NewChild := TCommonTree.Create(TCommonToken.Create(99, 'x')); 418 T.ReplaceChildren(0, 2, NewChild); 443 T, NewChild: ICommonTree; 449 NewChild := TCommonTree.Create(TCommonToken.Create(99, 'x')); 450 T.ReplaceChildren(0, 0, NewChild); 457 T, NewChild: ICommonTree; 463 NewChild := TCommonTree.Create(TCommonToken.Create(99, 'x')); 464 T.ReplaceChildren(2, 2, NewChild); 471 T, NewChild: ICommonTree; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | WindowsResource.cpp | 244 auto NewChild = in addChild() local 247 WindowsResourceParser::TreeNode &Node = *NewChild; in addChild() 248 IDChildren.emplace(ID, std::move(NewChild)); in addChild() 271 auto NewChild = createStringNode(); in addChild() local 273 WindowsResourceParser::TreeNode &Node = *NewChild; in addChild() 274 StringChildren.emplace(NameString, std::move(NewChild)); in addChild()
|
/external/llvm/include/llvm/Analysis/ |
D | LoopInfo.h | 262 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild); 266 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument 267 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in addChildLoop() 268 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop() 269 SubLoops.push_back(NewChild); in addChildLoop()
|
D | LoopInfoImpl.h | 211 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) { in replaceChildLoopWith() argument 213 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in replaceChildLoopWith() 217 *I = NewChild; in replaceChildLoopWith() 219 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | LoopInfo.h | 327 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild); 331 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument 333 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in addChildLoop() 334 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop() 335 SubLoops.push_back(NewChild); in addChildLoop()
|
D | LoopInfoImpl.h | 282 LoopT *NewChild) { in replaceChildLoopWith() argument 285 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in replaceChildLoopWith() 288 *I = NewChild; in replaceChildLoopWith() 290 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith()
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 1162 TreePatternNode *NewChild = ArgMap[Child->getName()]; in SubstituteFormalArguments() local 1163 assert(NewChild && "Couldn't find formal argument!"); in SubstituteFormalArguments() 1165 NewChild->getPredicateFns() == Child->getPredicateFns()) && in SubstituteFormalArguments() 1167 setChild(i, NewChild); in SubstituteFormalArguments() 1187 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); in InlinePatternFragments() local 1190 NewChild->getPredicateFns() == Child->getPredicateFns()) && in InlinePatternFragments() 1193 setChild(i, NewChild); in InlinePatternFragments()
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 1387 TreePatternNode *NewChild = ArgMap[Child->getName()]; in SubstituteFormalArguments() local 1388 assert(NewChild && "Couldn't find formal argument!"); in SubstituteFormalArguments() 1390 NewChild->getPredicateFns() == Child->getPredicateFns()) && in SubstituteFormalArguments() 1392 setChild(i, NewChild); in SubstituteFormalArguments() 1416 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); in InlinePatternFragments() local 1419 NewChild->getPredicateFns() == Child->getPredicateFns()) && in InlinePatternFragments() 1422 setChild(i, NewChild); in InlinePatternFragments()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 1841 TreePatternNodePtr NewChild = ArgMap[Child->getName()]; in SubstituteFormalArguments() local 1842 assert(NewChild && "Couldn't find formal argument!"); in SubstituteFormalArguments() 1844 NewChild->getPredicateFns() == Child->getPredicateFns()) && in SubstituteFormalArguments() 1846 setChild(i, std::move(NewChild)); in SubstituteFormalArguments() 1889 for (auto NewChild : ChildAlternatives[i]) in InlinePatternFragments() local 1891 NewChild->getPredicateFns() == Child->getPredicateFns()) && in InlinePatternFragments()
|