Lines Matching refs:ParseExpression
328 static std::unique_ptr<ExprAST> ParseExpression();
340 auto V = ParseExpression(); in ParseParenExpr()
366 if (auto Arg = ParseExpression()) in ParseIdentifierExpr()
391 auto Cond = ParseExpression(); in ParseIfExpr()
399 auto Then = ParseExpression(); in ParseIfExpr()
408 auto Else = ParseExpression(); in ParseIfExpr()
430 auto Start = ParseExpression(); in ParseForExpr()
437 auto End = ParseExpression(); in ParseForExpr()
445 Step = ParseExpression(); in ParseForExpr()
454 auto Body = ParseExpression(); in ParseForExpr()
482 Init = ParseExpression(); in ParseVarExpr()
503 auto Body = ParseExpression(); in ParseVarExpr()
592 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
673 if (auto E = ParseExpression()) in ParseDefinition()
680 if (auto E = ParseExpression()) { in ParseTopLevelExpr()