• 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:chNext

214 	char chNext = styler[startPos];
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 = chNext2;
275 } else if (isdigit(chNext)) {
281 if (!iswordchar(chNext) && chNext != '+' && chNext != '-') {
302 if (chNext == '{') {
305 } else if (chNext == '\'') {
308 } else if (chNext == '"') {
311 } else if (chNext == '(' && chNext2 == '(') {
315 } else if (chNext == '(' || chNext == '`') {
319 Quote.Open(chNext);
325 ch = chNext;
326 chNext = chNext2;
329 if (chNext == '*') { // exponentiation
331 ch = chNext;
332 chNext = chNext2;
335 } else if (ch == '<' && chNext == '<') {
340 && isSingleCharOp(chNext)
345 ch = chNext;
346 chNext = chNext2;
401 if (!iswordchar(chNext) && chNext != '+' && chNext != '-') {
409 if (!iswordchar(chNext) && chNext != '+' && chNext != '-') {
416 if (ch == '\\' && isEOLChar(chNext)) {
418 if (chNext == '\r' && chNext2 == '\n') {
421 chNext = styler.SafeGetCharAt(i + 1);
424 ch = chNext;
425 chNext = chNext2;
431 } else if (isEOLChar(chNext)) {
445 HereDoc.Quote = chNext;
449 if (chNext == '\'' || chNext == '\"') { // a quoted here-doc delimiter (' or ")
451 ch = chNext;
452 chNext = chNext2;
454 } else if (!HereDoc.Indent && chNext == '-') { // <<- indent case
457 } else if (isalpha(chNext) || chNext == '_' || chNext == '\\'
458 || chNext == '-' || chNext == '+' || chNext == '!') {
461 } else if (chNext == '<') { // HERE string <<<
463 ch = chNext;
464 chNext = chNext2;
468 } else if (isspacechar(chNext)) {
471 } else if (isdigit(chNext) || chNext == '=' || chNext == '$') {
485 if (ch == '\\' && chNext == HereDoc.Quote) { // escaped quote
487 ch = chNext;
488 chNext = chNext2;
526 chNext = styler.SafeGetCharAt(i + 1);
562 ch = chNext;
563 chNext = styler.SafeGetCharAt(i + 1);
612 char chNext = styler[startPos];
615 char ch = chNext;
616 chNext = styler.SafeGetCharAt(i + 1);
619 bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n');