Searched refs:spaceFlags (Results 1 - 5 of 5) 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 DDocumentAccessor.cxx144 int spaceFlags = 0; local
161 spaceFlags |= wsInconsistent;
167 spaceFlags |= wsSpace;
170 spaceFlags |= wsTab;
171 if (spaceFlags & wsSpace)
172 spaceFlags |= wsSpaceTab;
178 *flags = spaceFlags;
H A DWindowAccessor.cxx136 int spaceFlags = 0; local
153 spaceFlags |= wsInconsistent;
159 spaceFlags |= wsSpace;
162 spaceFlags |= wsTab;
163 if (spaceFlags & wsSpace)
164 spaceFlags |= wsSpaceTab;
170 *flags = spaceFlags;
H A DLexPython.cxx122 int spaceFlags = 0; local
123 styler.IndentAmount(lineCurrent, &spaceFlags, IsPyComment);
136 chFlags = (spaceFlags & wsInconsistent) ? chBad : chGood;
138 chFlags = (spaceFlags & wsSpaceTab) ? chBad : chGood;
140 chFlags = (spaceFlags & wsSpace) ? chBad : chGood;
142 chFlags = (spaceFlags & wsTab) ? chBad : chGood;
157 styler.IndentAmount(lineCurrent, &spaceFlags, IsPyComment);
254 styler.IndentAmount(lineCurrent, &spaceFlags, IsPyComment);
319 int spaceFlags = 0; local
321 int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, NUL
[all...]
H A DLexMSSQL.cxx117 int spaceFlags = 0; local
130 int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags);
134 int indentNext = styler.IndentAmount(lineCurrent + 1, &spaceFlags);
H A DLexRuby.cxx244 int spaceFlags = 0; local
246 int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, NULL);

Completed in 99 milliseconds