Lines Matching refs:ParseExpression
289 static std::unique_ptr<ExprAST> ParseExpression();
307 auto Arg = ParseExpression(); in ParseIdentifierExpr()
335 auto V = ParseExpression(); in ParseParenExpr()
350 auto Cond = ParseExpression(); in ParseIfExpr()
358 auto Then = ParseExpression(); in ParseIfExpr()
367 auto Else = ParseExpression(); in ParseIfExpr()
390 auto Start = ParseExpression(); in ParseForExpr()
397 auto End = ParseExpression(); in ParseForExpr()
405 Step = ParseExpression(); in ParseForExpr()
414 auto Body = ParseExpression(); in ParseForExpr()
442 Init = ParseExpression(); in ParseVarExpr()
462 auto Body = ParseExpression(); in ParseVarExpr()
543 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
624 if (auto Body = ParseExpression()) in ParseDefinition()
631 if (auto E = ParseExpression()) { in ParseTopLevelExpr()