Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dmodsupport.c43 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/
Dmodsupport.c110 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/
Dmock_tk.py202 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/
Dmock_tk.py202 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/
Dtool_formparse.c347 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/
Dpprint.py217 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/
Dpprint.py187 endchar = ']'
190 endchar = ')'
197 endchar = '])'
219 write(endchar)
/external/libvpx/libvpx/tools/
Dcpplint.py1219 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/
Dcpplint.py1219 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/
DFindGSL.cmake129 # 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/
Dcpplint.py1031 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/
DChangeLog.202167 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.
DChangeLog2458 some charstrings use `endchar' in a final subroutine call, rewinding to
DChangeLog.254741 endchar
DChangeLog.246047 determined; in particular, the code for handling the `endchar'
/external/fonttools/
DNEWS.rst445 - [subset] Support subsetting ``endchar`` acting as ``seac``-like components
DPKG-INFO862 - [subset] Support subsetting ``endchar`` acting as ``seac``-like components
/external/fonttools/Lib/fonttools.egg-info/
DPKG-INFO862 - [subset] Support subsetting ``endchar`` acting as ``seac``-like components