Searched refs:chNext (Results 1 - 25 of 45) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DLexBash.cxx214 char chNext = styler[startPos]; local
218 char ch = chNext;
222 chNext = styler.SafeGetCharAt(i + 1);
226 chNext = styler.SafeGetCharAt(i + 2);
263 ch = chNext;
264 chNext = chNext2;
270 if (chNext == 'x' || chNext == 'X') {
273 ch = chNext;
274 chNext
612 char chNext = styler[startPos]; local
[all...]
H A DLexInno.cxx27 char chNext = styler[startPos]; local
46 ch = chNext;
47 chNext = styler.SafeGetCharAt(i + 1);
50 chNext = styler.SafeGetCharAt(i + 2);
72 } else if (ch == '{' && chNext == '#') {
75 } else if ((ch == '{' && (chNext == ' ' || chNext == '\t'))
76 || (ch == '(' && chNext == '*')) {
124 chNext = styler[i--];
162 chNext
228 char chNext = styler[startPos]; local
[all...]
H A DLexMPT.cxx76 char chNext = styler.SafeGetCharAt(startPos); local
83 char ch = chNext;
84 chNext = styler.SafeGetCharAt(i + 1);
90 if (ch == '\r' && chNext == '\n') {
91 line += chNext; // Gets the '\n'
93 chNext = styler.SafeGetCharAt(i + 1); // Gets character of next line
116 char chNext = styler.SafeGetCharAt(startPos); local
126 char ch = chNext;
127 chNext = styler.SafeGetCharAt(i + 1);
129 if (ch == '\r' && chNext
[all...]
H A DStyleContext.h19 chNext = static_cast<unsigned char>(styler.SafeGetCharAt(pos+1));
20 if (styler.IsLeadByte(static_cast<char>(chNext))) {
21 chNext = chNext << 8;
22 chNext |= static_cast<unsigned char>(styler.SafeGetCharAt(pos+2));
27 atLineEnd = (ch == '\r' && chNext != '\n') ||
39 int chNext; member in class:StyleContext
51 chNext(0) {
76 ch = chNext;
82 chNext
[all...]
H A DLexPerl.cxx228 char chNext = styler[startPos]; local
232 char ch = chNext;
236 chNext = styler.SafeGetCharAt(i + 1);
240 chNext = styler.SafeGetCharAt(i + 2);
287 if (isdigit(ch) || (isdigit(chNext) &&
294 if (chNext == 'x') {
296 } else if (chNext == 'b') {
298 } else if (isdigit(chNext)) {
303 ch = chNext;
304 chNext
1131 char chNext = styler[startPos]; local
[all...]
H A DLexBullant.cxx68 char chNext = styler[startPos]; local
74 char ch = chNext;
75 chNext = styler.SafeGetCharAt(i + 1);
77 if ((ch == '\r' && chNext != '\n') || (ch == '\n')) {
115 chNext = styler.SafeGetCharAt(i + 2);
125 } else if (ch == '@' && chNext == 'o') {
147 chNext = styler.SafeGetCharAt(i + 1);
163 if (ch == '@' && chNext == 'o') {
178 if (chNext == '\"' || chNext
[all...]
H A DLexEScript.cxx58 if (sc.chNext == '\n' || sc.chNext == '\r') {
60 if (sc.ch == '\r' && sc.chNext == '\n') {
111 if (sc.chNext == '\"' || sc.chNext == '\\') {
121 if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) {
183 char chNext = styler[startPos]; local
191 char ch = chNext;
192 chNext = styler.SafeGetCharAt(i + 1);
196 bool atEOL = (ch == '\r' && chNext !
[all...]
H A DLexAsm.cxx78 if (sc.chNext == '\n' || sc.chNext == '\r') {
80 if (sc.ch == '\r' && sc.chNext == '\n') {
123 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
134 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
149 } else if (isdigit(sc.ch) || (sc.ch == '.' && isdigit(sc.chNext))) {
[all...]
H A DLexConf.cxx29 char chNext = styler[startPos]; local
44 char ch = chNext;
45 chNext = styler.SafeGetCharAt(i + 1);
48 chNext = styler.SafeGetCharAt(i + 2);
113 chNext = styler[i--];
146 chNext = styler[i--];
169 chNext = styler[i--];
H A DLexCrontab.cxx28 char chNext = styler[startPos]; local
46 char ch = chNext;
47 chNext = styler.SafeGetCharAt(i + 1);
50 chNext = styler.SafeGetCharAt(i + 2);
189 chNext = styler[i--];
203 chNext = styler[i--];
H A DLexRebol.cxx140 if (sc.ch == ':' && !IsASpace(sc.chNext)) {
194 if (sc.ch == '^' && sc.chNext == '\"') {
236 if (IsAnOperator(sc.ch, sc.chNext, sc.GetRelative(2))) {
238 } else if (IsBinaryStart(sc.ch, sc.chNext, sc.GetRelative(2), sc.GetRelative(3))) {
240 } else if (IsAWordStart(sc.ch, sc.chNext)) {
258 } else if (sc.ch == '#' && sc.chNext == '"') {
261 } else if (sc.ch == '#' && sc.chNext != '"' && sc.chNext != '{' ) {
277 char chNext = styler[startPos]; local
280 char ch = chNext;
[all...]
H A DLexPOV.cxx160 if (strchr("abfnrtuv0'\"", sc.chNext)) {
179 if (sc.chNext == '\"' || sc.chNext == '\\') {
191 if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) {
236 char chNext = styler[startPos]; local
240 char ch = chNext;
241 chNext = styler.SafeGetCharAt(i + 1);
245 bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n');
255 if ((ch == '/') && (chNext == '/')) {
H A DLexPascal.cxx119 char chNext = styler[startPos]; local
139 char ch = chNext;
141 chNext = styler.SafeGetCharAt(i + 1);
143 if ((ch == '\r' && chNext != '\n') || (ch == '\n')) {
156 chNext = styler.SafeGetCharAt(i + 2);
166 } else if (ch == '{' && chNext != '$' && chNext != '&') {
169 } else if (ch == '(' && chNext == '*'
174 } else if (ch == '/' && chNext == '/') {
180 } else if (ch == '{' && (chNext
278 char chNext = styler[startPos]; local
[all...]
H A DLexSpecman.cxx62 if (sc.chNext == '\n' || sc.chNext == '\r') {
64 if (sc.ch == '\r' && sc.chNext == '\n') {
113 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
129 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
143 if (sc.ch == '$' && IsADigit(sc.chNext)) {
210 char chNext = styler[startPos]; local
[all...]
H A DLexCsound.cxx64 if (sc.chNext == '\n' || sc.chNext == '\r') {
66 if (sc.ch == '\r' && sc.chNext == '\n') {
124 } else if (isdigit(sc.ch) || (sc.ch == '.' && isdigit(sc.chNext))) {
153 char chNext = styler[startPos]; local
157 char ch = chNext;
158 chNext = styler.SafeGetCharAt(i + 1);
161 bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n');
H A DLexTADS3.cxx56 static inline bool IsEOL(const int ch, const int chNext) { argument
57 return (ch == '\r' && chNext != '\n') || (ch == '\n');
96 || (!isdigit(sc.chPrev) && sc.ch == '.' && isdigit(sc.chNext));
126 if (IsEOL(sc.ch, sc.chNext)) {
187 if (IsEOL(sc.ch, sc.chNext)) {
275 if (IsEOL(sc.ch, sc.chNext)) {
313 if (IsEOL(sc.ch, sc.chNext)) {
362 if (IsEOL(sc.ch, sc.chNext)) {
392 if (IsEOL(sc.ch, sc.chNext)) {
409 if (IsEOL(sc.ch, sc.chNext)) {
678 char chNext = styler[startPos]; local
[all...]
H A DLexPS.cxx130 if (sc.chNext == '+' || sc.chNext == '-')
199 if (sc.chNext == '/') {
206 if (sc.chNext == '<') {
209 } else if (sc.chNext == '~') {
215 } else if (sc.ch == '>' && sc.chNext == '>') {
225 if (sc.chNext == '%' && sc.atLineStart) {
228 if (sc.chNext == '+') {
236 IsABaseNDigit(sc.chNext, 10)) {
242 } else if ((sc.ch == '+' || sc.ch == '-') && sc.chNext
290 char chNext = styler[startPos]; local
[all...]
H A DLexRuby.cxx197 static void redo_char(int &i, char &ch, char &chNext, char &chNext2, argument
200 chNext2 = chNext;
201 chNext = ch;
205 static void advance_char(int &i, char &ch, char &chNext, char &chNext2) { argument
207 ch = chNext;
208 chNext = chNext2;
645 char chNext = styler.SafeGetCharAt(startPos); local
659 char ch = chNext;
660 chNext = styler.SafeGetCharAt(i + 1);
664 chNext
1458 char chNext = styler[startPos]; local
[all...]
H A DLexBaan.cxx71 if (sc.atLineEnd && (sc.chNext != '^')) {
89 } else if ((sc.atLineEnd) && (sc.chNext != '^')) {
97 if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) {
142 char chNext = styler[startPos]; local
146 char ch = chNext;
147 chNext = styler.SafeGetCharAt(i + 1);
151 bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n');
H A DLexCPP.cxx112 if (sc.chNext == '\n' || sc.chNext == '\r') {
114 if (sc.ch == '\r' && sc.chNext == '\n') {
177 if ((IsASpace(sc.chPrev) || sc.chPrev == '*') && (!IsASpace(sc.chNext))) {
193 if ((IsASpace(sc.chPrev) || sc.chPrev == '/' || sc.chPrev == '!') && (!IsASpace(sc.chNext))) {
221 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
232 if (sc.chNext == '\"' || sc.chNext
360 char chNext = styler[startPos]; local
[all...]
H A DLexMSSQL.cxx122 char chNext = styler[startPos]; local
126 char ch = chNext;
127 chNext = styler.SafeGetCharAt(i + 1);
129 if ((ch == '\r' && chNext != '\n') || (ch == '\n')) {
145 chNext = styler.SafeGetCharAt(i + 2);
195 } else if (ch == '/' && chNext == '*') {
199 } else if (ch == '-' && chNext == '-') {
224 if (chNext == '@') {
245 if ( chNext == '\'' ) {
247 ch = chNext;
293 char chNext = styler[startPos]; local
[all...]
H A DLexTCL.cxx85 if (sc.ch=='\r' && sc.chNext == '\n') // only ignore \r on PC process on the mac
94 else if (lineState == LS_COMMENT_BOX && (sc.ch == '#' || (sc.ch == ' ' && sc.chNext=='#')))
227 if (sc.ch == '#' && IsANumberChar(sc.chNext))
271 if (sc.chNext == '~')
273 if (sc.atLineStart && (sc.chNext == '#' || sc.chNext == '-'))
319 if (sc.chNext != '{') {
331 isoperator(static_cast<char>(sc.chPrev))) && IsADigit(sc.chNext,0x10))
335 sc.SetState(IsADigit(sc.chNext)? SCE_TCL_NUMBER: SCE_TCL_MODIFIER);
H A DLexPython.cxx29 static bool IsPyStringStart(int ch, int chNext, int chNext2) { argument
33 if (chNext == '"' || chNext == '\'')
35 if ((chNext == 'r' || chNext == 'R') && (chNext2 == '"' || chNext2 == '\''))
38 if ((ch == 'r' || ch == 'R') && (chNext == '"' || chNext == '\''))
47 char chNext = styler.SafeGetCharAt(i + 1); local
53 chNext = styler.SafeGetCharAt(i + 1);
55 if (chNext
[all...]
H A DLexLua.cxx136 if (sc.chNext == '\n' || sc.chNext == '\r') {
138 if (sc.ch == '\r' && sc.chNext == '\n') {
184 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
195 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
228 if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) {
278 char chNext = styler[startPos]; local
[all...]
H A DLexVerilog.cxx55 if (sc.chNext == '\n' || sc.chNext == '\r') {
57 if (sc.ch == '\r' && sc.chNext == '\n') {
101 if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
114 if (IsADigit(sc.ch) || (sc.ch == '\'') || (sc.ch == '.' && IsADigit(sc.chNext))) {
176 char chNext = styler[startPos]; local
180 char ch = chNext;
181 chNext
[all...]

Completed in 104 milliseconds

12