Home | History | Annotate | Download | only in regex

Lines Matching defs:BOL

100 #define	BOL	(1)
101 #define EOL (BOL+1)
102 #define BOLEOL (BOL+2)
103 #define NOTHING (BOL+3)
104 #define BOW (BOL+4)
105 #define EOW (BOL+5)
740 /* is there an EOL and/or BOL between lastc and c? */
745 flag = BOL;
750 flag = (flag == BOL) ? BOLEOL : EOL;
760 if ( (flag == BOL || (lastc != OUT && !ISWORD(lastc))) &&
829 /* is there an EOL and/or BOL between lastc and c? */
834 flag = BOL;
839 flag = (flag == BOL) ? BOLEOL : EOL;
849 if ( (flag == BOL || (lastc != OUT && !ISWORD(lastc))) &&
886 == #define BOL (1)
887 == #define EOL (BOL+1)
888 == #define BOLEOL (BOL+2)
889 == #define NOTHING (BOL+3)
890 == #define BOW (BOL+4)
891 == #define EOW (BOL+5)
925 if (flag == BOL || flag == BOLEOL)