HomeSort by relevance Sort by last modified time
    Searched refs:regex_constants (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/libcxx/test/re/re.const/re.err/
error_type.pass.cpp 13 // namespace regex_constants
40 assert(std::regex_constants::error_collate != 0);
41 assert(std::regex_constants::error_ctype != 0);
42 assert(std::regex_constants::error_escape != 0);
43 assert(std::regex_constants::error_backref != 0);
44 assert(std::regex_constants::error_brack != 0);
45 assert(std::regex_constants::error_paren != 0);
46 assert(std::regex_constants::error_brace != 0);
47 assert(std::regex_constants::error_badbrace != 0);
48 assert(std::regex_constants::error_range != 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.const/re.err/
error_type.pass.cpp 13 // namespace regex_constants
40 assert(std::regex_constants::error_collate != 0);
41 assert(std::regex_constants::error_ctype != 0);
42 assert(std::regex_constants::error_escape != 0);
43 assert(std::regex_constants::error_backref != 0);
44 assert(std::regex_constants::error_brack != 0);
45 assert(std::regex_constants::error_paren != 0);
46 assert(std::regex_constants::error_brace != 0);
47 assert(std::regex_constants::error_badbrace != 0);
48 assert(std::regex_constants::error_range != 0)
    [all...]
  /external/libcxx/test/re/re.const/re.matchflag/
match_flag_type.pass.cpp 13 // namespace regex_constants
40 assert(std::regex_constants::match_default == 0);
41 assert(std::regex_constants::match_not_bol != 0);
42 assert(std::regex_constants::match_not_eol != 0);
43 assert(std::regex_constants::match_not_bow != 0);
44 assert(std::regex_constants::match_not_eow != 0);
45 assert(std::regex_constants::match_any != 0);
46 assert(std::regex_constants::match_not_null != 0);
47 assert(std::regex_constants::match_continuous != 0);
48 assert(std::regex_constants::match_prev_avail != 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.const/re.matchflag/
match_flag_type.pass.cpp 13 // namespace regex_constants
40 assert(std::regex_constants::match_default == 0);
41 assert(std::regex_constants::match_not_bol != 0);
42 assert(std::regex_constants::match_not_eol != 0);
43 assert(std::regex_constants::match_not_bow != 0);
44 assert(std::regex_constants::match_not_eow != 0);
45 assert(std::regex_constants::match_any != 0);
46 assert(std::regex_constants::match_not_null != 0);
47 assert(std::regex_constants::match_continuous != 0);
48 assert(std::regex_constants::match_prev_avail != 0)
    [all...]
  /external/libcxx/test/re/re.const/re.synopt/
syntax_option_type.pass.cpp 13 // namespace regex_constants
37 assert(std::regex_constants::icase != 0);
38 assert(std::regex_constants::nosubs != 0);
39 assert(std::regex_constants::optimize != 0);
40 assert(std::regex_constants::collate != 0);
41 assert(std::regex_constants::ECMAScript == 0);
42 assert(std::regex_constants::basic != 0);
43 assert(std::regex_constants::extended != 0);
44 assert(std::regex_constants::awk != 0);
45 assert(std::regex_constants::grep != 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.const/re.synopt/
syntax_option_type.pass.cpp 13 // namespace regex_constants
37 assert(std::regex_constants::icase != 0);
38 assert(std::regex_constants::nosubs != 0);
39 assert(std::regex_constants::optimize != 0);
40 assert(std::regex_constants::collate != 0);
41 assert(std::regex_constants::ECMAScript == 0);
42 assert(std::regex_constants::basic != 0);
43 assert(std::regex_constants::extended != 0);
44 assert(std::regex_constants::awk != 0);
45 assert(std::regex_constants::grep != 0)
    [all...]
  /external/libcxx/test/re/re.regex/re.regex.construct/
ptr_flg.pass.cpp 14 // basic_regex(const charT* p, flag_type f = regex_constants::ECMAScript);
21 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc)
30 test("\\(a\\)", std::regex_constants::basic, 1);
31 test("\\(a[bc]\\)", std::regex_constants::basic, 1);
32 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2);
33 test("(a([bc]))", std::regex_constants::basic, 0);
35 test("\\(a\\)", std::regex_constants::extended, 0);
36 test("\\(a[bc]\\)", std::regex_constants::extended, 0);
37 test("\\(a\\([bc]\\)\\)", std::regex_constants::extended, 0);
38 test("(a([bc]))", std::regex_constants::extended, 2)
    [all...]
ptr_size_flg.pass.cpp 21 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f,
31 test("\\(a\\)", 5, std::regex_constants::basic, 1);
32 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1);
33 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2);
34 test("(a([bc]))", 9, std::regex_constants::basic, 0);
36 test("\\(a\\)", 5, std::regex_constants::extended, 0);
37 test("\\(a[bc]\\)", 9, std::regex_constants::extended, 0);
38 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::extended, 0);
39 test("(a([bc]))", 9, std::regex_constants::extended, 2);
41 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0)
    [all...]
