/external/python/cpython2/Lib/idlelib/idle_test/ |
D | mock_tk.py | 200 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/ |
D | parse.cpp | 125 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/ |
D | tokenize.py | 202 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/ |
D | SearchEngine.py | 145 startline = line 153 if wrapped and line > startline: 167 startline = line 175 if wrapped and line < startline:
|
/external/python/cpython2/Tools/scripts/ |
D | texcheck.py | 114 startline = int(opts.get('-s', '1')) 117 for lineno, line in izip(count(startline), islice(source, startline-1, None)):
|
D | cleanfuture.py | 184 startline = srow - 1 # tokenize is one-based 245 changed.append((startline, endline, line))
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | tokenize.py | 212 startline = False 219 startline = True 233 startline = True 234 elif startline and indents: 236 startline = False
|
/external/libcups/cups/ |
D | ppd.c | 2904 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/ |
D | pcre2_dfa_match.c | 3127 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()
|
D | pcre2_match.c | 6457 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/ |
D | yacc.py | 134 startline = getattr(self.slice[n],"lineno",0) 135 endline = getattr(self.slice[n],"endlineno",startline) 136 return startline,endline
|
/external/libvpx/libvpx/tools/ |
D | cpplint.py | 4075 (_, startline, startpos) = ReverseCloseExpression( 4077 if startpos > -1 and startline < linenum: 4081 for i in xrange(startline, linenum + 1):
|
/external/libmojo/third_party/ply/ |
D | yacc.py | 217 startline = getattr(self.slice[n],"lineno",0) 218 endline = getattr(self.slice[n],"endlineno",startline) 219 return startline,endline
|
/external/ply/ply/ply/ |
D | yacc.py | 264 startline = getattr(self.slice[n], 'lineno', 0) 265 endline = getattr(self.slice[n], 'endlineno', startline) 266 return startline, endline
|
/external/sqlite/dist/ |
D | shell.c | 6808 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/ |
D | shell.c | 6786 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/ |
D | testinput2 | 3613 # settings of the anchored and startline bits.
|
D | testoutput2 | 11575 # settings of the anchored and startline bits.
|