Searched refs:to_append (Results 1 – 5 of 5) sorted by relevance
45 char* StrCatStr(char* main, int main_max_length, const char* to_append) { in StrCatStr() argument51 while ((*to_append != 0) && (current < current_end)) { in StrCatStr()52 *current = *to_append; in StrCatStr()54 ++to_append; in StrCatStr()
120 to_append = []125 to_append += [' [' + s.replacement + '.' + found.group(2) + ']']127 if len(to_append) > 0:130 for s in to_append:
52 StringPiece to_append = str.substr(0, space); in WordWrap() local55 while (str_util::EndsWith(to_append, " ")) { in WordWrap()56 to_append.remove_suffix(1); in WordWrap()62 strings::StrAppend(&result, to_append); in WordWrap()
44 string StrAppend(string* to_append, const Args&... args) { in StrAppend() argument45 *to_append += StrCat(args...); in StrAppend()46 return *to_append; in StrAppend()
2162 def tf_genrule_cmd_append_to_srcs(to_append):2163 return ("cat $(SRCS) > $(@) && " + "echo >> $(@) && " + "echo " + to_append +