• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/

Lines Matching refs:styler

53                             Accessor &styler, bool caseSensitive) {
60 bool stylingWithinPreprocessor = styler.GetPropertyInt("styling.within.preprocessor") != 0;
70 int lineCurrent = styler.GetLine(startPos);
72 int chBack = styler.SafeGetCharAt(startPos-1, 0);
73 int chBack2 = styler.SafeGetCharAt(startPos-2, 0);
76 lineEndChar = styler.SafeGetCharAt(startPos-3, 0);
87 while (--back && IsSpaceEquiv(styler.StyleAt(back)))
89 if (styler.StyleAt(back) == SCE_C_OPERATOR) {
90 chPrevNonWhite = styler.SafeGetCharAt(back);
94 StyleContext sc(startPos, length, initStyle, styler);
347 Accessor &styler) {
348 bool foldComment = styler.GetPropertyInt("fold.comment") != 0;
349 bool foldPreprocessor = styler.GetPropertyInt("fold.preprocessor") != 0;
350 bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0;
351 bool foldAtElse = styler.GetPropertyInt("fold.at.else", 0) != 0;
354 int lineCurrent = styler.GetLine(startPos);
357 levelCurrent = styler.LevelAt(lineCurrent-1) >> 16;
360 char chNext = styler[startPos];
361 int styleNext = styler.StyleAt(startPos);
365 chNext = styler.SafeGetCharAt(i + 1);
368 styleNext = styler.StyleAt(i + 1);
380 char chNext2 = styler.SafeGetCharAt(i + 2);
391 while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) {
394 if (styler.Match(j, "region") || styler.Match(j, "if")) {
396 } else if (styler.Match(j, "end")) {
423 if (lev != styler.LevelAt(lineCurrent)) {
424 styler.SetLevel(lineCurrent, lev);
437 Accessor &styler) {
438 FoldNoBoxCppDoc(startPos, length, initStyle, styler);
451 Accessor &styler) {
452 ColouriseCppDoc(startPos, length, initStyle, keywordlists, styler, true);
456 Accessor &styler) {
457 ColouriseCppDoc(startPos, length, initStyle, keywordlists, styler, false);