Lines Matching refs:Arena
47 auto *Leaf = createLeaf(*Arena, *TM, tok::comma); in TEST_P()
60 auto *Leaf = createLeaf(*Arena, *TM, tok::coloncolon); in TEST_P()
70 auto *Leaf = createLeaf(*Arena, *TM, tok::kw_if); in TEST_P()
83 auto *Leaf = createLeaf(*Arena, *TM, tok::kw_nullptr); in TEST_P()
93 auto *Leaf = createLeaf(*Arena, *TM, tok::identifier, "a"); in TEST_P()
103 auto *Leaf = createLeaf(*Arena, *TM, tok::numeric_constant, "1"); in TEST_P()
113 auto *Tree = createTree(*Arena, {}, NodeKind::UnknownExpression); in TEST_P()
123 auto *LeafLParen = createLeaf(*Arena, *TM, tok::l_paren); in TEST_P()
124 auto *LeafRParen = createLeaf(*Arena, *TM, tok::r_paren); in TEST_P()
125 auto *TreeParen = createTree(*Arena, in TEST_P()
140 auto *Leaf1 = createLeaf(*Arena, *TM, tok::numeric_constant, "1"); in TEST_P()
141 auto *Int1 = createTree(*Arena, {{Leaf1, NodeRole::LiteralToken}}, in TEST_P()
144 auto *LeafPlus = createLeaf(*Arena, *TM, tok::plus); in TEST_P()
146 auto *Leaf2 = createLeaf(*Arena, *TM, tok::numeric_constant, "2"); in TEST_P()
147 auto *Int2 = createTree(*Arena, {{Leaf2, NodeRole::LiteralToken}}, in TEST_P()
150 auto *TreeBinaryOperator = createTree(*Arena, in TEST_P()
169 auto *LeafContinue = createLeaf(*Arena, *TM, tok::kw_continue); in TEST_P()
170 auto *LeafSemiColon = createLeaf(*Arena, *TM, tok::semi); in TEST_P()
171 auto *StatementContinue = createTree(*Arena, in TEST_P()
176 auto *Copy = deepCopyExpandingMacros(*Arena, *TM, StatementContinue); in TEST_P()
185 auto *Copy = deepCopyExpandingMacros(*Arena, *TM, OriginalTree); in TEST_P()
201 deepCopyExpandingMacros(*Arena, *TM, OriginalTree->getFirstChild()); in TEST_P()
221 auto *Copy = deepCopyExpandingMacros(*Arena, *TM, OriginalTree); in TEST_P()
263 auto *S = createEmptyStatement(*Arena, *TM); in TEST_P()