Home
last modified time | relevance | path

Searched refs:getinitargs (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/python/src/object/
Dpickle_support.cpp39 object getinitargs = getattr(instance_obj, "__getinitargs__", none); in instance_reduce() local
41 if (!getinitargs.is_none()) { in instance_reduce()
42 initargs = tuple(getinitargs()); in instance_reduce()
/third_party/boost/libs/python/test/
Dpickle1.cpp41 getinitargs(const world& w) in getinitargs() function
Dpickle2.cpp53 getinitargs(const world& w) in getinitargs() function
Dpickle3.cpp50 getinitargs(const world& w) in getinitargs() function
/third_party/boost/boost/python/object/
Dpickle_support.hpp39 static inaccessible* getinitargs() { return 0; } in getinitargs() function
/third_party/boost/libs/python/doc/reference/
Dpickle.qbk31 getinitargs(world const& w)
54 getinitargs(const world& w)
/third_party/boost/boost/python/
Dclass.hpp343 &PickleSuiteType::getinitargs, in def_pickle()
/third_party/python/Lib/
Ddatetime.py1167 getinitargs = getattr(self, "__getinitargs__", None)
1168 if getinitargs:
1169 args = getinitargs()
/third_party/python/Modules/
D_datetimemodule.c3734 PyObject *getinitargs, *getstate; in tzinfo_reduce() local
3738 if (_PyObject_LookupAttrId(self, &PyId___getinitargs__, &getinitargs) < 0) { in tzinfo_reduce()
3741 if (getinitargs != NULL) { in tzinfo_reduce()
3742 args = PyObject_CallNoArgs(getinitargs); in tzinfo_reduce()
3743 Py_DECREF(getinitargs); in tzinfo_reduce()
/third_party/boost/libs/python/doc/
Darticle.rst679 getinitargs(World const& w) { return make_tuple(w.greet()); }
710 function in Python, the pickle_suite's getinitargs() is responsible for