Lines Matching refs:ParserCommon
13 void ParserCommon::checkLineLength(size_t len, const char* str) { in checkLineLength()
36 string ParserCommon::ConvertRef(const string str, bool first) { in ConvertRef()
50 void ParserCommon::CopyToFile(string oldFile, string newFile) { in CopyToFile()
52 char* buffer = ParserCommon::ReadToBuffer(newFile, &bufferSize); in CopyToFile()
63 string ParserCommon::HtmlFileName(string bmhFileName) { in HtmlFileName()
71 bool ParserCommon::parseFile(const char* fileOrPath, const char* suffix, OneFile oneFile) { in parseFile()
102 bool ParserCommon::parseStatus(const char* statusFile, const char* suffix, StatusFilter filter) { in parseStatus()
119 bool ParserCommon::parseSetup(const char* path) { in parseSetup()
161 void ParserCommon::stringAppend(string& result, char ch) const { in stringAppend()
168 void ParserCommon::stringAppend(string& result, string str) const { in stringAppend()
186 void ParserCommon::stringAppend(string& result, const Definition* def) const { in stringAppend()
190 bool ParserCommon::writeBlockIndent(int size, const char* data, bool ignoreIdent) { in writeBlockIndent()
232 bool ParserCommon::writeBlockTrim(int size, const char* data) { in writeBlockTrim()
281 void ParserCommon::writePending() { in writePending()
317 void ParserCommon::writeString(const char* str) { in writeString()
337 char* ParserCommon::ReadToBuffer(string filename, int* size) { in ReadToBuffer()
352 char* ParserCommon::FindDateTime(char* buffer, int size) { in FindDateTime()
366 bool ParserCommon::WrittenFileDiffers(string filename, string readname) { in WrittenFileDiffers()
368 char* written = ParserCommon::ReadToBuffer(filename, &writtenSize); in WrittenFileDiffers()
372 char* read = ParserCommon::ReadToBuffer(readname, &readSize); in WrittenFileDiffers()