Lines Matching refs:parse_flags
755 return Star(child_frags[0], re->parse_flags()&Regexp::NonGreedy); in PostVisit()
758 return Plus(child_frags[0], re->parse_flags()&Regexp::NonGreedy); in PostVisit()
761 return Quest(child_frags[0], re->parse_flags()&Regexp::NonGreedy); in PostVisit()
764 return Literal(re->rune(), re->parse_flags()&Regexp::FoldCase); in PostVisit()
772 Frag f1 = Literal(re->runes()[i], re->parse_flags()&Regexp::FoldCase); in PostVisit()
878 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags()); in IsAnchorStart()
889 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap()); in IsAnchorStart()
896 *pre = Regexp::LiteralString(NULL, 0, re->parse_flags()); in IsAnchorStart()
926 *pre = Regexp::Concat(subcopy, re->nsub(), re->parse_flags()); in IsAnchorEnd()
937 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap()); in IsAnchorEnd()
944 *pre = Regexp::LiteralString(NULL, 0, re->parse_flags()); in IsAnchorEnd()
994 c.Setup(re->parse_flags(), max_mem, RE2::ANCHOR_BOTH /* unused */); in Compile()