Searched refs:endline (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
H A D | mock_tk.py | 206 endline, endchar = startline, startchar+1 208 endline, endchar = self._decode(index2) 210 if startline == endline: 214 for i in range(startline+1, endline): 216 lines.append(self.data[endline][:endchar]) 229 endline, endchar = startline, startchar+1 232 endline, endchar = startline+1, 0 237 endline, endchar = self._decode(index2, -1) 240 if startline == endline and startchar < endchar: 243 elif startline < endline [all...] |
/third_party/curl/packages/OS400/ |
H A D | curlcl.c | 62 const char *endline = cmdargs + len; in parse_command_line() local 69 while(cmdargs < endline) { in parse_command_line() 92 if(cmdargs >= endline) { in parse_command_line()
|
/third_party/python/Tools/scripts/ |
H A D | cleanfuture.py | 215 endline = srow - 1 244 changed.append((startline, endline, line))
|
/third_party/json/tools/cpplint/ |
H A D | cpplint.py | 4105 (endline, endlinenum, endpos) = CloseExpression( 4109 trailing_text = endline[endpos:] 4282 (endline, _, endpos) = CloseExpression(clean_lines, linenum, pos) 4283 brace_on_right = endline[endpos:].find('{') != -1 4311 endline, endlinenum, endpos = line, linenum, if_else_match.end() 4316 (endline, endlinenum, endpos) = CloseExpression(clean_lines, linenum, pos) 4319 if (not Match(r'\s*{', endline[endpos:]) 4320 and not (Match(r'\s*$', endline[endpos:]) 4328 endline = clean_lines.elided[endlinenum] 4331 endpos = endline [all...] |
/third_party/python/Objects/ |
H A D | codeobject.c | 927 advance_with_locations(PyCodeAddressRange *bounds, int *endline, int *column, int *endcolumn) in advance_with_locations() argument 936 bounds->ar_line = *endline = -1; in advance_with_locations() 943 *endline = bounds->ar_line + read_varint(bounds); in advance_with_locations() 952 *endline = bounds->ar_line = bounds->opaque.computed_line; in advance_with_locations() 963 *endline = bounds->ar_line = bounds->opaque.computed_line; in advance_with_locations() 973 *endline = bounds->ar_line = bounds->opaque.computed_line; in advance_with_locations()
|
Completed in 10 milliseconds