Searched refs:is_constructor (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/pybind11/include/pybind11/
H A Dattr.h136 : is_constructor(false), is_new_style_constructor(false), is_stateless(false),
164 bool is_constructor : 1; member in struct:function_record
H A Dpybind11.h208 rec->is_constructor = !strcmp(rec->name, "__init__") || !strcmp(rec->name, "__setstate__");
211 if (rec->is_constructor && !rec->is_new_style_constructor) {
438 if (overloads->is_constructor) {
716 std::string(overloads->is_constructor ? "constructor" : "function") +
724 if (overloads->is_constructor) {
749 for (size_t ti = overloads->is_constructor ? 1 : 0; ti < args_.size(); ++ti) {
779 if (overloads->is_constructor && !self_value_and_holder.holder_constructed()) {

Completed in 17 milliseconds