Home
last modified time | relevance | path

Searched refs:return_self (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/idlelib/idle_test/
Dmock_idle.py22 def __init__(self, result=None, return_self=False): argument
25 self.return_self = return_self
34 elif self.return_self:
Dtest_configdialog.py581 sn = configdialog.SectionName = Func(return_self=True)
958 gkd = configdialog.GetKeysDialog = Func(return_self=True)
1004 sn = configdialog.SectionName = Func(return_self=True)
1396 hs = configdialog.HelpSource = Func(return_self=True)
1423 hs = configdialog.HelpSource = Func(return_self=True)
/third_party/python/Objects/stringlib/
Dtransmogrify.h16 return_self(PyObject *self) in return_self() function
116 return return_self(self); in pad()
151 return return_self(self); in stringlib_ljust_impl()
175 return return_self(self); in stringlib_rjust_impl()
201 return return_self(self); in stringlib_center_impl()
230 return return_self(self); in stringlib_zfill_impl()
364 return return_self(self); in stringlib_replace_delete_single_character()
413 return return_self(self); in stringlib_replace_delete_substring()
463 return return_self(self); in stringlib_replace_single_character_in_place()
513 return return_self(self); in stringlib_replace_substring_in_place()
[all …]
/third_party/boost/libs/python/doc/reference/
Dreturn_arg.qbk3 `return_arg` and `return_self` instantiations are models of [link concepts.callpolicies `CallPolici…
32 [section Class template `return_self`]
37 struct return_self
75 .def("sensitive", &Widget::set_sensitive, return_self<>())
80 .def("label", &Label::set_label, return_self<>())
/third_party/boost/libs/python/test/
Dreturn_arg.cpp56 .def("sensitive", &Widget::set_sensitive, return_self<>()) in BOOST_PYTHON_MODULE()
61 .def("label", &Label::set_label, return_self<>()) in BOOST_PYTHON_MODULE()
/third_party/boost/boost/python/
Dreturn_arg.hpp103 struct return_self struct