Home
last modified time | relevance | path

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

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