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

  /external/vulkan-validation-layers/include/vulkan/
vk_sdk_platform.h 46 // Check for noexcept support using clang, with fallback to Windows or GCC version numbers
47 #ifndef NOEXCEPT
63 #define NOEXCEPT noexcept
65 #define NOEXCEPT
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
core_validation.h 24 #ifndef NOEXCEPT
25 // Check for noexcept support
41 #define NOEXCEPT noexcept
43 #define NOEXCEPT
descriptor_sets.h 23 // Check for noexcept support
24 #ifndef NOEXCEPT
40 #define NOEXCEPT noexcept
42 #define NOEXCEPT
core_validation_types.h 26 #ifndef NOEXCEPT
27 // Check for noexcept support
43 #define NOEXCEPT noexcept
45 #define NOEXCEPT
86 inline bool operator==(VK_OBJECT a, VK_OBJECT b) NOEXCEPT { return a.handle == b.handle && a.type == b.type; }
90 size_t operator()(VK_OBJECT obj) const NOEXCEPT { return hash<uint64_t>()(obj.handle) ^ hash<uint32_t>()(obj.type); }
156 inline bool operator==(MEM_BINDING a, MEM_BINDING b) NOEXCEPT { return a.mem == b.mem && a.offset == b.offset && a.size == b.size; }
160 size_t operator()(MEM_BINDING mb) const NOEXCEPT {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 171 # define NOEXCEPT noexcept
173 # define NOEXCEPT throw()

Completed in 104 milliseconds