Lines Matching refs:ParseExpression
333 static std::unique_ptr<ExprAST> ParseExpression();
345 auto V = ParseExpression(); in ParseParenExpr()
371 if (auto Arg = ParseExpression()) in ParseIdentifierExpr()
396 auto Cond = ParseExpression(); in ParseIfExpr()
404 auto Then = ParseExpression(); in ParseIfExpr()
413 auto Else = ParseExpression(); in ParseIfExpr()
435 auto Start = ParseExpression(); in ParseForExpr()
442 auto End = ParseExpression(); in ParseForExpr()
450 Step = ParseExpression(); in ParseForExpr()
459 auto Body = ParseExpression(); in ParseForExpr()
487 Init = ParseExpression(); in ParseVarExpr()
508 auto Body = ParseExpression(); in ParseVarExpr()
597 static std::unique_ptr<ExprAST> ParseExpression() { in ParseExpression() function
678 if (auto E = ParseExpression()) in ParseDefinition()
685 if (auto E = ParseExpression()) { in ParseTopLevelExpr()