Lines Matching full:methods
47 /* Argument format for Python methods with a fixed number of arguments.
50 /* Argument format for Python methods with a variable number of arguments.
442 * Note that static methods are not considered to be "get" methods.
520 * For methods that are identified as "get" methods, also
663 * corresponding to the C functions "methods".
666 * If "methods" consists of a single element that is not marked overloaded,
669 * to each function in "methods".
672 const string &fullname, const function_set &methods, in print_method() argument
679 any_method = *methods.begin(); in print_method()
680 if (methods.size() == 1 && !is_overload(any_method)) { in print_method()
690 for (it = methods.begin(); it != methods.end(); ++it) in print_method()
729 /* Print python methods corresponding to "fd", which sets an enum.
839 /* Print any special methods of this class that are not
999 /* Print declarations for methods printing the class representation,
1002 * In particular, provide an implementation of __str__ and __repr__ methods to
1064 * methods (including those that set a persistent callback and
1068 * also unconditionally set the type of such methods.
1083 for (it = clazz.methods.begin(); it != clazz.methods.end(); ++it) in print_method_types()
1107 * Next, we print out some common methods, class specific methods and
1108 * the methods corresponding
1154 for (const auto &kvp : clazz.methods) in print()