Home
last modified time | relevance | path

Searched defs:fget (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/libs/python/src/object/
Dclass.cpp617 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/
Ddescrobject.c.h81 PyObject *fget = NULL; in property_init() local
/third_party/boost/boost/python/
Dclass.hpp301 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/
Dtypes.py166 def __init__(self, fget=None, fset=None, fdel=None, doc=None): argument
195 def getter(self, fget): argument
/third_party/python/Lib/test/
Dtest_abc.py232 def __init__(self, fget, fset=None): argument
Dtest_enum.py125 def __init__(self, fget=None, fset=None, fdel=None, doc=None): argument
/third_party/python/Objects/
Ddescrobject.c1722 property_init_impl(propertyobject *self, PyObject *fget, PyObject *fset, in property_init_impl()