Lines Matching defs:value
199 constexpr size_t concat_string_ref_count(size_t acc, const StringRef &value,
201 return concat_string_ref_count(acc + value.size(),
211 // and returned. In the end, return value points to the location one
214 uint8_t *concat_string_ref_copy(uint8_t *p, const StringRef &value,
216 p = std::copy(std::begin(value), std::end(value), p);
232 // Returns the string which is the concatenation of |value| and |args|
234 // This function assumes that the pointer value value.c_str() was
236 // unused memory region by using alloc.realloc(). If value is empty,
240 const StringRef &value, Args &&...args) {
241 if (value.empty()) {
246 value.size() + concat_string_ref_count(0, std::forward<Args>(args)...);
248 alloc.realloc(const_cast<uint8_t *>(value.byte()), len + 1));
249 auto p = dst + value.size();