Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/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.cc2655 PyObject* py_container = NULL; in CheckAndGetInteger() local
2664 py_container = in CheckAndGetInteger()
2667 py_container = NewScalarMapContainer(self, field_descriptor); in CheckAndGetInteger()
2669 if (py_container == NULL) { in CheckAndGetInteger()
2672 if (!SetCompositeField(self, name, py_container)) { in CheckAndGetInteger()
2673 Py_DECREF(py_container); in CheckAndGetInteger()
2676 return py_container; in CheckAndGetInteger()
2680 PyObject* py_container = NULL; in CheckAndGetInteger() local
2687 py_container = repeated_composite_container::NewContainer( in CheckAndGetInteger()
2690 py_container = repeated_scalar_container::NewContainer( in CheckAndGetInteger()
[all …]