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

/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DVMInspector.cpp138 void printWTFString(va_list args, bool verbose);
242 printWTFString(args, verbose);
415 void FormatPrinter::printWTFString(va_list args, bool verbose) function in class:JSC::FormatPrinter
192 ASSERT(curr < end + 1); *curr = �; bool success = printArg(�, buffer); if (!success) { errorStr = buffer; goto handleError; } } if (c == �) break; startOfFormatSpecifier = p - 1; ASSERT(*startOfFormatSpecifier == �); c = *p++; if (c == �) { bool success = printArg(�, �); if (!success) { errorStr = p - 2; goto handleError; } continue; } if (c == �) { bool verbose = false; c = *p++; if (UNLIKELY(c == �)) { errorStr = p - 2; goto handleError; } if (c == �) { verbose = true; c= *p++; if (UNLIKELY(c == �)) { errorStr = p - 3; goto handleError; } } switch (c) { case �: { printWTFString(args, verbose); continue; } } } else if (c == �) { int value = va_arg(args, int); printArg(�, value ? � : �); continue; } p = startOfFormatSpecifier; ASSERT(*p == �); curr = buffer; *curr++ = *p++; c = *p++; if (c == � || c == � || c == � || c == � || c == � || c == �) { ABORT_IF_FORMAT_TOO_LONG(curr); *curr++ = c; c = *p++; } while (c >= � && c <= �) argument

Completed in 287 milliseconds