Searched defs:formatLength (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp152 size_t formatLength = strlen(format); local
153 OwnPtr<char[]> formatWithPrefix = adoptArrayPtr(new char[prefixLength + formatLength + 1]);
155 memcpy(formatWithPrefix.get() + prefixLength, format, formatLength);
156 formatWithPrefix[prefixLength + formatLength] = 0;
163 size_t formatLength = strlen(format); local
164 if (formatLength && format[formatLength - 1] == '\n') {
169 OwnPtr<char[]> formatWithNewline = adoptArrayPtr(new char[formatLength + 2]);
170 memcpy(formatWithNewline.get(), format, formatLength);
171 formatWithNewline[formatLength]
[all...]

Completed in 113 milliseconds