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

/external/webkit/Source/WebCore/platform/qt/
H A DPlatformBridge.h34 // V8 bindings use the ARRAYSIZE_UNSAFE macro. This macro was copied
37 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
43 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
46 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
50 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
51 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
56 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
74 #define ARRAYSIZE_UNSAFE(a) \ macro
/external/chromium/googleurl/base/
H A Dbasictypes.h78 #define ARRAYSIZE_UNSAFE(a) \ macro
/external/webkit/Source/WebCore/platform/android/
H A DPlatformBridge.h36 // V8 bindings use the ARRAYSIZE_UNSAFE macro. This macro was copied
39 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
45 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
48 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
52 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
53 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
58 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
76 #define ARRAYSIZE_UNSAFE(a) \ macro
/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,

Completed in 327 milliseconds