Lines Matching defs:pOut

46  * @param   pOut                The output stream.
49 bool rewrite_StripTrailingBlanks(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
63 rc = ScmStreamPutLine(pOut, pchLine, cchLine, enmEol);
69 rc = ScmStreamPutLine(pOut, pchLine, cchLine, enmEol);
85 * @param pOut The output stream.
88 bool rewrite_ExpandTabs(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
103 rc = ScmStreamPutLine(pOut, pchLine, cchLine, enmEol);
112 ScmStreamWrite(pOut, pchChunk, cchChunk);
115 ScmStreamWrite(pOut, g_szTabSpaces, cchToTab);
123 rc = ScmStreamPutLine(pOut, pchChunk, cchLeft, enmEol);
143 * @param pOut The output stream.
148 static bool rewrite_ForceEol(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings,
166 int rc = ScmStreamPutLine(pOut, pchLine, cchLine, enmEol);
203 * @param pOut The output stream.
206 bool rewrite_ForceNativeEol(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
209 return rewrite_ForceEol(pState, pIn, pOut, pSettings, SCMEOL_CRLF, "native");
211 return rewrite_ForceEol(pState, pIn, pOut, pSettings, SCMEOL_LF, "native");
220 * @param pOut The output stream.
223 bool rewrite_ForceLF(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
225 return rewrite_ForceEol(pState, pIn, pOut, pSettings, SCMEOL_LF, "LF");
233 * @param pOut The output stream.
236 bool rewrite_ForceCRLF(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
238 return rewrite_ForceEol(pState, pIn, pOut, pSettings, SCMEOL_CRLF, "CRLF");
247 * @param pOut The output stream.
252 bool rewrite_AdjustTrailingLines(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
291 ScmStreamCopyLines(pOut, pIn, cCopied);
296 ScmStreamPutLine(pOut, "", 0, ScmStreamGetEol(pIn));
302 ScmStreamWrite(pOut, "\n", 1);
304 ScmStreamWrite(pOut, "\r\n", 2);
317 * @param pOut The output stream.
320 bool rewrite_SvnNoExecutable(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
343 * @param pOut The output stream.
346 bool rewrite_SvnKeywords(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
393 * @param pOut The output stream.
396 bool rewrite_Makefile_kup(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
410 * @param pOut The output stream.
419 bool rewrite_Makefile_kmk(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)
429 * @param pOut The output stream.
455 bool rewrite_C_and_CPP(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings)