Home | History | Annotate | Download | only in base

Lines Matching refs:result

35   int result = vsnprintf(space, sizeof(space), format, backup_ap);
38 if (result < static_cast<int>(sizeof(space))) {
39 if (result >= 0) {
41 dst->append(space, result);
45 if (result < 0) {
53 int length = result + 1;
58 result = vsnprintf(buf, length, format, backup_ap);
61 if (result >= 0 && result < length) {
63 dst->append(buf, result);
71 std::string result;
72 StringAppendV(&result, fmt, ap);
74 return result;