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.cc139 PyObject* py_container = repeated_composite_container::NewContainer( in subscript() local
141 if (py_container == NULL) { in subscript()
144 PyDict_SetItem(self->values, key, py_container); in subscript()
145 return py_container; in subscript()
147 PyObject* py_container = repeated_scalar_container::NewContainer( in subscript() local
149 if (py_container == NULL) { in subscript()
152 PyDict_SetItem(self->values, key, py_container); in subscript()
153 return py_container; in subscript()
Dmessage.cc2658 PyObject* py_container = NULL; in CheckAndGetInteger() local
2667 py_container = in CheckAndGetInteger()
2670 py_container = NewScalarMapContainer(self, field_descriptor); in CheckAndGetInteger()
2672 if (py_container == NULL) { in CheckAndGetInteger()
2675 if (!SetCompositeField(self, name, py_container)) { in CheckAndGetInteger()
2676 Py_DECREF(py_container); in CheckAndGetInteger()
2679 return py_container; in CheckAndGetInteger()
2683 PyObject* py_container = NULL; in CheckAndGetInteger() local
2690 py_container = repeated_composite_container::NewContainer( in CheckAndGetInteger()
2693 py_container = repeated_scalar_container::NewContainer( in CheckAndGetInteger()
[all …]