Lines Matching refs:expressions
32 auto expressions = ParseTopExpression(); in Parse() local
38 1, true, L"", std::move(arguments), std::move(expressions)); in Parse()
72 std::vector<std::unique_ptr<CXFA_FMExpression>> expressions; in ParseTopExpression() local
77 return expressions; in ParseTopExpression()
85 expressions.push_back(std::move(expr)); in ParseTopExpression()
97 std::vector<std::unique_ptr<CXFA_FMExpression>> expressions; in ParseFunction() local
144 expressions = ParseTopExpression(); in ParseFunction()
145 if (!expressions.size() || !CheckThenNext(TOKendfunc)) in ParseFunction()
150 line, false, ident, std::move(arguments), std::move(expressions)); in ParseFunction()
677 std::vector<std::unique_ptr<CXFA_FMSimpleExpression>> expressions; in ParsePostExpression() local
685 expressions.push_back(std::move(simple_expr)); in ParsePostExpression()
700 line, std::move(expr), std::move(expressions), false); in ParsePostExpression()
730 std::vector<std::unique_ptr<CXFA_FMSimpleExpression>> expressions; in ParsePostExpression() local
738 expressions.push_back(std::move(exp)); in ParsePostExpression()
756 line, std::move(pIdentifier), std::move(expressions), true); in ParsePostExpression()
948 std::vector<std::unique_ptr<CXFA_FMExpression>> expressions; in ParseBlockExpression() local
967 expressions.push_back(std::move(expr)); in ParseBlockExpression()
974 expressions.push_back(std::move(expr)); in ParseBlockExpression()
980 std::move(expressions)); in ParseBlockExpression()