Searched refs:formatWithPrefix (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp153 OwnPtr<char[]> formatWithPrefix = adoptArrayPtr(new char[prefixLength + formatLength + 1]); local
154 memcpy(formatWithPrefix.get(), prefix, prefixLength);
155 memcpy(formatWithPrefix.get() + prefixLength, format, formatLength);
156 formatWithPrefix[prefixLength + formatLength] = 0;
158 vprintf_stderr_common(formatWithPrefix.get(), args);

Completed in 25 milliseconds