OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GOOGLE_ARRAYSIZE
(Results
1 - 7
of
7
) sorted by null
/external/protobuf/src/google/protobuf/io/
printer_unittest.cc
56
ArrayOutputStream output(buffer,
GOOGLE_ARRAYSIZE
(buffer), block_size);
tokenizer_unittest.cc
64
// defined such that the
GOOGLE_ARRAYSIZE
() macro works on them. Example:
84
for (int i = 0; i <
GOOGLE_ARRAYSIZE
(CASES); i++) { \
103
for (int i = 0; i <
GOOGLE_ARRAYSIZE
(CASES1); i++) { \
104
for (int j = 0; j <
GOOGLE_ARRAYSIZE
(CASES2); j++) { \
479
for (int i = 0; i <
GOOGLE_ARRAYSIZE
(kTokens); i++) {
zero_copy_stream_unittest.cc
128
const int IoTest::kBlockSizeCount =
GOOGLE_ARRAYSIZE
(IoTest::kBlockSizes);
680
ConcatenatingInputStream input(streams,
GOOGLE_ARRAYSIZE
(streams));
coded_stream_unittest.cc
68
// defined such that the
GOOGLE_ARRAYSIZE
() macro works on them. Example:
91
for (int i = 0; i <
GOOGLE_ARRAYSIZE
(CASES); i++) { \
110
for (int i = 0; i <
GOOGLE_ARRAYSIZE
(CASES1); i++) { \
111
for (int j = 0; j <
GOOGLE_ARRAYSIZE
(CASES2); j++) { \
[
all
...]
/external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc
75
for (int i = 0; i <
GOOGLE_ARRAYSIZE
(kKeywordList); i++) {
/external/protobuf/src/google/protobuf/stubs/
common.h
222
// The
GOOGLE_ARRAYSIZE
(arr) macro returns the # of elements in an array arr.
226
//
GOOGLE_ARRAYSIZE
catches a few type errors. If you see a compiler error
230
// when using
GOOGLE_ARRAYSIZE
, you are (wrongfully) giving it a pointer.
231
// You should only use
GOOGLE_ARRAYSIZE
on statically allocated arrays.
256
#undef
GOOGLE_ARRAYSIZE
257
#define
GOOGLE_ARRAYSIZE
(a) \
[
all
...]
/external/protobuf/src/google/protobuf/compiler/
command_line_interface_unittest.cc
275
for (int i = 0; i <
GOOGLE_ARRAYSIZE
(possible_paths); i++) {
[
all
...]
Completed in 362 milliseconds