Lines Matching refs:ParseExpression
311 static std::unique_ptr<ExprAST> ParseExpression();
323 auto V = ParseExpression(); in ParseParenExpr()
349 if (auto Arg = ParseExpression()) in ParseIdentifierExpr()
374 auto Cond = ParseExpression(); in ParseIfExpr()
382 auto Then = ParseExpression(); in ParseIfExpr()
391 auto Else = ParseExpression(); in ParseIfExpr()
413 auto Start = ParseExpression(); in ParseForExpr()
420 auto End = ParseExpression(); in ParseForExpr()
428 Step = ParseExpression(); in ParseForExpr()
437 auto Body = ParseExpression(); in ParseForExpr()
524 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
605 if (auto E = ParseExpression()) in ParseDefinition()
612 if (auto E = ParseExpression()) { in ParseTopLevelExpr()