Searched refs:SafeGetCharAt (Results 1 - 25 of 37) 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 DLexCrontab.cxx47 chNext = styler.SafeGetCharAt(i + 1);
50 chNext = styler.SafeGetCharAt(i + 2);
60 } else if( ch == '#' && styler.SafeGetCharAt(i+1) == '(') {
65 else if( ch == '\\' && (styler.SafeGetCharAt(i+1) == ' ' ||
66 styler.SafeGetCharAt(i+1) == '\t')) {
74 } else if( ch == ')' && styler.SafeGetCharAt(i+1) == '#') {
85 } else if( ch == '<' && styler.SafeGetCharAt(i+1) == '%') {
140 if( (ch == '"' && styler.SafeGetCharAt(i-1)!='\\') ||
155 if( (ch == '%' && styler.SafeGetCharAt(i-1)!='\\')
H A DLexMPT.cxx76 char chNext = styler.SafeGetCharAt(startPos);
84 chNext = styler.SafeGetCharAt(i + 1);
93 chNext = styler.SafeGetCharAt(i + 1); // Gets character of next line
116 char chNext = styler.SafeGetCharAt(startPos);
127 chNext = styler.SafeGetCharAt(i + 1);
H A DStyleContext.h19 chNext = static_cast<unsigned char>(styler.SafeGetCharAt(pos+1));
22 chNext |= static_cast<unsigned char>(styler.SafeGetCharAt(pos+2));
55 ch = static_cast<unsigned char>(styler.SafeGetCharAt(pos));
59 ch |= static_cast<unsigned char>(styler.SafeGetCharAt(pos));
107 return static_cast<unsigned char>(styler.SafeGetCharAt(currentPos+n));
123 if (*s != styler.SafeGetCharAt(currentPos+n))
138 tolower(static_cast<unsigned char>(styler.SafeGetCharAt(currentPos+n))))
H A DLexOpal.cxx48 ch = styler.SafeGetCharAt( cur );
101 ch = styler.SafeGetCharAt( cur );
121 ch = styler.SafeGetCharAt( cur );
164 ch = styler.SafeGetCharAt( cur );
179 ch = styler.SafeGetCharAt( cur );
201 ch = styler.SafeGetCharAt( cur );
259 ch = styler.SafeGetCharAt( cur );
290 ch = styler.SafeGetCharAt( cur );
308 ch = styler.SafeGetCharAt( cur );
446 char ch = styler.SafeGetCharAt( cu
[all...]
H A DLexBullant.cxx75 chNext = styler.SafeGetCharAt(i + 1);
115 chNext = styler.SafeGetCharAt(i + 2);
126 if ((styler.SafeGetCharAt(i+2) =='f') && (styler.SafeGetCharAt(i+3) == 'f')) {
147 chNext = styler.SafeGetCharAt(i + 1);
164 if (styler.SafeGetCharAt(i+2) == 'n') {
181 chNext = styler.SafeGetCharAt(i + 1);
200 chNext = styler.SafeGetCharAt(i + 1);
H A DLexFortran.cxx40 while (!IsALineEnd(styler.SafeGetCharAt(pos++))) continue;
41 if (styler.SafeGetCharAt(pos) == '\n') pos++;
42 while (IsABlank(styler.SafeGetCharAt(pos++))) continue;
43 char chCur = styler.SafeGetCharAt(pos);
45 while (IsABlank(styler.SafeGetCharAt(++pos))) continue;
284 chNext = styler.SafeGetCharAt(i + 1);
289 chNextNonBlank = styler.SafeGetCharAt(j);
313 char chBrace = '(', chSeek = ')', ch1 = styler.SafeGetCharAt(j);
317 ch1 = styler.SafeGetCharAt(j);
325 chAtPos = styler.SafeGetCharAt(
[all...]
H A DLexPerl.cxx225 char chPrev = styler.SafeGetCharAt(startPos - 1);
236 chNext = styler.SafeGetCharAt(i + 1);
237 char chNext2 = styler.SafeGetCharAt(i + 2);
240 chNext = styler.SafeGetCharAt(i + 2);
312 if (chPrev == ':' && styler.SafeGetCharAt(i - 2) == ':') {
350 while (iswordstart(styler.SafeGetCharAt(kw))) kw++;
367 if (isEOLChar(styler.SafeGetCharAt(j)))
370 ch2 = styler.SafeGetCharAt(j);
376 || (ch2 == '>' && styler.SafeGetCharAt(j - 1) == '-')
390 while (ch2 = styler.SafeGetCharAt(
[all...]
H A DLexMetapost.cxx58 (styler[i] == '\n') || ((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n')) ;
123 if (styler.SafeGetCharAt(0) == '%') {
125 lineBuffer[linePos++] = styler.SafeGetCharAt(i) ;
134 } else if (styler.SafeGetCharAt(1) == 'D' && strstr(lineBuffer, "%D \\module")) {
H A DLexInno.cxx47 chNext = styler.SafeGetCharAt(i + 1);
50 chNext = styler.SafeGetCharAt(i + 2);
H A DLexBash.cxx211 char chPrev = styler.SafeGetCharAt(startPos - 1);
222 chNext = styler.SafeGetCharAt(i + 1);
223 char chNext2 = styler.SafeGetCharAt(i + 2);
226 chNext = styler.SafeGetCharAt(i + 2);
341 && !isalnum((chNext2 = styler.SafeGetCharAt(i+2)))) {
420 ch = styler.SafeGetCharAt(i);
421 chNext = styler.SafeGetCharAt(i + 1);
518 chPrev = styler.SafeGetCharAt(i - 1);
519 ch = styler.SafeGetCharAt(i);
526 chNext = styler.SafeGetCharAt(
[all...]
H A DLexRuby.cxx219 char ch = styler.SafeGetCharAt(pos);
553 char ch = styler.SafeGetCharAt(pos);
554 char chPrev = styler.SafeGetCharAt(pos - 1);
558 if (styler.SafeGetCharAt(pos - 1) == '\\') {
644 char chPrev = styler.SafeGetCharAt(startPos - 1);
645 char chNext = styler.SafeGetCharAt(startPos);
660 chNext = styler.SafeGetCharAt(i + 1);
661 char chNext2 = styler.SafeGetCharAt(i + 2);
704 && styler.SafeGetCharAt(i + 2) == 'e'
705 && styler.SafeGetCharAt(
[all...]
H A DLexNsis.cxx68 char cNext = styler.SafeGetCharAt( i );
81 char cNext = styler.SafeGetCharAt( firstChar );
287 cCurrChar = styler.SafeGetCharAt( i );
288 char cNextChar = styler.SafeGetCharAt(i+1);
365 if( styler.SafeGetCharAt(i-1) == '\\' && styler.SafeGetCharAt(i-2) == '$' )
401 char cTemp = styler.SafeGetCharAt(nBack, 'a'); // Letter 'a' is safe here
472 if( styler.SafeGetCharAt(i-1) == '*' && cCurrChar == '/' )
563 if( styler.SafeGetCharAt(safeStartPos) == '/' && styler.SafeGetCharAt(safeStartPo
[all...]
H A DLexConf.cxx45 chNext = styler.SafeGetCharAt(i + 1);
48 chNext = styler.SafeGetCharAt(i + 2);
120 if( (ch == '"' && styler.SafeGetCharAt(i-1)!='\\') || (ch == '\n') || (ch == '\r') ) {
H A DLexCPP.cxx72 int chBack = styler.SafeGetCharAt(startPos-1, 0);
73 int chBack2 = styler.SafeGetCharAt(startPos-2, 0);
76 lineEndChar = styler.SafeGetCharAt(startPos-3, 0);
90 chPrevNonWhite = styler.SafeGetCharAt(back);
365 chNext = styler.SafeGetCharAt(i + 1);
380 char chNext2 = styler.SafeGetCharAt(i + 2);
391 while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) {
H A DLexPascal.cxx141 chNext = styler.SafeGetCharAt(i + 1);
156 chNext = styler.SafeGetCharAt(i + 2);
170 && styler.SafeGetCharAt(i + 2) != '$'
171 && styler.SafeGetCharAt(i + 2) != '&') {
210 chNext = styler.SafeGetCharAt(i + 1);
214 && styler.SafeGetCharAt(i + 2) != '$'
215 && styler.SafeGetCharAt(i + 2) != '&') {
286 chNext = styler.SafeGetCharAt(i + 1);
308 char chNext2 = styler.SafeGetCharAt(i + 2);
320 while ((j<endPos) && IsASpaceOrTab(styler.SafeGetCharAt(
[all...]
H A DLexTeX.cxx63 (styler[i] == '\n') || ((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n')) ;
124 if (styler.SafeGetCharAt(0) == '%') {
126 lineBuffer[linePos++] = styler.SafeGetCharAt(i) ;
148 } else if (styler.SafeGetCharAt(1) == 'D' && strstr(lineBuffer, "%D \\module")) {
H A DLexVerilog.cxx181 chNext = styler.SafeGetCharAt(i + 1);
196 char chNext2 = styler.SafeGetCharAt(i + 2);
207 while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) {
257 styler.Match(j, "end") && !IsAWordChar(styler.SafeGetCharAt(j+3))) {
H A DLexYAML.cxx30 ((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n'));
H A DLexCSS.cxx62 op = styler.SafeGetCharAt(i-1);
98 op = styler.SafeGetCharAt(i-1);
258 chNext = styler.SafeGetCharAt(i + 1);
H A DLexPOV.cxx241 chNext = styler.SafeGetCharAt(i + 1);
256 char chNext2 = styler.SafeGetCharAt(i + 2);
267 while ((j<endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) {
H A DLexHTML.cxx536 chPrevNonWhite = styler.SafeGetCharAt(back);
549 char chNext = styler.SafeGetCharAt(i + 1);
550 const char chNext2 = styler.SafeGetCharAt(i + 2);
588 char chTmp = styler.SafeGetCharAt(i + j + 1);
661 chr = styler.SafeGetCharAt(i+2);
664 chr = styler.SafeGetCharAt(i+2+j);
711 ch = styler.SafeGetCharAt(i);
728 } else if ((chNext2 == '-') && (styler.SafeGetCharAt(i + 3) == '-')) {
750 ch = styler.SafeGetCharAt(i);
927 while (ishtmlwordchar(styler.SafeGetCharAt(
[all...]
H A DLexPB.cxx71 ch=styler.SafeGetCharAt(pos+i);
201 chNext = styler.SafeGetCharAt(i + 1);
H A DLexEScript.cxx192 chNext = styler.SafeGetCharAt(i + 1);
210 char chNext2 = styler.SafeGetCharAt(i + 2);
H A DLexForth.cxx47 char ch=st->SafeGetCharAt(cur_pos);
53 char ch=st->SafeGetCharAt(cur_pos);
214 chNext = styler.SafeGetCharAt(i + 1);
215 if(i!=startPos) chPrev=styler.SafeGetCharAt(i - 1);
218 chNext = styler.SafeGetCharAt(i + 2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DAccessor.h43 char SafeGetCharAt(int position, char chDefault=' ') { function in class:Accessor

Completed in 88 milliseconds

12