Home | History | Annotate | Download | only in parser

Lines Matching defs:formattedMessage

369 void XMLDocumentParser::handleError(XMLErrors::ErrorType type, const char* formattedMessage, TextPosition position)
371 m_xmlErrors.handleError(type, formattedMessage, position);
1110 char formattedMessage[1024];
1111 vsnprintf(formattedMessage, sizeof(formattedMessage) - 1, message, args);
1114 m_pendingCallbacks.append(adoptPtr(new PendingErrorCallback(type, reinterpret_cast<const xmlChar*>(formattedMessage), lineNumber(), columnNumber())));
1118 handleError(type, formattedMessage, textPosition());