Lines Matching defs:next
55 this->next() ? this->next()->clone() : nullptr,
73 if (this->next()) {
74 result += this->next()->description();
83 std::unique_ptr<Expression> next,
102 // The type of the next-expression doesn't matter, but it needs to be a complete expression.
104 if (next && next->isIncomplete(context)) {
112 next.get(), statement.get(), context.fErrors);
120 next.get(), statement.get(), /*errors=*/nullptr);
137 std::move(test), std::move(next), std::move(statement),
143 std::move(next), std::move(statement), std::move(unrollInfo),
156 /*next=*/nullptr, std::move(statement), std::move(symbolTable));
162 std::unique_ptr<Expression> next,
172 // Unrollable loops are easy to optimize because we know initializer, test and next don't have
183 std::move(next), std::move(statement),