Lines Matching refs:result
52 int result = vsnprintfT(stack_buf, std::size(stack_buf), format, ap_copy);
55 if (result >= 0 && result < static_cast<int>(std::size(stack_buf))) {
57 dst->append(stack_buf, result);
64 if (result < 0) {
77 // We need exactly "result + 1" characters.
78 mem_length = result + 1;
94 result = vsnprintfT(&mem_buf[0], mem_length, format, ap_copy);
97 if ((result >= 0) && (result < mem_length)) {
99 dst->append(&mem_buf[0], result);
110 std::string result;
111 StringAppendV(&result, format, ap);
113 return result;
117 std::string result;
118 StringAppendV(&result, format, ap);
119 return result;