Home
last modified time | relevance | path

Searched refs:NewChild (Results 1 – 13 of 13) 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/llvm-project/polly/lib/Transform/
DScheduleTreeTransform.cpp194 isl::schedule NewChild = in visitBand() local
197 NewChild.insert_partial_schedule(PartialSched).get_root().get_child(0); in visitBand()
241 isl::schedule_node NewChild = in visitMark() local
246 return NewChild.insert_mark(TheMark).get_schedule(); in visitMark()
252 isl::schedule_node NewChild = getDerived() in visitExtension() local
258 return NewChild.graft_before(NewExtension).get_schedule(); in visitExtension()
347 isl::schedule NewChild = visit(OldChild, Domain, NewChildExtensions); in visitBand() local
372 NewChild.insert_partial_schedule(NewPartialSchedAsAsMultiUnionPwAff) in visitBand()
405 isl::schedule NewChild = in visitExtension() local
408 return NewChild; in visitExtension()
/external/antlr/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-10.0/llvm/lib/Object/
DWindowsResource.cpp516 auto NewChild = createDataNode(MajorVersion, MinorVersion, Characteristics, in addDataChild() local
518 auto ElementInserted = IDChildren.emplace(ID, std::move(NewChild)); in addDataChild()
527 auto NewChild = createIDNode(); in addIDChild() local
528 WindowsResourceParser::TreeNode &Node = *NewChild; in addIDChild()
529 IDChildren.emplace(ID, std::move(NewChild)); in addIDChild()
542 auto NewChild = createStringNode(StringTable.size()); in addNameChild() local
544 WindowsResourceParser::TreeNode &Node = *NewChild; in addNameChild()
545 StringChildren.emplace(NameString, std::move(NewChild)); in addNameChild()
/external/llvm-project/llvm/lib/Object/
DWindowsResource.cpp516 auto NewChild = createDataNode(MajorVersion, MinorVersion, Characteristics, in addDataChild() local
518 auto ElementInserted = IDChildren.emplace(ID, std::move(NewChild)); in addDataChild()
527 auto NewChild = createIDNode(); in addIDChild() local
528 WindowsResourceParser::TreeNode &Node = *NewChild; in addIDChild()
529 IDChildren.emplace(ID, std::move(NewChild)); in addIDChild()
542 auto NewChild = createStringNode(StringTable.size()); in addNameChild() local
544 WindowsResourceParser::TreeNode &Node = *NewChild; in addNameChild()
545 StringChildren.emplace(NameString, std::move(NewChild)); in addNameChild()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLoopInfo.h371 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);
375 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument
377 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in addChildLoop()
378 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop()
379 SubLoops.push_back(NewChild); in addChildLoop()
DLoopInfoImpl.h266 LoopT *NewChild) { in replaceChildLoopWith() argument
269 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in replaceChildLoopWith()
272 *I = NewChild; in replaceChildLoopWith()
274 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith()
/external/llvm-project/llvm/include/llvm/Analysis/
DLoopInfo.h391 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);
395 void addChildLoop(LoopT *NewChild) { in addChildLoop() argument
397 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in addChildLoop()
398 NewChild->ParentLoop = static_cast<LoopT *>(this); in addChildLoop()
399 SubLoops.push_back(NewChild); in addChildLoop()
DLoopInfoImpl.h272 LoopT *NewChild) { in replaceChildLoopWith() argument
275 assert(!NewChild->ParentLoop && "NewChild already has a parent!"); in replaceChildLoopWith()
278 *I = NewChild; in replaceChildLoopWith()
280 NewChild->ParentLoop = static_cast<LoopT *>(this); in replaceChildLoopWith()
/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()
/external/llvm-project/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp1968 TreePatternNodePtr NewChild = ArgMap[Child->getName()]; in SubstituteFormalArguments() local
1969 assert(NewChild && "Couldn't find formal argument!"); in SubstituteFormalArguments()
1971 NewChild->getPredicateCalls() == Child->getPredicateCalls()) && in SubstituteFormalArguments()
1973 setChild(i, std::move(NewChild)); in SubstituteFormalArguments()
2016 for (auto NewChild : ChildAlternatives[i]) in InlinePatternFragments() local
2018 NewChild->getPredicateCalls() == Child->getPredicateCalls()) && in InlinePatternFragments()