Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/third-party/folly/folly/
DOptional.h115 /* implicit */ Optional(Value&& newValue) noexcept( in noexcept()
117 construct(std::move(newValue)); in noexcept()
120 /* implicit */ Optional(const Value& newValue) noexcept( in noexcept()
122 construct(newValue); in noexcept()
170 void assign(Value&& newValue) { in assign() argument
172 storage_.value = std::move(newValue); in assign()
174 construct(std::move(newValue)); in assign()
178 void assign(const Value& newValue) { in assign() argument
180 storage_.value = newValue; in assign()
182 construct(newValue); in assign()
/rocksdb-6.9/db/
Ddb_test_util.h952 std::string* newValue);
957 std::string* newValue);
961 std::string* newValue);
964 Slice delta, std::string* newValue);
Ddb_test_util.cc1276 std::string* newValue) { in updateInPlaceSmallerSize() argument
1278 *newValue = std::string(delta.size(), 'c'); in updateInPlaceSmallerSize()
1291 std::string* newValue) { in updateInPlaceSmallerVarintSize() argument
1293 *newValue = std::string(delta.size(), 'c'); in updateInPlaceSmallerVarintSize()
1306 std::string* newValue) { in updateInPlaceLargerSize() argument
1307 *newValue = std::string(delta.size(), 'c'); in updateInPlaceLargerSize()