Searched refs:fixed_length (Results 1 – 2 of 2) sorted by relevance
/external/libevent/ |
D | event_rpcgen.py | 1313 fixed_length = '' 1340 fixed_length = res.group(2) 1341 if fixed_length: 1342 fixed_length = fixed_length[1:-1] 1366 if fixed_length: 1367 newentry = factory.EntryBytes(entry_type, name, tag, fixed_length) 1370 elif entry_type == 'int' and not fixed_length: 1372 elif entry_type == 'int64' and not fixed_length: 1374 elif entry_type == 'string' and not fixed_length: 1606 def EntryBytes(self, entry_type, name, tag, fixed_length): argument [all …]
|
/external/pcre/dist2/src/ |
D | pcre2_compile.c | 7771 int fixed_length; in compile_regex() local 7774 fixed_length = find_fixedlength(last_branch, (options & PCRE2_UTF) != 0, in compile_regex() 7776 if (fixed_length == FFL_LATER) in compile_regex() 7780 else if (fixed_length < 0) in compile_regex() 7782 *errorcodeptr = fixed_length_errors[-fixed_length]; in compile_regex() 7788 if (fixed_length > cb->max_lookbehind) in compile_regex() 7789 cb->max_lookbehind = fixed_length; in compile_regex() 7790 PUT(reverse_count, 0, fixed_length); in compile_regex() 8908 int fixed_length; in pcre2_compile() local 8913 fixed_length = find_fixedlength(cc, utf, TRUE, &cb, NULL, &count); in pcre2_compile() [all …]
|