Searched refs:ap_copy (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/base/strings/ |
D | stringprintf.cc | 50 va_list ap_copy; in StringAppendVT() local 51 GG_VA_COPY(ap_copy, ap); in StringAppendVT() 56 int result = vsnprintfT(stack_buf, arraysize(stack_buf), format, ap_copy); in StringAppendVT() 57 va_end(ap_copy); in StringAppendVT() 97 GG_VA_COPY(ap_copy, ap); in StringAppendVT() 98 result = vsnprintfT(&mem_buf[0], mem_length, format, ap_copy); in StringAppendVT() 99 va_end(ap_copy); in StringAppendVT()
|
/external/chromium_org/third_party/npapi/npspy/common/ |
D | format.cpp | 120 va_list ap_copy; in StringAppendVT() local 121 GG_VA_COPY(ap_copy, ap); in StringAppendVT() 126 int result = vsnprintf(stack_buf, arraysize(stack_buf), format, ap_copy); in StringAppendVT() 127 va_end(ap_copy); in StringAppendVT() 167 GG_VA_COPY(ap_copy, ap); in StringAppendVT() 168 result = vsnprintf(&mem_buf[0], mem_length, format, ap_copy); in StringAppendVT() 169 va_end(ap_copy); in StringAppendVT()
|