Searched defs:ARRAYSIZE_UNSAFE (Results 1 - 7 of 7) sorted by relevance

/external/chromium/googleurl/base/
H A Dbasictypes.h78 #define ARRAYSIZE_UNSAFE(a) \ macro
/external/chromium_org/ppapi/tests/
H A Dtest_audio.cc15 #define ARRAYSIZE_UNSAFE(a) \ macro
82 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kSampleRates); i++) {
85 for (size_t j = 0; j < ARRAYSIZE_UNSAFE(kRequestFrameCounts); j++) {
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/
H A Dbasictypes.h112 // cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below. This is
134 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
140 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
143 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
147 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
148 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
153 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
171 #if !defined(ARRAYSIZE_UNSAFE)
172 #define ARRAYSIZE_UNSAFE(a) \ macro
181 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_name
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dbasictypes.h112 // cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below. This is
134 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
140 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
143 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
147 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
148 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
153 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
171 #if !defined(ARRAYSIZE_UNSAFE)
172 #define ARRAYSIZE_UNSAFE(a) \ macro
181 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_name
[all...]
/external/chromium/base/
H A Dbasictypes.h112 // cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below. This is
132 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
138 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
141 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
145 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
146 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
151 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
169 #define ARRAYSIZE_UNSAFE(a) \ macro
200 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,
/external/chromium_org/base/
H A Dbasictypes.h120 // cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below. This is
140 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
146 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
149 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
153 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
154 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
159 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
177 #define ARRAYSIZE_UNSAFE(a) \ macro
208 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,
/external/chromium_org/third_party/cld/base/
H A Dbasictypes.h104 // cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below. This is
124 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
130 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
133 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
137 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
138 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
143 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
161 #define ARRAYSIZE_UNSAFE(a) \ macro
192 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,

Completed in 304 milliseconds