Home
last modified time | relevance | path

Searched refs:REG_STARTEND (Results 1 – 10 of 10) sorted by relevance

/ndk/sources/host-tools/ndk-stack/regex/
Dregex.h97 #define REG_STARTEND 00004 macro
Dregexec.c146 # define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND)) in regexec()
Dengine.c144 if (eflags&REG_STARTEND) { in matcher()
/ndk/sources/host-tools/sed-4.2.1/testsuite/
DBOOST.tests89 - match_default normal REG_EXTENDED REG_STARTEND
441 - match_default extended REG_EXTENDED REG_STARTEND
558 - match_default normal REG_EXTENDED REG_STARTEND
570 - match_default normal REG_EXTENDED REG_STARTEND REG_ICASE
577 - match_default normal REG_EXTENDED REG_STARTEND
594 - match_default normal REG_EXTENDED REG_STARTEND REG_ICASE
604 - match_default normal REG_EXTENDED REG_STARTEND REG_NO_POSIX_TEST
608 - match_default normal REG_EXTENDED REG_STARTEND
DSPENCER.tests29 # # REG_STARTEND (see below)
32 # For REG_STARTEND, the start/end offsets are those of the substring
/ndk/sources/host-tools/sed-4.2.1/m4/
Dregex.m4148 /* REG_STARTEND was added to glibc on 2004-01-15.
150 if (! REG_STARTEND)
/ndk/sources/host-tools/sed-4.2.1/sed/
Dregexp.c240 ret = regexec (&regex->pattern, buf, regsize, regmatch, REG_STARTEND);
/ndk/sources/host-tools/sed-4.2.1/lib/
Dregex.h368 #define REG_STARTEND (1 << 2) macro
Dregexec.c239 if (eflags & ~(REG_NOTBOL | REG_NOTEOL | REG_STARTEND))
242 if (eflags & REG_STARTEND)
/ndk/sources/host-tools/sed-4.2.1/
DChangeLog651 * sed/regexp.c [REG_PERL]: Use REG_STARTEND instead of regexec2.