Lines Matching defs:args
200 Args &&...args) {
202 std::forward<Args>(args)...);
215 Args &&...args) {
217 return concat_string_ref_copy(p, std::forward<Args>(args)...);
220 // Returns the string which is the concatenation of |args| in the
223 StringRef concat_string_ref(BlockAllocator &alloc, Args &&...args) {
224 size_t len = concat_string_ref_count(0, std::forward<Args>(args)...);
227 p = concat_string_ref_copy(p, std::forward<Args>(args)...);
232 // Returns the string which is the concatenation of |value| and |args|
240 const StringRef &value, Args &&...args) {
242 return concat_string_ref(alloc, std::forward<Args>(args)...);
246 value.size() + concat_string_ref_count(0, std::forward<Args>(args)...);
250 p = concat_string_ref_copy(p, std::forward<Args>(args)...);