Home
last modified time | relevance | path

Searched defs:Movable (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-pass-by-value.cpp9 struct Movable { struct
10 int a, b, c;
12 Movable(const Movable &) {} in Movable() function
13 Movable(Movable &&) {} in Movable() argument
Dreadability-deleted-default.cpp40 class Movable { class
Dperformance-move-constructor-init.cpp99 struct Movable { struct
103 ~Movable() {} in ~Movable() argument
/external/python/pybind11/tests/
Dtest_virtual_functions.cpp119 class Movable { class
121 Movable(int a, int b) : value{a+b} { print_created(this, a, b); } in Movable() function in Movable
122 Movable(const Movable &m) { value = m.value; print_copy_created(this); } in Movable() function in Movable
123 Movable(Movable &&m) { value = std::move(m.value); print_move_created(this); } in Movable() function in Movable
/external/libchrome/mojo/public/cpp/bindings/tests/
Dinterface_ptr_unittest.cc282 TEST_P(InterfacePtrTest, Movable) { in TEST_P() argument
/external/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc604 TEST(Movable, Works) { in TEST() argument