Lines Matching refs:bmh
120 TextParser bmh(textOut); in textOut() local
123 bmh.skipWhiteSpace(); in textOut()
125 const char* bmhEnd = bmh.trimmedLineEnd(); in textOut()
127 ptrdiff_t bmhLen = bmhEnd - bmh.fChar; in textOut()
133 bmh.reportError("mismatched stdout len\n"); in textOut()
135 } else if (strncmp(bmh.fChar, fiddle.fChar, fiddleLen)) { in textOut()
138 bmh.reportError("mismatched stdout text\n"); in textOut()
141 bmh.skipToLineStart(); in textOut()
143 } while (!bmh.eof() && !fiddle.eof()); in textOut()
145 bmh.reportError("bmh %s missing stdout\n"); in textOut()
146 } else if (!bmh.eof() || !fiddle.eof()) { in textOut()
148 bmh.reportError("%s mismatched stdout eof\n"); in textOut()