Lines Matching refs:mem_fn
6428 /// @param mem_fn the member function to consider.
6430 /// @return true iff a @p mem_fn is virtual.
6448 /// @param mem_fn the member function to consider.
6450 /// @return true iff a @p mem_fn is virtual.
6452 get_member_function_is_virtual(const function_decl_sptr& mem_fn)
6453 {return mem_fn ? get_member_function_is_virtual(*mem_fn) : false;}
6457 /// @param mem_fn the member function to consider.
6459 /// @return true iff a @p mem_fn is virtual.
6461 get_member_function_is_virtual(const function_decl* mem_fn)
6462 {return mem_fn ? get_member_function_is_virtual(*mem_fn) : false;}
20156 const method_decl* mem_fn =
20159 string result = mem_fn ? "method ": "function ";
20161 if (mem_fn
20162 && is_member_function(mem_fn)
20163 && get_member_function_is_virtual(mem_fn))
20167 if ((mem_fn
20168 && is_member_function(mem_fn)
20169 && (get_member_function_is_dtor(*mem_fn)
20170 || get_member_function_is_ctor(*mem_fn))))
20173 type = mem_fn
20174 ? get_type_declaration(mem_fn->get_type()->get_return_type())
20205 const method_decl* mem_fn =
20210 if (mem_fn)
20212 result += mem_fn->get_type()->get_class_type()->get_qualified_name()
20213 + "::" + mem_fn->get_name();
20224 if (mem_fn && i != end)
20248 if (mem_fn
20249 &&((is_member_function(mem_fn) && get_member_function_is_const(*mem_fn))
20250 || is_method_type(mem_fn->get_type())->get_is_const()))