Searched defs:fget (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/libs/python/src/object/ |
D | class.cpp | 617 char const* name, object const& fget, char const* docstr) in add_property() 627 char const* name, object const& fget, object const& fset, char const* docstr) in add_property() 636 void class_base::add_static_property(char const* name, object const& fget) in add_static_property() 646 void class_base::add_static_property(char const* name, object const& fget, object const& fset) in add_static_property()
|
/third_party/python/Objects/clinic/ |
D | descrobject.c.h | 81 PyObject *fget = NULL; in property_init() local
|
/third_party/boost/boost/python/ |
D | class.hpp | 301 self& add_property(char const* name, Get fget, char const* docstr = 0) in add_property() 308 self& add_property(char const* name, Get fget, Set fset, char const* docstr = 0) in add_property() 316 self& add_static_property(char const* name, Get fget) in add_static_property() 323 self& add_static_property(char const* name, Get fget, Set fset) in add_static_property()
|
/third_party/python/Lib/ |
D | types.py | 166 def __init__(self, fget=None, fset=None, fdel=None, doc=None): argument 195 def getter(self, fget): argument
|
/third_party/python/Lib/test/ |
D | test_abc.py | 232 def __init__(self, fget, fset=None): argument
|
D | test_enum.py | 125 def __init__(self, fget=None, fset=None, fdel=None, doc=None): argument
|
/third_party/python/Objects/ |
D | descrobject.c | 1722 property_init_impl(propertyobject *self, PyObject *fget, PyObject *fset, in property_init_impl()
|