OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RepeatedScalarContainer
(Results
1 - 4
of
4
) sorted by null
/external/protobuf/python/google/protobuf/pyext/
repeated_scalar_container.h
61
typedef struct
RepeatedScalarContainer
{
65
// proto tree. Every Python
RepeatedScalarContainer
holds a
71
//
RepeatedScalarContainer
does not own this pointer.
85
}
RepeatedScalarContainer
;
91
// Builds a
RepeatedScalarContainer
object, from a parent message and a
100
PyObject* Append(
RepeatedScalarContainer
* self, PyObject* item);
105
int Release(
RepeatedScalarContainer
* self);
111
PyObject* Extend(
RepeatedScalarContainer
* self, PyObject* value);
114
void SetOwner(
RepeatedScalarContainer
* self,
repeated_scalar_container.cc
68
RepeatedScalarContainer
* self, PyObject* list) {
80
static Py_ssize_t Len(
RepeatedScalarContainer
* self) {
86
static int AssignItem(
RepeatedScalarContainer
* self,
191
static PyObject* Item(
RepeatedScalarContainer
* self, Py_ssize_t index) {
290
static PyObject* Subscript(
RepeatedScalarContainer
* self, PyObject* slice) {
354
PyObject* Append(
RepeatedScalarContainer
* self, PyObject* item) {
434
static int AssSubscript(
RepeatedScalarContainer
* self,
497
PyObject* Extend(
RepeatedScalarContainer
* self, PyObject* value) {
525
static PyObject* Insert(
RepeatedScalarContainer
* self, PyObject* args) {
543
static PyObject* Remove(
RepeatedScalarContainer
* self, PyObject* value)
[
all
...]
message.cc
427
int VisitRepeatedScalarContainer(
RepeatedScalarContainer
* container) {
458
RepeatedScalarContainer
* container =
459
reinterpret_cast<
RepeatedScalarContainer
*>(child);
829
int VisitRepeatedScalarContainer(
RepeatedScalarContainer
* container) {
876
// four places such references occur:
RepeatedScalarContainer
,
[
all
...]
extension_dict.cc
76
reinterpret_cast<
RepeatedScalarContainer
*>(
Completed in 90 milliseconds