Searched refs:createNode (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | ImmutableSet.h | 455 TreeTy* createNode(TreeTy* L, value_type_ref V, TreeTy* R) { 471 TreeTy* createNode(TreeTy* newLeft, TreeTy* oldTree, TreeTy* newRight) { 472 return createNode(newLeft, getValue(oldTree), newRight); 497 return createNode(LL, L, createNode(LR,V,R)); 504 return createNode(createNode(LL,L,LRL), LR, createNode(LRR,V,R)); 514 return createNode(createNode(L,V,RL), R, RR); 521 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR)); 524 return createNode(L,V,R); 532 return createNode(T, V, T); 539 return createNode(getLeft(T), V, getRight(T));
|
/freebsd/contrib/llvm-project/llvm/lib/Passes/ |
H A D | StandardInstrumentations.cpp | 1714 void createNode(std::string C, StringRef Colour) { in createNode() function in __anon94a753662a11::DotCfgDiffDisplayGraph 1888 void createNode(StringRef Label, const BlockDataT<DCData> &BD, StringRef C) { in createNode() function in __anon94a753662a11::DotCfgDiff 1985 createNode(Label, BD, BeforeColour); in DotCfgDiff() 2005 createNode(Label, BD, AfterColour); in DotCfgDiff() 2072 G.createNode(I.getBodyContent(), I.getColour()); in createDisplayGraph()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericDomTree.h | 652 DomTreeNodeBase<NodeT> *NewNode = createNode(BB); 839 DomTreeNodeBase<NodeT> *createNode(NodeT *BB) {
|
H A D | GenericDomTreeConstruction.h | 579 DT.RootNode = DT.createNode(Root); in CalculateFromScratch()
|