Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dmodsupport.c44 countformat(const char *format, char endchar) in countformat() argument
48 while (level > 0 || *format != endchar) { in countformat()
97 do_ignore(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags) in do_ignore() argument
119 if (**p_format != endchar) { in do_ignore()
124 if (endchar) { in do_ignore()
130 do_mkdict(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags) in do_mkdict() argument
139 do_ignore(p_format, p_va, endchar, n, flags); in do_mkdict()
145 do_ignore(p_format, p_va, endchar, n, flags); in do_mkdict()
153 do_ignore(p_format, p_va, endchar, n - i - 1, flags); in do_mkdict()
159 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/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/python/cpython3/Lib/idlelib/idle_test/
Dmock_tk.py207 endline, endchar = startline, startchar+1
209 endline, endchar = self._decode(index2)
212 return self.data[startline][startchar:endchar]
217 lines.append(self.data[endline][:endchar])
230 endline, endchar = startline, startchar+1
233 endline, endchar = startline+1, 0
238 endline, endchar = self._decode(index2, -1)
241 if startline == endline and startchar < endchar:
243 self.data[startline][endchar:]
246 self.data[endline][endchar:]
/external/curl/src/
Dtool_formparse.c350 static char *get_param_word(char **str, char **end_pos, char endchar) in get_param_word() argument
384 while(*ptr && *ptr != ';' && *ptr != endchar) in get_param_word()
395 while(*ptr && *ptr != ';' && *ptr != endchar) in get_param_word()
476 static int get_param_part(struct OperationConfig *config, char endchar, in get_param_part() argument
504 *pdata = get_param_word(&p, &endpos, endchar); in get_param_part()
530 for(endct = p; *p && *p != ';' && *p != endchar; p++) in get_param_part()
543 filename = get_param_word(&p, &endpos, endchar); in get_param_part()
566 hdrfile = get_param_word(&p, &endpos, endchar); in get_param_part()
593 hdr = get_param_word(&p, &endpos, endchar); in get_param_part()
615 encoder = get_param_word(&p, &endpos, endchar); in get_param_part()
[all …]
/external/python/cpython2/Lib/
Dpprint.py187 endchar = ']'
190 endchar = ')'
197 endchar = '])'
219 write(endchar)
/external/python/cpython3/Lib/
Dpprint.py229 endchar = ',)' if len(object) == 1 else ')'
230 self._format_items(object, stream, indent, allowance + len(endchar),
232 stream.write(endchar)
243 endchar = '}'
246 endchar = '})'
249 self._format_items(object, stream, indent, allowance + len(endchar),
251 stream.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.
DChangeLog.291099 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.rst1122 - [subset] Support subsetting ``endchar`` acting as ``seac``-like components
/external/zxing/core/
Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...