Lines Matching refs:ParseExpression
441 static std::unique_ptr<ExprAST> ParseExpression();
453 auto V = ParseExpression(); in ParseParenExpr()
481 if (auto Arg = ParseExpression()) in ParseIdentifierExpr()
508 auto Cond = ParseExpression(); in ParseIfExpr()
516 auto Then = ParseExpression(); in ParseIfExpr()
525 auto Else = ParseExpression(); in ParseIfExpr()
547 auto Start = ParseExpression(); in ParseForExpr()
554 auto End = ParseExpression(); in ParseForExpr()
562 Step = ParseExpression(); in ParseForExpr()
571 auto Body = ParseExpression(); in ParseForExpr()
599 Init = ParseExpression(); in ParseVarExpr()
620 auto Body = ParseExpression(); in ParseVarExpr()
710 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
793 if (auto E = ParseExpression()) in ParseDefinition()
801 if (auto E = ParseExpression()) { in ParseTopLevelExpr()