il_flg.pass.cpp 15 // flag_type f = regex_constants::ECMAScript);
23 test(std::initializer_list<char> il, std::regex_constants::syntax_option_type f, unsigned mc)
40 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::basic, 1);
41 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::basic, 1);
42 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::basic, 2);
43 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::basic, 0);
45 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::extended, 0);
46 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::extended, 0);
47 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::extended, 0);
48 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::extended, 2)
    [all...]
string_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
23 test(const String& p, std::regex_constants::syntax_option_type f, unsigned mc)
32 test(std::string("\\(a\\)"), std::regex_constants::basic, 1);
33 test(std::string("\\(a[bc]\\)"), std::regex_constants::basic, 1);
34 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::basic, 2);
35 test(std::string("(a([bc]))"), std::regex_constants::basic, 0);
37 test(std::string("\\(a\\)"), std::regex_constants::extended, 0);
38 test(std::string("\\(a[bc]\\)"), std::regex_constants::extended, 0);
39 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::extended, 0);
40 test(std::string("(a([bc]))"), std::regex_constants::extended, 2)
    [all...]
iter_iter_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
25 test(Iter first, Iter last, std::regex_constants::syntax_option_type f, unsigned mc)
40 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1);
41 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1);
42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
43 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0);
45 test(F(s1.begin()), F(s1.end()), std::regex_constants::extended, 0);
46 test(F(s2.begin()), F(s2.end()), std::regex_constants::extended, 0);
47 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
48 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
ptr_flg.pass.cpp 14 // basic_regex(const charT* p, flag_type f = regex_constants::ECMAScript);
21 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc)
30 test("\\(a\\)", std::regex_constants::basic, 1);
31 test("\\(a[bc]\\)", std::regex_constants::basic, 1);
32 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2);
33 test("(a([bc]))", std::regex_constants::basic, 0);
35 test("\\(a\\)", std::regex_constants::extended, 0);
36 test("\\(a[bc]\\)", std::regex_constants::extended, 0);
37 test("\\(a\\([bc]\\)\\)", std::regex_constants::extended, 0);
38 test("(a([bc]))", std::regex_constants::extended, 2)
    [all...]
ptr_size_flg.pass.cpp 21 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f,
31 test("\\(a\\)", 5, std::regex_constants::basic, 1);
32 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1);
33 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2);
34 test("(a([bc]))", 9, std::regex_constants::basic, 0);
36 test("\\(a\\)", 5, std::regex_constants::extended, 0);
37 test("\\(a[bc]\\)", 9, std::regex_constants::extended, 0);
38 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::extended, 0);
39 test("(a([bc]))", 9, std::regex_constants::extended, 2);
41 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0)
    [all...]
il_flg.pass.cpp 15 // flag_type f = regex_constants::ECMAScript);
23 test(std::initializer_list<char> il, std::regex_constants::syntax_option_type f, unsigned mc)
40 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::basic, 1);
41 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::basic, 1);
42 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::basic, 2);
43 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::basic, 0);
45 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::extended, 0);
46 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::extended, 0);
47 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::extended, 0);
48 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::extended, 2)
    [all...]
string_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
23 test(const String& p, std::regex_constants::syntax_option_type f, unsigned mc)
32 test(std::string("\\(a\\)"), std::regex_constants::basic, 1);
33 test(std::string("\\(a[bc]\\)"), std::regex_constants::basic, 1);
34 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::basic, 2);
35 test(std::string("(a([bc]))"), std::regex_constants::basic, 0);
37 test(std::string("\\(a\\)"), std::regex_constants::extended, 0);
38 test(std::string("\\(a[bc]\\)"), std::regex_constants::extended, 0);
39 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::extended, 0);
40 test(std::string("(a([bc]))"), std::regex_constants::extended, 2)
    [all...]
