Lines Matching refs:bmh
130 TextParser bmh(textOut); in textOut() local
133 bmh.skipWhiteSpace(); in textOut()
135 const char* bmhEnd = bmh.trimmedLineEnd(); in textOut()
137 ptrdiff_t bmhLen = bmhEnd - bmh.fChar; in textOut()
143 bmh.reportError("mismatched stdout len\n"); in textOut()
145 } else if (strncmp(bmh.fChar, fiddle.fChar, fiddleLen)) { in textOut()
147 bmh.reportError("mismatched stdout text\n"); in textOut()
150 bmh.skipToLineStart(); in textOut()
152 } while (!bmh.eof() && !fiddle.eof()); in textOut()
154 bmh.reportError("bmh %s missing stdout\n"); in textOut()
155 } else if (!bmh.eof() || !fiddle.eof()) { in textOut()
157 bmh.reportError("%s mismatched stdout eof\n"); in textOut()