/external/python/cpython3/Python/ |
D | modsupport.c | 43 countformat(const char *format, char endchar) in countformat() argument 47 while (level > 0 || *format != endchar) { in countformat() 96 do_ignore(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags) in do_ignore() argument 118 if (**p_format != endchar) { in do_ignore() 123 if (endchar) { in do_ignore() 129 do_mkdict(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags) in do_mkdict() argument 138 do_ignore(p_format, p_va, endchar, n, flags); in do_mkdict() 144 do_ignore(p_format, p_va, endchar, n, flags); in do_mkdict() 152 do_ignore(p_format, p_va, endchar, n - i - 1, flags); in do_mkdict() 158 do_ignore(p_format, p_va, endchar, n - i - 2, flags); in do_mkdict() [all …]
|
/external/python/cpython2/Python/ |
D | modsupport.c | 110 countformat(const char *format, int endchar) in countformat() argument 114 while (level > 0 || *format != endchar) { in countformat() 160 do_ignore(const char **p_format, va_list *p_va, int endchar, int n, int flags) in do_ignore() argument 181 if (**p_format != endchar) { in do_ignore() 186 if (endchar) in do_ignore() 191 do_mkdict(const char **p_format, va_list *p_va, int endchar, int n, int flags) in do_mkdict() argument 200 do_ignore(p_format, p_va, endchar, n, flags); in do_mkdict() 206 do_ignore(p_format, p_va, endchar, n, flags); in do_mkdict() 214 do_ignore(p_format, p_va, endchar, n - i - 1, flags); in do_mkdict() 220 do_ignore(p_format, p_va, endchar, n - i - 2, flags); in do_mkdict() [all …]
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | mock_tk.py | 202 endline, endchar = startline, startchar+1 204 endline, endchar = self._decode(index2) 207 return self.data[startline][startchar:endchar] 212 lines.append(self.data[endline][:endchar]) 226 endline, endchar = startline, startchar+1 229 endline, endchar = startline+1, 0 234 endline, endchar = self._decode(index2, -1) 237 if startline == endline and startchar < endchar: 239 self.data[startline][endchar:] 242 self.data[endline][endchar:]
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | mock_tk.py | 202 endline, endchar = startline, startchar+1 204 endline, endchar = self._decode(index2) 207 return self.data[startline][startchar:endchar] 212 lines.append(self.data[endline][:endchar]) 226 endline, endchar = startline, startchar+1 229 endline, endchar = startline+1, 0 234 endline, endchar = self._decode(index2, -1) 237 if startline == endline and startchar < endchar: 239 self.data[startline][endchar:] 242 self.data[endline][endchar:]
|
/external/curl/src/ |
D | tool_formparse.c | 347 static char *get_param_word(char **str, char **end_pos, char endchar) in get_param_word() argument 382 while(*ptr && *ptr != ';' && *ptr != endchar) in get_param_word() 393 while(*ptr && *ptr != ';' && *ptr != endchar) in get_param_word() 474 static int get_param_part(struct OperationConfig *config, char endchar, in get_param_part() argument 502 *pdata = get_param_word(&p, &endpos, endchar); in get_param_part() 528 for(endct = p; *p && *p != ';' && *p != endchar; p++) in get_param_part() 541 filename = get_param_word(&p, &endpos, endchar); in get_param_part() 564 hdrfile = get_param_word(&p, &endpos, endchar); in get_param_part() 592 hdr = get_param_word(&p, &endpos, endchar); in get_param_part() 614 encoder = get_param_word(&p, &endpos, endchar); in get_param_part() [all …]
|
/external/python/cpython3/Lib/ |
D | pprint.py | 217 endchar = ',)' if len(object) == 1 else ')' 218 self._format_items(object, stream, indent, allowance + len(endchar), 220 stream.write(endchar) 231 endchar = '}' 234 endchar = '})' 237 self._format_items(object, stream, indent, allowance + len(endchar), 239 stream.write(endchar)
|
/external/python/cpython2/Lib/ |
D | pprint.py | 187 endchar = ']' 190 endchar = ')' 197 endchar = '])' 219 write(endchar)
|
/external/libvpx/libvpx/tools/ |
D | cpplint.py | 1219 def FindEndOfExpressionInLine(line, startpos, depth, startchar, endchar): argument 1236 elif line[i] == endchar: 1265 if startchar == '(': endchar = ')' 1266 if startchar == '[': endchar = ']' 1267 if startchar == '{': endchar = '}' 1268 if startchar == '<': endchar = '>' 1272 line, pos, 0, startchar, endchar) 1281 line, 0, num_open, startchar, endchar) 1289 def FindStartOfExpressionInLine(line, endpos, depth, startchar, endchar): argument 1307 if line[i] == endchar: [all …]
|
/external/libaom/libaom/tools/ |
D | cpplint.py | 1219 def FindEndOfExpressionInLine(line, startpos, depth, startchar, endchar): argument 1236 elif line[i] == endchar: 1265 if startchar == '(': endchar = ')' 1266 if startchar == '[': endchar = ']' 1267 if startchar == '{': endchar = '}' 1268 if startchar == '<': endchar = '>' 1272 line, pos, 0, startchar, endchar) 1281 line, 0, num_open, startchar, endchar) 1289 def FindStartOfExpressionInLine(line, endpos, depth, startchar, endchar): argument 1307 if line[i] == endchar: [all …]
|
/external/eigen/cmake/ |
D | FindGSL.cmake | 129 # use regular expression to match wildcard equivalent "-L*<endchar>" 130 # with <endchar> is a space or a semicolon
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
D | cpplint.py | 1031 def FindEndOfExpressionInLine(line, startpos, depth, startchar, endchar): argument 1047 elif line[i] == endchar: 1076 if startchar == '(': endchar = ')' 1077 if startchar == '[': endchar = ']' 1078 if startchar == '{': endchar = '}' 1081 end_pos = FindEndOfExpressionInLine(line, pos, 0, startchar, endchar) 1085 num_open = tail.count(startchar) - tail.count(endchar) 1089 delta = line.count(startchar) - line.count(endchar) 1092 FindEndOfExpressionInLine(line, 0, num_open, startchar, endchar))
|
/external/freetype/ |
D | ChangeLog.20 | 2167 seac emulation provided by the Type 2 endchar operator. 2168 (T2_Parse_CharStrings): Added seac emulation for the endchar 2499 and glyph width operand before endchar/hmoveto/vmoveto.
|
D | ChangeLog | 2458 some charstrings use `endchar' in a final subroutine call, rewinding to
|
D | ChangeLog.25 | 4741 endchar
|
D | ChangeLog.24 | 6047 determined; in particular, the code for handling the `endchar'
|
/external/fonttools/ |
D | NEWS.rst | 445 - [subset] Support subsetting ``endchar`` acting as ``seac``-like components
|
D | PKG-INFO | 862 - [subset] Support subsetting ``endchar`` acting as ``seac``-like components
|
/external/fonttools/Lib/fonttools.egg-info/ |
D | PKG-INFO | 862 - [subset] Support subsetting ``endchar`` acting as ``seac``-like components
|