Home
last modified time | relevance | path

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

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