Home
last modified time | relevance | path

Searched defs:NullAllocator (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/libcxx/test/support/
Dcontrolled_allocators.h44 class NullAllocator; variable
449 explicit NullAllocator(AllocController& PP) : P(&PP) {} in NullAllocator() function
451 NullAllocator(NullAllocator const& other) : P(other.P) { in NullAllocator() function
455 NullAllocator(NullAllocator&& other) : P(other.P) { in NullAllocator() function
460 NullAllocator(NullAllocator<U> const& other) TEST_NOEXCEPT : P(other.P) { in NullAllocator() function
465 NullAllocator(NullAllocator<U>&& other) TEST_NOEXCEPT : P(other.P) { in NullAllocator() function
/external/libcxx/test/support/
Dcontrolled_allocators.hpp444 class NullAllocator class
450 explicit NullAllocator(AllocController& PP) : P(&PP) {} in NullAllocator() function in NullAllocator
452 NullAllocator(NullAllocator const& other) : P(other.P) { in NullAllocator() function in NullAllocator
456 NullAllocator(NullAllocator&& other) : P(other.P) { in NullAllocator() function in NullAllocator
461 NullAllocator(NullAllocator<U> const& other) TEST_NOEXCEPT : P(other.P) { in NullAllocator() function in NullAllocator
466 NullAllocator(NullAllocator<U>&& other) TEST_NOEXCEPT : P(other.P) { in NullAllocator() function in NullAllocator
/external/llvm-project/compiler-rt/lib/builtins/
Dos_version_check.c109 const void *NullAllocator = dlsym(RTLD_DEFAULT, "kCFAllocatorNull"); in _initializeAvailabilityCheck() local