Searched refs:V8_NONNULL (Results 1 - 3 of 3) sorted by relevance
/third_party/node/deps/v8/include/ |
H A D | v8config.h | 438 // int add(int* x, int y, int* z) V8_NONNULL(1, 3) { return *x + y + *z; } 440 # define V8_NONNULL(...) __attribute__((nonnull(__VA_ARGS__))) macro 442 # define V8_NONNULL(...) /* NOT SUPPORTED */ macro
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8config.h | 505 // int add(int* x, int y, int* z) V8_NONNULL(1, 3) { return *x + y + *z; } 507 # define V8_NONNULL(...) __attribute__((nonnull(__VA_ARGS__))) macro 509 # define V8_NONNULL(...) /* NOT SUPPORTED */ macro
|
/third_party/node/deps/v8/src/utils/ |
H A D | memcopy.h | 265 // The separate declaration is needed for the V8_NONNULL, which is not allowed 268 void CopyChars(DstType* dst, const SrcType* src, size_t count) V8_NONNULL(1, 2);
|
Completed in 4 milliseconds