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

Lines Matching refs:nosubs

19 //     nosubs     = unspecified,
38 assert(std::regex_constants::nosubs != 0);
48 assert((std::regex_constants::icase & std::regex_constants::nosubs) == 0);
58 assert((std::regex_constants::nosubs & std::regex_constants::optimize) == 0);
59 assert((std::regex_constants::nosubs & std::regex_constants::collate) == 0);
60 assert((std::regex_constants::nosubs & std::regex_constants::ECMAScript) == 0);
61 assert((std::regex_constants::nosubs & std::regex_constants::basic) == 0);
62 assert((std::regex_constants::nosubs & std::regex_constants::extended) == 0);
63 assert((std::regex_constants::nosubs & std::regex_constants::awk) == 0);
64 assert((std::regex_constants::nosubs & std::regex_constants::grep) == 0);
65 assert((std::regex_constants::nosubs & 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);
106 std::regex_constants::syntax_option_type e2 = std::regex_constants::nosubs;