Lines Matching defs:copy
7 * a copy of this software and associated documentation files (the
9 * without limitation the rights to use, copy, modify, merge, publish,
54 // copy constructor
56 ImmutableString copy = src;
58 CU_ASSERT("charlie" == copy);
59 CU_ASSERT(7 == copy.size());
61 // copy assignment
69 ImmutableString move = std::move(copy);
73 CU_ASSERT("" == copy);
74 CU_ASSERT(0 == copy.size());