Lines Matching refs:ParseExpression
277 static std::unique_ptr<ExprAST> ParseExpression();
289 auto V = ParseExpression(); in ParseParenExpr()
315 if (auto Arg = ParseExpression()) in ParseIdentifierExpr()
340 auto Cond = ParseExpression(); in ParseIfExpr()
348 auto Then = ParseExpression(); in ParseIfExpr()
357 auto Else = ParseExpression(); in ParseIfExpr()
379 auto Start = ParseExpression(); in ParseForExpr()
386 auto End = ParseExpression(); in ParseForExpr()
394 Step = ParseExpression(); in ParseForExpr()
403 auto Body = ParseExpression(); in ParseForExpr()
474 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
513 if (auto E = ParseExpression()) in ParseDefinition()
520 if (auto E = ParseExpression()) { in ParseTopLevelExpr()