iter_iter_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
25 test(Iter first, Iter last, std::regex_constants::syntax_option_type f, unsigned mc)
40 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1);
41 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1);
42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
43 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0);
45 test(F(s1.begin()), F(s1.end()), std::regex_constants::extended, 0);
46 test(F(s2.begin()), F(s2.end()), std::regex_constants::extended, 0);
47 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
48 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2)
    [all...]
  /external/libcxx/test/re/re.badexp/
regex_error.pass.cpp 17 // explicit regex_error(regex_constants::error_type ecode);
18 // regex_constants::error_type code() const;
27 std::regex_error e(std::regex_constants::error_collate);
28 assert(e.code() == std::regex_constants::error_collate);
32 std::regex_error e(std::regex_constants::error_ctype);
33 assert(e.code() == std::regex_constants::error_ctype);
37 std::regex_error e(std::regex_constants::error_escape);
38 assert(e.code() == std::regex_constants::error_escape);
43 std::regex_error e(std::regex_constants::error_backref);
44 assert(e.code() == std::regex_constants::error_backref)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.badexp/
regex_error.pass.cpp 17 // explicit regex_error(regex_constants::error_type ecode);
18 // regex_constants::error_type code() const;
27 std::regex_error e(std::regex_constants::error_collate);
28 assert(e.code() == std::regex_constants::error_collate);
32 std::regex_error e(std::regex_constants::error_ctype);
33 assert(e.code() == std::regex_constants::error_ctype);
37 std::regex_error e(std::regex_constants::error_escape);
38 assert(e.code() == std::regex_constants::error_escape);
43 std::regex_error e(std::regex_constants::error_backref);
44 assert(e.code() == std::regex_constants::error_backref)
    [all...]
  /external/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 17 // static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
18 // static constexpr regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
19 // static constexpr regex_constants::syntax_option_type optimize = regex_constants::optimize;
20 // static constexpr regex_constants::syntax_option_type collate = regex_constants::collate;
21 // static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 17 // static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
18 // static constexpr regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
19 // static constexpr regex_constants::syntax_option_type optimize = regex_constants::optimize;
20 // static constexpr regex_constants::syntax_option_type collate = regex_constants::collate;
21 // static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex_scanner.h 81 typedef regex_constants::syntax_option_type _FlagT;
118 { return _M_flags & regex_constants::ECMAScript; }
122 { return _M_flags & (regex_constants::basic | regex_constants::grep); }
127 return _M_flags & (regex_constants::extended
128 | regex_constants::egrep
129 | regex_constants::awk);
134 { return _M_flags & (regex_constants::grep | regex_constants::egrep); }
138 { return _M_flags & regex_constants::awk;
    [all...]
  /external/libcxx/test/re/re.alg/re.alg.replace/
test3.pass.cpp 17 // regex_constants::match_flag_type flags =
18 // regex_constants::match_default);
37 std::regex_constants::format_sed);
45 std::regex_constants::format_sed);
53 std::regex_constants::format_no_copy);
61 std::regex_constants::format_first_only);
69 std::regex_constants::format_first_only |
70 std::regex_constants::format_no_copy);
test4.pass.cpp 16 // regex_constants::match_flag_type flags =
17 // regex_constants::match_default);
36 std::regex_constants::format_sed);
44 std::regex_constants::format_sed);
52 std::regex_constants::format_no_copy);
60 std::regex_constants::format_first_only);
68 std::regex_constants::format_first_only |
69 std::regex_constants::format_no_copy);
test5.pass.cpp 17 // regex_constants::match_flag_type flags =
18 // regex_constants::match_default);
37 std::regex_constants::format_sed);
45 std::regex_constants::format_sed);
53 std::regex_constants::format_no_copy);
61 std::regex_constants::format_first_only);
69 std::regex_constants::format_first_only |
70 std::regex_constants::format_no_copy);
test6.pass.cpp 17 // regex_constants::match_flag_type flags =
18 // regex_constants::match_default);
37 std::regex_constants::format_sed);
45 std::regex_constants::format_sed);
53 std::regex_constants::format_no_copy);
61 std::regex_constants::format_first_only);
69 std::regex_constants::format_first_only |
70 std::regex_constants::format_no_copy);

Completed in 272 milliseconds

1 2 3 4 5 6 7