Lines Matching defs:result
32 int result = vsnprintf(space, sizeof(space), format, backup_ap);
35 if (result < static_cast<int>(sizeof(space))) {
36 if (result >= 0) {
38 dst->append(space, result);
42 if (result < 0) {
50 int length = result+1;
55 result = vsnprintf(buf, length, format, backup_ap);
58 if (result >= 0 && result < length) {
60 dst->append(buf, result);
68 std::string result;
69 StringAppendV(&result, fmt, ap);
71 return result;