Searched refs:py_container (Results 1 – 2 of 2) sorted by relevance
156 PyObject* py_container = PyObject_CallObject( in subscript() local159 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() local182 if (py_container == NULL) { in subscript()185 PyDict_SetItem(self->values, key, py_container); in subscript()186 return py_container; in subscript()
2213 PyObject* py_container = PyObject_CallObject( in CheckAndGetInteger() local2216 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() local2247 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 …]