Lines Matching refs:ParseExpression
334 static std::unique_ptr<ExprAST> ParseExpression();
346 auto V = ParseExpression(); in ParseParenExpr()
372 if (auto Arg = ParseExpression()) in ParseIdentifierExpr()
397 auto Cond = ParseExpression(); in ParseIfExpr()
405 auto Then = ParseExpression(); in ParseIfExpr()
414 auto Else = ParseExpression(); in ParseIfExpr()
436 auto Start = ParseExpression(); in ParseForExpr()
443 auto End = ParseExpression(); in ParseForExpr()
451 Step = ParseExpression(); in ParseForExpr()
460 auto Body = ParseExpression(); in ParseForExpr()
488 Init = ParseExpression(); in ParseVarExpr()
509 auto Body = ParseExpression(); in ParseVarExpr()
598 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
679 if (auto E = ParseExpression()) in ParseDefinition()
686 if (auto E = ParseExpression()) { in ParseTopLevelExpr()