Home | History | Annotate | Download | only in strings

Lines Matching defs:result

61   int result = vsnprintfT(stack_buf, arraysize(stack_buf), format, ap_copy);
64 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) {
66 dst->append(stack_buf, result);
73 if (result < 0) {
86 // We need exactly "result + 1" characters.
87 mem_length = result + 1;
103 result = vsnprintfT(&mem_buf[0], mem_length, format, ap_copy);
106 if ((result >= 0) && (result < mem_length)) {
108 dst->append(&mem_buf[0], result);
119 std::string result;
120 StringAppendV(&result, format, ap);
122 return result;
129 std::wstring result;
130 StringAppendV(&result, format, ap);
132 return result;
137 std::string result;
138 StringAppendV(&result, format, ap);
139 return result;