Lines Matching defs:result
53 int result = vsnprintfT(stack_buf, arraysize(stack_buf), format, ap_copy);
56 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) {
58 dst->append(stack_buf, result);
65 if (result < 0) {
78 // We need exactly "result + 1" characters.
79 mem_length = result + 1;
95 result = vsnprintfT(&mem_buf[0], mem_length, format, ap_copy);
98 if ((result >= 0) && (result < mem_length)) {
100 dst->append(&mem_buf[0], result);
111 std::string result;
112 StringAppendV(&result, format, ap);
114 return result;
118 std::string result;
119 StringAppendV(&result, format, ap);
120 return result;