• 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

549 		char chNext = styler.SafeGetCharAt(i + 1);
582 if ((ch == ':') && ((chNext == '\n') || (chNext == '\r' && chNext2 == '\n'))) {
584 } else if ((ch == '\n') && !((chNext == '\r') && (chNext2 == '\n')) && (chNext != '\n')) {
611 if ((ch == '\r' && chNext != '\n') || (ch == '\n')) {
637 else if ((inScriptType == eNonHtmlScript) && (ch == '<') && (chNext == '/')) {
688 (chNext == '?') &&
716 else if (!isCommentASPState(state) && (ch == '<') && (chNext == '%') && !isPHPStringState(state)) {
764 if ((chNext == '-') && (chNext2 == '-')) {
786 ) && (chNext == '>')) ||
844 tagClosing = (chNext == '/');
846 if (chNext != '!')
1044 } else if (ch == '/' && chNext == '>') {
1052 ch = chNext;
1127 } else if (ch == '/' && chNext == '>') {
1131 ch = chNext;
1134 } else if (ch == '?' && chNext == '>') {
1138 ch = chNext;
1204 } else if (ch == '/' && chNext == '*') {
1210 } else if (ch == '/' && chNext == '/') {
1222 } else if ((ch == '<') && (chNext == '!') && (chNext2 == '-') &&
1226 } else if ((ch == '-') && (chNext == '-') && (chNext2 == '>')) {
1246 if (ch == '/' && chNext == '*') {
1251 } else if (ch == '/' && chNext == '/') {
1257 } else if ((ch == '-') && (chNext == '-') && (chNext2 == '>')) {
1284 if (chNext == '\"' || chNext == '\'' || chNext == '\\') {
1290 } else if ((inScriptType == eNonHtmlScript) && (ch == '-') && (chNext == '-') && (chNext2 == '>')) {
1301 if (chNext == '\"' || chNext == '\'' || chNext == '\\') {
1307 } else if ((inScriptType == eNonHtmlScript) && (ch == '-') && (chNext == '-') && (chNext2 == '>')) {
1320 } else if (!isLineEnd(chNext)) {
1328 while (isascii(chNext) && islower(chNext)) { // gobble regex flags
1330 ch = chNext;
1331 chNext = styler.SafeGetCharAt(i + 1);
1338 if (chNext == '\\' || chNext == '/') {
1340 ch = chNext;
1341 chNext = styler.SafeGetCharAt(i + 1);
1356 } else if ((ch == '<') && (chNext == '!') && (chNext2 == '-') &&
1405 } else if (!isLineEnd(chNext)) {
1415 } else if ((ch == '<') && (chNext == '!') && (chNext2 == '-') &&
1424 if (chNext == '\"' && chNext2 == '\"') {
1429 chNext = styler.SafeGetCharAt(i + 1);
1436 if (chNext == '\'' && chNext2 == '\'') {
1441 chNext = styler.SafeGetCharAt(i + 1);
1462 if (chNext == '\"' && chNext2 == '\"') {
1467 chNext = styler.SafeGetCharAt(i + 1);
1472 if (chNext == '\'' && chNext2 == '\'') {
1477 chNext = styler.SafeGetCharAt(i + 1);
1494 if (chNext == '\"' || chNext == '\'' || chNext == '\\') {
1496 ch = chNext;
1497 chNext = styler.SafeGetCharAt(i + 1);
1506 if (chNext == '\"' || chNext == '\'' || chNext == '\\') {
1508 ch = chNext;
1509 chNext = styler.SafeGetCharAt(i + 1);
1532 if (ch == '/' && chNext == '*') {
1535 } else if (ch == '/' && chNext == '/') {
1548 } else if (ch == '$' && IsPhpWordStart(chNext)) {
1591 if (ch == '\\' && (phpStringDelimiter[0] == '\"' || chNext == '$' || chNext == '{')) {
1594 } else if (((ch == '{' && chNext == '$') || (ch == '$' && chNext == '{'))
1598 } else if (ch == '$' && IsPhpWordStart(chNext)) {
1633 if (IsADigit(ch) || (ch == '.' && IsADigit(chNext))) {
1637 } else if (ch == '/' && chNext == '*') {
1640 } else if (ch == '/' && chNext == '/') {
1653 } else if (ch == '$' && IsPhpWordStart(chNext)) {
1689 if (ch == '/' && chNext == '*') {
1694 } else if (ch == '/' && chNext == '/') {
1763 if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) {
1993 } else if (sc.ch == '$' && IsPhpWordStart(static_cast<char>(sc.chNext))) {