Home
last modified time | relevance | path

Searched refs:startline (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/idlelib/idle_test/
Dmock_tk.py200 startline, startchar = self._decode(index1)
202 endline, endchar = startline, startchar+1
206 if startline == endline:
207 return self.data[startline][startchar:endchar]
209 lines = [self.data[startline][startchar:]]
210 for i in range(startline+1, endline):
222 startline, startchar = self._decode(index1, -1)
224 if startchar < len(self.data[startline])-1:
226 endline, endchar = startline, startchar+1
227 elif startline < len(self.data) - 1:
[all …]
/external/icu/icu4c/source/tools/genrb/
Dparse.cpp125 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comme…
310 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, … in parseUCARules() argument
330 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseUCARules()
454 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comme… in parseTransliterator() argument
471 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseTransliterator()
532 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UE… in parseDependency() argument
544 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseDependency()
594 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UError… in parseString() argument
604 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseString()
629 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseAlias() argument
[all …]
/external/python/cpython2/Lib/
Dtokenize.py202 startline = False
218 startline = True
219 elif startline and indents:
224 startline = False
236 startline = token[0] in (NEWLINE, NL)
260 startline = True
261 elif startline and indents:
263 startline = False
/external/python/cpython2/Lib/idlelib/
DSearchEngine.py145 startline = line
153 if wrapped and line > startline:
167 startline = line
175 if wrapped and line < startline:
/external/python/cpython2/Tools/scripts/
Dtexcheck.py114 startline = int(opts.get('-s', '1'))
117 for lineno, line in izip(count(startline), islice(source, startline-1, None)):
Dcleanfuture.py184 startline = srow - 1 # tokenize is one-based
245 changed.append((startline, endline, line))
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtokenize.py212 startline = False
219 startline = True
233 startline = True
234 elif startline and indents:
236 startline = False
/external/libcups/cups/
Dppd.c2904 startline, /* Start line */ in ppd_read() local
2919 startline = pg->ppd_line + 1; in ppd_read()
2958 pg->ppd_line = startline; in ppd_read()
2967 pg->ppd_line = startline; in ppd_read()
3018 pg->ppd_line = startline; in ppd_read()
3038 pg->ppd_line = startline; in ppd_read()
3084 pg->ppd_line = startline; in ppd_read()
3099 pg->ppd_line = startline; in ppd_read()
3143 pg->ppd_line = startline; in ppd_read()
3158 pg->ppd_line = startline; in ppd_read()
[all …]
/external/pcre/dist2/src/
Dpcre2_dfa_match.c3127 BOOL utf, anchored, startline, firstline; in pcre2_dfa_match() local
3207 startline = (re->flags & PCRE2_STARTLINE) != 0; in pcre2_dfa_match()
3346 if (!startline && (re->flags & PCRE2_FIRSTMAPSET) != 0) in pcre2_dfa_match()
3434 else if (startline) in pcre2_dfa_match()
Dpcre2_match.c6457 BOOL startline; in pcre2_match() local
6621 startline = (re->flags & PCRE2_STARTLINE) != 0; in pcre2_match()
6762 if (!startline && (re->flags & PCRE2_FIRSTMAPSET) != 0) in pcre2_match()
6852 else if (startline) in pcre2_match()
/external/selinux/python/sepolgen/src/sepolgen/
Dyacc.py134 startline = getattr(self.slice[n],"lineno",0)
135 endline = getattr(self.slice[n],"endlineno",startline)
136 return startline,endline
/external/libvpx/libvpx/tools/
Dcpplint.py4075 (_, startline, startpos) = ReverseCloseExpression(
4077 if startpos > -1 and startline < linenum:
4081 for i in xrange(startline, linenum + 1):
/external/libmojo/third_party/ply/
Dyacc.py217 startline = getattr(self.slice[n],"lineno",0)
218 endline = getattr(self.slice[n],"endlineno",startline)
219 return startline,endline
/external/ply/ply/ply/
Dyacc.py264 startline = getattr(self.slice[n], 'lineno', 0)
265 endline = getattr(self.slice[n], 'endlineno', startline)
266 return startline, endline
/external/sqlite/dist/
Dshell.c6808 static int runOneSqlLine(ShellState *p, char *zSql, FILE *in, int startline){ in runOneSqlLine() argument
6821 "Error: near line %d:", startline); in runOneSqlLine()
6860 int startline = 0; /* Line number for start of current input */ in process_input() local
6907 startline = lineno; in process_input()
6916 errCnt += runOneSqlLine(p, zSql, in, startline); in process_input()
6928 runOneSqlLine(p, zSql, in, startline); in process_input()
/external/sqlite/dist/orig/
Dshell.c6786 static int runOneSqlLine(ShellState *p, char *zSql, FILE *in, int startline){ in runOneSqlLine() argument
6799 "Error: near line %d:", startline); in runOneSqlLine()
6838 int startline = 0; /* Line number for start of current input */ in process_input() local
6885 startline = lineno; in process_input()
6894 errCnt += runOneSqlLine(p, zSql, in, startline); in process_input()
6906 runOneSqlLine(p, zSql, in, startline); in process_input()
/external/pcre/dist2/testdata/
Dtestinput23613 # settings of the anchored and startline bits.
Dtestoutput211575 # settings of the anchored and startline bits.