Lines Matching refs:OUT
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
94 #define BOL (OUT+1)
288 - dissect - figure out what matched what, no back references
323 /* figure out what it matched */
471 - backref - figure out what matched what, figuring in back references
680 int c = (start == m->beginp) ? OUT : *(start-1);
695 c = (p == m->endp) ? OUT : *p;
703 (lastc == OUT && !(m->eflags®_NOTBOL)) ) {
708 (c == OUT && !(m->eflags®_NOTEOL)) ) {
719 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
720 (c != OUT && ISWORD(c)) ) {
723 if ( (lastc != OUT && ISWORD(lastc)) &&
724 (flagch == EOL || (c != OUT && !ISWORD(c))) ) {
734 break; /* NOTE BREAK OUT */
739 assert(c != OUT);
764 int c = (start == m->beginp) ? OUT : *(start-1);
779 c = (p == m->endp) ? OUT : *p;
785 (lastc == OUT && !(m->eflags®_NOTBOL)) ) {
790 (c == OUT && !(m->eflags®_NOTEOL)) ) {
801 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
802 (c != OUT && ISWORD(c)) ) {
805 if ( (lastc != OUT && ISWORD(lastc)) &&
806 (flagch == EOL || (c != OUT && !ISWORD(c))) ) {
818 break; /* NOTE BREAK OUT */
823 assert(c != OUT);