• 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

228 	char chNext = styler[startPos];
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 = chNext2;
317 if (ch == 's' && !isNonQuote(chNext)) {
320 } else if (ch == 'm' && !isNonQuote(chNext)) {
323 } else if (ch == 'q' && !isNonQuote(chNext)) {
326 } else if (ch == 'y' && !isNonQuote(chNext)) {
329 } else if (ch == 't' && chNext == 'r' && !isNonQuote(chNext2)) {
333 } else if (ch == 'q' && (chNext == 'q' || chNext == 'r' || chNext == 'w' || chNext == 'x') && !isNonQuote(chNext2)) {
334 if (chNext == 'q') state = SCE_PL_STRING_QQ;
335 else if (chNext == 'x') state = SCE_PL_STRING_QX;
336 else if (chNext == 'r') state = SCE_PL_STRING_QR;
337 else if (chNext == 'w') state = SCE_PL_STRING_QW;
340 } else if (ch == 'x' && (chNext == '=' || // repetition
341 (chNext != '_' && !isalnum(chNext)) ||
342 (isdigit(chPrev) && isdigit(chNext)))) {
406 if ((!iswordchar(chNext) && chNext != '\'')
407 || (chNext == '.' && chNext2 == '.')) {
416 if (ch == '_' && chNext == '_' &&
428 chNext = styler.SafeGetCharAt(i + 1);
436 chNext = styler.SafeGetCharAt(i + 1);
461 if ((chNext == '{') || isspacechar(chNext)) {
465 if (chNext == '`' && chNext2 == '`') {
468 chNext = styler.SafeGetCharAt(i + 1);
471 ch = chNext;
472 chNext = chNext2;
477 if (isalpha(chNext) || chNext == '#' || chNext == '$'
478 || chNext == '_' || chNext == '+' || chNext == '-') {
480 } else if (chNext != '{' && chNext != '[') {
487 if (isalpha(chNext) || chNext == '#' || chNext == '$'
488 || chNext == '_' || chNext == '!' || chNext == '^') {
491 ch = chNext;
492 chNext = chNext2;
493 } else if (chNext == '{') {
501 strch[0] = chNext;
503 if (isalpha(chNext) || chNext == '_' ||
507 ch = chNext;
508 chNext = chNext2;
509 } else if (chNext == '{') {
512 if (chNext == '*') { // exponentiation
514 ch = chNext;
515 chNext = chNext2;
520 } else if (ch == '/' || (ch == '<' && chNext == '<')) {
623 if (isspacechar(chNext)) {
652 ch = chNext;
653 chNext = chNext2;
686 chNext = styler.SafeGetCharAt(i+1);
693 && isalpha(chNext)
700 && isSingleCharOp(chNext)
705 ch = chNext;
706 chNext = chNext2;
709 if (ch == '.' && chNext == '.') { // .. and ...
714 chNext = styler.SafeGetCharAt(i + 1);
725 if (chNext == '.') {
737 if (isdigit(chNext)) { // really a vector
743 if (!isdigit(chNext)) // vector then dot
748 if (!isdigit(chNext)) {
763 if (chNext == '+' || chNext == '-') {
765 ch = chNext;
766 chNext = chNext2;
801 if (!iswordstart(chNext) && chNext != '\'') {
812 } else if (isEOLChar(chNext)) {
846 if (chNext == ' ' || chNext == '\t') {
851 chNext = styler.SafeGetCharAt(i + 1);
852 } while ((i + 1 < lengthDoc) && (chNext == ' ' || chNext == '\t'));
856 HereDoc.Quote = chNext;
860 if (chNext == '\'' || chNext == '"' || chNext == '`') {
863 ch = chNext;
864 chNext = chNext2;
866 } else if (isspacechar(chNext) || isdigit(chNext) || chNext == '\\'
867 || chNext == '=' || chNext == '$' || chNext == '@'
868 || ((isalpha(chNext) || chNext == '_') && gotspace)) {
889 if (ch == '\\' && chNext == HereDoc.Quote) { // escaped quote
891 ch = chNext;
892 chNext = chNext2;
926 chNext = styler.SafeGetCharAt(i + 1);
943 //chNext = styler.SafeGetCharAt(i + 1);
953 if (ch == ':' && chNext == ':') { // skip ::
955 ch = chNext;
956 chNext = chNext2;
977 ch = chNext;
978 chNext = styler.SafeGetCharAt(i + 1);
988 if (!isalpha(chNext)) {
997 } else if (!isalpha(chNext)) {
1011 ch = chNext;
1012 chNext = styler.SafeGetCharAt(i + 1);
1043 if (!isalpha(chNext)) {
1055 } else if (!isalpha(chNext)) {
1075 ch = chNext;
1076 chNext = styler.SafeGetCharAt(i + 1);
1131 char chNext = styler[startPos];
1138 char ch = chNext;
1139 chNext = styler.SafeGetCharAt(i + 1);
1142 bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n');
1172 if (ch == '=' && isalpha(chNext) && levelCurrent == SC_FOLDLEVELBASE)