Home
last modified time | relevance | path

Searched refs:NewChild (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_isinstance.py173 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/
DLoopInfo.h353 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/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tree.Tests.pas411 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/llvm/include/llvm/Analysis/
DLoopInfo.h262 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()
DLoopInfoImpl.h211 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/utils/TableGen/
DCodeGenDAGPatterns.cpp1162 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/
DCodeGenDAGPatterns.cpp1387 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()