Lines Matching refs:ParseExpression
290 static std::unique_ptr<ExprAST> ParseExpression();
308 auto Arg = ParseExpression(); in ParseIdentifierExpr()
336 auto V = ParseExpression(); in ParseParenExpr()
351 auto Cond = ParseExpression(); in ParseIfExpr()
359 auto Then = ParseExpression(); in ParseIfExpr()
368 auto Else = ParseExpression(); in ParseIfExpr()
391 auto Start = ParseExpression(); in ParseForExpr()
398 auto End = ParseExpression(); in ParseForExpr()
406 Step = ParseExpression(); in ParseForExpr()
415 auto Body = ParseExpression(); in ParseForExpr()
443 Init = ParseExpression(); in ParseVarExpr()
463 auto Body = ParseExpression(); in ParseVarExpr()
544 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
625 if (auto Body = ParseExpression()) in ParseDefinition()
632 if (auto E = ParseExpression()) { in ParseTopLevelExpr()