Home | History | Annotate | Download | only in re.synopt

Lines Matching refs:icase

18 //     icase      = unspecified,
37 assert(std::regex_constants::icase != 0);
48 assert((std::regex_constants::icase & std::regex_constants::nosubs) == 0);
49 assert((std::regex_constants::icase & std::regex_constants::optimize) == 0);
50 assert((std::regex_constants::icase & std::regex_constants::collate) == 0);
51 assert((std::regex_constants::icase & std::regex_constants::ECMAScript) == 0);
52 assert((std::regex_constants::icase & std::regex_constants::basic) == 0);
53 assert((std::regex_constants::icase & std::regex_constants::extended) == 0);
54 assert((std::regex_constants::icase & std::regex_constants::awk) == 0);
55 assert((std::regex_constants::icase & std::regex_constants::grep) == 0);
56 assert((std::regex_constants::icase & std::regex_constants::egrep) == 0);
102 assert((std::regex_constants::icase | std::regex_constants::nosubs) != 0);
103 assert((std::regex_constants::icase ^ std::regex_constants::nosubs) != 0);
105 std::regex_constants::syntax_option_type e1 = std::regex_constants::icase;