OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NullAllocator
(Results
1 - 3
of
3
) sorted by null
/external/libcxx/test/support/
controlled_allocators.hpp
45
class
NullAllocator
;
46
// '
NullAllocator
' is an instrumented test type which implements the
444
class
NullAllocator
449
NullAllocator
() = delete;
450
explicit
NullAllocator
(AllocController& PP) : P(&PP) {}
452
NullAllocator
(
NullAllocator
const& other) : P(other.P) {
456
NullAllocator
(
NullAllocator
&& other) : P(other.P) {
461
NullAllocator
(NullAllocator<U> const& other) TEST_NOEXCEPT : P(other.P)
[
all
...]
/external/libcxx/test/libcxx/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/
db_deallocate.pass.cpp
32
using Alloc =
NullAllocator
<char>;
/external/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/
do_allocate_and_deallocate.pass.cpp
63
using Alloc =
NullAllocator
<char>;
Completed in 342 milliseconds