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

  /external/webkit/Source/WebCore/platform/qt/
PlatformBridge.h 34 // 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) \
  /external/chromium/googleurl/base/
basictypes.h 78 #define ARRAYSIZE_UNSAFE(a) \
  /external/webkit/Source/WebCore/platform/android/
PlatformBridge.h 36 // 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) \
  /external/chromium/base/
basictypes.h 112 // 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) \
200 // COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,

Completed in 268 milliseconds