Searched refs:py_container (Results 1 - 2 of 2) sorted by relevance

/external/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc156 PyObject* py_container = PyObject_CallObject( local
159 if (py_container == NULL) {
163 reinterpret_cast<RepeatedCompositeContainer*>(py_container);
174 PyDict_SetItem(self->values, key, py_container);
175 return py_container;
179 PyObject* py_container = PyObject_CallObject( local
182 if (py_container == NULL) {
185 PyDict_SetItem(self->values, key, py_container);
186 return py_container;
H A Dmessage.cc2213 PyObject* py_container = PyObject_CallObject( local
2216 if (py_container == NULL) {
2220 reinterpret_cast<RepeatedCompositeContainer*>(py_container);
2237 if (PyDict_SetItem(self->composite_fields, name, py_container) < 0) {
2238 Py_DECREF(py_container);
2241 return py_container;
2244 PyObject* py_container = PyObject_CallObject( local
2247 if (py_container == NULL) {
2250 if (PyDict_SetItem(self->composite_fields, name, py_container) < 0) {
2251 Py_DECREF(py_container);
[all...]

Completed in 627 milliseconds