Lines Matching defs:expr
1267 /// @param expr this is an output parameter that is set with the
1271 /// @param return true iff @p expr was successful set with the
1274 read_function_call_expr(function_call_expr_sptr& expr)
1332 expr.reset(new function_call_expr(name, arguments));
2010 /// @param expr the expression resulting from the parsing. This is an
2013 /// @return true iff the parameter @p expr is successfully set with
2017 function_call_expr_sptr& expr)
2020 return ctxt.read_function_call_expr(expr);
2028 /// @param expr the expression resulting from the parsing. This is an
2031 /// @return true iff the parameter @p expr is successfully set with
2035 function_call_expr_sptr& expr)
2038 return read_function_call_expr(in, expr);
2051 function_call_expr_sptr expr;
2052 read_function_call_expr(input, expr);
2053 return expr;