Searched refs:is_method (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_spawn.h114 if ( !opt_p || !opt_p->is_method() )
217 if ( !opt_p || !opt_p->is_method() )
270 if ( !opt_p || !opt_p->is_method() )
H A Dsc_spawn_options.h78 bool is_method() const { return m_spawn_method; } function in class:sc_core::sc_spawn_options
/gem5/ext/pybind11/include/pybind11/
H A Dattr.h21 struct is_method { handle class_; is_method(const handle &c) : class_(c) { } }; function in struct:is_method
137 is_operator(false), has_args(false), has_kwargs(false), is_method(false) { }
182 bool is_method : 1; member in struct:function_record
338 template <> struct process_attribute<is_method> : process_attribute_default<is_method> {
339 static void init(const is_method &s, function_record *r) { r->is_method = true; r->scope = s.class_; }
359 if (r->is_method && r->args.empty())
368 if (r->is_method
[all...]
H A Dpybind11.h237 } else if (arg_index == 0 && rec->is_method) {
240 signature += "arg" + std::to_string(arg_index - (rec->is_method ? 1 : 0));
338 if (chain->is_method != rec->is_method)
343 "error while attempting to bind " + std::string(rec->is_method ? "instance" : "static") + " method " +
392 if (rec->is_method) {
636 for (size_t i = func.is_method ? 1 : 0; i < pos_args; i++) {
975 const auto is_static = rec_func && !(rec_func->is_method && rec_func->scope);
1111 cpp_function cf(method_adaptor<type>(std::forward<Func>(f)), name(name_), is_method(*this),
1188 cpp_function fget([pm](const type &c) -> const D &{ return c.*pm; }, is_method(*thi
[all...]

Completed in 9 milliseconds