Searched refs:IsCommentLine (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DLexPython.cxx288 static bool IsCommentLine(int line, Accessor &styler) { function
326 (!IsCommentLine(lineCurrent, styler)) &&
340 prevComment = foldComment && IsCommentLine(lineCurrent - 1, styler);
360 const int comment = foldComment && IsCommentLine(lineCurrent, styler);
362 IsCommentLine(lineNext, styler) && (lev > SC_FOLDLEVELBASE));
393 (lineNext <= docLines && IsCommentLine(lineNext, styler)))) {
H A DLexBash.cxx590 static bool IsCommentLine(int line, Accessor &styler) { function
621 if (foldComment && atEOL && IsCommentLine(lineCurrent, styler))
623 if (!IsCommentLine(lineCurrent - 1, styler)
624 && IsCommentLine(lineCurrent + 1, styler))
626 else if (IsCommentLine(lineCurrent - 1, styler)
627 && !IsCommentLine(lineCurrent+1, styler))
H A DLexPerl.cxx1103 static bool IsCommentLine(int line, Accessor &styler) { function
1145 if (foldComment && atEOL && IsCommentLine(lineCurrent, styler))
1147 if (!IsCommentLine(lineCurrent - 1, styler)
1148 && IsCommentLine(lineCurrent + 1, styler))
1150 else if (IsCommentLine(lineCurrent - 1, styler)
1151 && !IsCommentLine(lineCurrent+1, styler))

Completed in 43 milliseconds