OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RepeatedField
(Results
1 - 2
of
2
) sorted by null
/external/protobuf/src/google/protobuf/
repeated_field.h
35
//
RepeatedField
and RepeatedPtrField are used by generated protocol message
42
// Typically, clients should not need to access
RepeatedField
objects directly,
67
//
RepeatedField
is used to represent repeated fields of a primitive type (in
69
// not ever use a
RepeatedField
directly; they will use the get-by-index,
72
class
RepeatedField
{
74
RepeatedField
();
75
~
RepeatedField
();
92
void MergeFrom(const
RepeatedField
& other);
98
// Resize the
RepeatedField
to a new, smaller size. This is O(1).
111
void Swap(
RepeatedField
* other)
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.h
35
//
RepeatedField
and RepeatedPtrField are used by generated protocol message
42
// Typically, clients should not need to access
RepeatedField
objects directly,
78
//
RepeatedField
is used to represent repeated fields of a primitive type (in
80
// not ever use a
RepeatedField
directly; they will use the get-by-index,
83
class
RepeatedField
{
85
RepeatedField
();
86
RepeatedField
(const
RepeatedField
& other);
88
RepeatedField
(Iter begin, const Iter& end);
89
~
RepeatedField
();
[
all
...]
Completed in 6818 milliseconds