Home
last modified time | relevance | path

Searched refs:ecode (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/testsuite/
Duniq.inp372 ((*ecode++ == OP_BEG_WORD) ? prev_is_word : cur_is_word))
508 /* On entry ecode points to the first opcode, and eptr to the first character
552 6 : 3 + (ecode[1] << 8) + ecode[2]),
576 DPRINTF (("Unknown opcode %d\n", *ecode));
704 c = *ecode++ - OP_CRSTAR;
705 c = *ecode++ - OP_CRSTAR;
706 c = *ecode++ - OP_NOTSTAR;
707 c = *ecode++ - OP_STAR;
708 c = *ecode++ - OP_TYPESTAR;
709 c = *ecode++;
[all …]
Duniq.good16 ((*ecode++ == OP_BEG_WORD) ? prev_is_word : cur_is_word))
119 /* On entry ecode points to the first opcode, and eptr to the first character
155 6 : 3 + (ecode[1] << 8) + ecode[2]),
173 DPRINTF (("Unknown opcode %d\n", *ecode));
227 c = *ecode++ - OP_CRSTAR;
228 c = *ecode++ - OP_NOTSTAR;
229 c = *ecode++ - OP_STAR;
230 c = *ecode++ - OP_TYPESTAR;
231 c = *ecode++;
327 const uschar *data = ecode + 1; /* Save for matching */
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dregex.cpp18 make_error_type_string(regex_constants::error_type ecode) in make_error_type_string() argument
20 switch (ecode) in make_error_type_string()
63 regex_error::regex_error(regex_constants::error_type ecode) in regex_error() argument
64 : runtime_error(make_error_type_string(ecode)), in regex_error()
65 __code_(ecode) in regex_error()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dregex87 explicit regex_error(regex_constants::error_type ecode);