HomeSort by relevance Sort by last modified time
    Searched defs:ARRAYSIZE_UNSAFE (Results 1 - 3 of 3) sorted by null

  /external/chromium/googleurl/base/
basictypes.h 78 #define ARRAYSIZE_UNSAFE(a) \
  /external/webkit/WebCore/platform/android/
PlatformBridge.h 35 // V8 bindings use the ARRAYSIZE_UNSAFE macro. This macro was copied
38 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
44 // The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type
47 // ARRAYSIZE_UNSAFE catches a few type errors. If you see a compiler error
51 // when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.
52 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
57 // ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in
75 #define ARRAYSIZE_UNSAFE(a) \
  /external/chromium/base/
basictypes.h 104 // 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) \
192 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,

Completed in 179 milliseconds