Searched refs:lengthDoc (Results 1 - 19 of 19) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DKeyWords.h8 typedef void (*LexerFunction)(unsigned int startPos, int lengthDoc, int initStyle,
46 virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle,
48 virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DLexForth.cxx43 static int cur_pos,pos1,pos2,pos0,lengthDoc; variable
68 for(;cur_pos<lengthDoc && (c=getChar(is_bl))==ch; cur_pos++){
76 if(cur_pos==lengthDoc) return 0;
77 for(len=0;cur_pos<lengthDoc && (c=getChar(is_bl))!=ch; cur_pos++){
112 lengthDoc = startPos + length;
142 if(cur_pos<lengthDoc) cur_pos++;
147 if(cur_pos<lengthDoc) cur_pos++;
152 if(cur_pos<lengthDoc) cur_pos++;
157 if(cur_pos<lengthDoc) cur_pos++;
212 for (int i = startPos; i < lengthDoc;
[all...]
H A DKeyWords.cxx98 void LexerModule::Lex(unsigned int startPos, int lengthDoc, int initStyle, argument
101 fnLexer(startPos, lengthDoc, initStyle, keywordlists, styler);
104 void LexerModule::Fold(unsigned int startPos, int lengthDoc, int initStyle, argument
112 lengthDoc += startPos - newStartPos;
119 fnFolder(startPos, lengthDoc, initStyle, keywordlists, styler);
H A DExternalLexer.h41 virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle,
43 virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle,
H A DLexInno.cxx28 int lengthDoc = startPos + length; local
44 for (int i = startPos; i < lengthDoc; i++) {
H A DLexRuby.cxx145 static bool isMatch(Accessor &styler, int lengthDoc, int pos, const char *val) { argument
146 if ((pos + static_cast<int>(strlen(val))) >= lengthDoc) {
164 int lengthDoc,
167 if (!isMatch(styler, lengthDoc, pos, HereDocDelim)) {
343 int lengthDoc,
347 if (lengthDoc - currPos < targetEndPos - targetStartPos) {
352 i < targetEndPos && j < lengthDoc;
379 int lengthDoc = styler.Length(); local
437 if (nextLineStartPosn >= lengthDoc) {
441 if (j >= lengthDoc) {
162 lookingAtHereDocDelim(Accessor &styler, int pos, int lengthDoc, const char *HereDocDelim) argument
342 haveTargetMatch(int currPos, int lengthDoc, int targetStartPos, int targetEndPos, Accessor &styler) argument
637 int lengthDoc = startPos + length; local
[all...]
H A DLexBullant.cxx69 unsigned int lengthDoc = startPos + length; local
73 for (unsigned int i = startPos; i < lengthDoc; i++) {
209 styler.ColourTo(lengthDoc - 1, state);
H A DExternalLexer.cxx61 void ExternalLexerModule::Lex(unsigned int startPos, int lengthDoc, int initStyle, argument
74 fneLexer(externalLanguage, startPos, lengthDoc, initStyle, kwds, wID, ps);
80 void ExternalLexerModule::Fold(unsigned int startPos, int lengthDoc, int initStyle, argument
93 fneFolder(externalLanguage, startPos, lengthDoc, initStyle, kwds, wID, ps);
H A DLexConf.cxx30 int lengthDoc = startPos + length; local
43 for (int i = startPos; i < lengthDoc; i++) {
H A DLexCrontab.cxx29 int lengthDoc = startPos + length; local
45 for (int i = startPos; i < lengthDoc; i++) {
H A DLexBash.cxx101 static bool isMatch(Accessor &styler, int lengthDoc, int pos, const char *val) { argument
102 if ((pos + static_cast<int>(strlen(val))) >= lengthDoc) {
185 unsigned int lengthDoc = startPos + length; local
217 for (unsigned int i = startPos; i < lengthDoc; i++) {
261 if (i < lengthDoc - 1)
513 if (isMatch(styler, lengthDoc, i, HereDoc.Delimiter)) {
587 styler.ColourTo(lengthDoc - 1, state);
H A DLexCsound.cxx148 unsigned int lengthDoc = startPos + length; local
156 for (unsigned int i = startPos; i < lengthDoc; i++) {
H A DLexMSSQL.cxx124 unsigned int lengthDoc = startPos + length; local
125 for (unsigned int i = startPos; i < lengthDoc; i++) {
282 styler.ColourTo(lengthDoc - 1, state);
H A DLexPascal.cxx120 unsigned int lengthDoc = startPos + length; local
138 for (unsigned int i = startPos; i < lengthDoc; i++) {
265 ColourTo(styler, lengthDoc - 1, state, bInAsm);
H A DLexHTML.cxx444 static int FindPhpStringDelimiter(char *phpStringDelimiter, const int phpStringDelimiterSize, int i, const int lengthDoc, Accessor &styler) { argument
446 while (i < lengthDoc && (styler[i] == ' ' || styler[i] == '\t'))
449 for (j = i; j < lengthDoc && styler[j] != '\n' && styler[j] != '\r'; j++) {
541 const int lengthDoc = startPos + length; local
542 for (int i = startPos; i < lengthDoc; i++) {
1545 i = FindPhpStringDelimiter(phpStringDelimiter, sizeof(phpStringDelimiter), i + 3, lengthDoc, styler);
1650 i = FindPhpStringDelimiter(phpStringDelimiter, sizeof(phpStringDelimiter), i + 3, lengthDoc, styler);
1709 styler.ColourTo(lengthDoc - 1, StateToPrint);
H A DLexRebol.cxx272 unsigned int lengthDoc = startPos + length; local
279 for (unsigned int i = startPos; i < lengthDoc; i++) {
H A DLexPerl.cxx90 static bool isMatch(Accessor &styler, int lengthDoc, int pos, const char *val) { argument
91 if ((pos + static_cast<int>(strlen(val))) >= lengthDoc) {
173 unsigned int lengthDoc = startPos + length; local
231 for (unsigned int i = startPos; i < lengthDoc; i++) {
389 && kw < lengthDoc) {
391 (ch2 == ' ' || ch2 == '\t') && j < lengthDoc) {
417 (isMatch(styler, lengthDoc, styler.GetStartSegment(), "__DATA__")
418 || isMatch(styler, lengthDoc, styler.GetStartSegment(), "__END__"))) {
669 while (fw < lengthDoc) {
852 } while ((i + 1 < lengthDoc)
[all...]
H A DScintillaBase.cxx459 int lengthDoc = pdoc->Length(); local
461 end = lengthDoc;
465 PLATFORM_ASSERT(start + len <= lengthDoc);
H A DDocument.cxx266 int lengthDoc = Length(); local
267 if ((pos + len) > lengthDoc)
268 return lengthDoc -pos;

Completed in 297 milliseconds