/ndk/sources/cxx-stl/llvm-libc++/test/containers/ |
Emplaceable.h | 11 int int_; member in class:Emplaceable 14 Emplaceable() : int_(0), double_(0) {} 15 Emplaceable(int i, double d) : int_(i), double_(d) {} 17 : int_(x.int_), double_(x.double_) 18 {x.int_ = 0; x.double_ = 0;} 20 {int_ = x.int_; x.int_ = 0; 25 {return int_ == x.int_ && double_ == x.double_; [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
allocate_shared.pass.cpp | 29 A(int i, char c) : int_(i), char_(c) {++count;} 31 : int_(a.int_), char_(a.char_) 35 int get_int() const {return int_;} 38 int int_; member in struct:A
|
make_shared.pass.cpp | 38 A(int i, char c) : int_(i), char_(c) {++count;} 40 : int_(a.int_), char_(a.char_) 44 int get_int() const {return int_;} 47 int int_; member in struct:A
|