Searched refs:newValue (Results 1 – 3 of 3) sorted by relevance
115 /* 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() argument172 storage_.value = std::move(newValue); in assign()174 construct(std::move(newValue)); in assign()178 void assign(const Value& newValue) { in assign() argument180 storage_.value = newValue; in assign()182 construct(newValue); in assign()
952 std::string* newValue);957 std::string* newValue);961 std::string* newValue);964 Slice delta, std::string* newValue);
1276 std::string* newValue) { in updateInPlaceSmallerSize() argument1278 *newValue = std::string(delta.size(), 'c'); in updateInPlaceSmallerSize()1291 std::string* newValue) { in updateInPlaceSmallerVarintSize() argument1293 *newValue = std::string(delta.size(), 'c'); in updateInPlaceSmallerVarintSize()1306 std::string* newValue) { in updateInPlaceLargerSize() argument1307 *newValue = std::string(delta.size(), 'c'); in updateInPlaceLargerSize()