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

1 2 3 4 5

  /external/libcxx/test/std/re/re.const/re.err/
error_type.pass.cpp 13 // namespace regex_constants
41 assert(std::regex_constants::error_collate != 0);
42 assert(std::regex_constants::error_ctype != 0);
43 assert(std::regex_constants::error_escape != 0);
44 assert(std::regex_constants::error_backref != 0);
45 assert(std::regex_constants::error_brack != 0);
46 assert(std::regex_constants::error_paren != 0);
47 assert(std::regex_constants::error_brace != 0);
48 assert(std::regex_constants::error_badbrace != 0);
49 assert(std::regex_constants::error_range != 0)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.const/re.err/
error_type.pass.cpp 13 // namespace regex_constants
41 assert(std::regex_constants::error_collate != 0);
42 assert(std::regex_constants::error_ctype != 0);
43 assert(std::regex_constants::error_escape != 0);
44 assert(std::regex_constants::error_backref != 0);
45 assert(std::regex_constants::error_brack != 0);
46 assert(std::regex_constants::error_paren != 0);
47 assert(std::regex_constants::error_brace != 0);
48 assert(std::regex_constants::error_badbrace != 0);
49 assert(std::regex_constants::error_range != 0)
    [all...]
  /external/libcxx/test/std/re/re.const/re.matchflag/
match_flag_type.pass.cpp 13 // namespace regex_constants
41 assert(std::regex_constants::match_default == 0);
42 assert(std::regex_constants::match_not_bol != 0);
43 assert(std::regex_constants::match_not_eol != 0);
44 assert(std::regex_constants::match_not_bow != 0);
45 assert(std::regex_constants::match_not_eow != 0);
46 assert(std::regex_constants::match_any != 0);
47 assert(std::regex_constants::match_not_null != 0);
48 assert(std::regex_constants::match_continuous != 0);
49 assert(std::regex_constants::match_prev_avail != 0)
    [all...]
match_not_null.pass.cpp 25 std::regex_constants::match_not_null));
27 std::regex_constants::match_not_null));
30 std::regex_constants::match_not_null));
33 std::regex("b*", std::regex::extended | std::regex_constants::nosubs),
34 std::regex_constants::match_not_null));
37 std::regex_constants::match_not_null));
39 std::regex_constants::match_not_null));
42 std::regex("a*", std::regex::extended | std::regex_constants::nosubs),
43 std::regex_constants::match_not_null));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.const/re.matchflag/
match_flag_type.pass.cpp 13 // namespace regex_constants
41 assert(std::regex_constants::match_default == 0);
42 assert(std::regex_constants::match_not_bol != 0);
43 assert(std::regex_constants::match_not_eol != 0);
44 assert(std::regex_constants::match_not_bow != 0);
45 assert(std::regex_constants::match_not_eow != 0);
46 assert(std::regex_constants::match_any != 0);
47 assert(std::regex_constants::match_not_null != 0);
48 assert(std::regex_constants::match_continuous != 0);
49 assert(std::regex_constants::match_prev_avail != 0)
    [all...]
match_not_null.pass.cpp 25 std::regex_constants::match_not_null));
27 std::regex_constants::match_not_null));
30 std::regex_constants::match_not_null));
33 std::regex("b*", std::regex::extended | std::regex_constants::nosubs),
34 std::regex_constants::match_not_null));
37 std::regex_constants::match_not_null));
39 std::regex_constants::match_not_null));
42 std::regex("a*", std::regex::extended | std::regex_constants::nosubs),
43 std::regex_constants::match_not_null));
  /external/libcxx/test/std/re/re.const/re.synopt/
syntax_option_type.pass.cpp 13 // namespace regex_constants
38 assert(std::regex_constants::icase != 0);
39 assert(std::regex_constants::nosubs != 0);
40 assert(std::regex_constants::optimize != 0);
41 assert(std::regex_constants::collate != 0);
42 assert(std::regex_constants::ECMAScript == 0);
43 assert(std::regex_constants::basic != 0);
44 assert(std::regex_constants::extended != 0);
45 assert(std::regex_constants::awk != 0);
46 assert(std::regex_constants::grep != 0)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.const/re.synopt/
syntax_option_type.pass.cpp 13 // namespace regex_constants
38 assert(std::regex_constants::icase != 0);
39 assert(std::regex_constants::nosubs != 0);
40 assert(std::regex_constants::optimize != 0);
41 assert(std::regex_constants::collate != 0);
42 assert(std::regex_constants::ECMAScript == 0);
43 assert(std::regex_constants::basic != 0);
44 assert(std::regex_constants::extended != 0);
45 assert(std::regex_constants::awk != 0);
46 assert(std::regex_constants::grep != 0)
    [all...]
  /external/libcxx/test/std/re/re.regex/re.regex.construct/
ptr_flg.pass.cpp 14 // basic_regex(const charT* p, flag_type f = regex_constants::ECMAScript);
22 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc)
31 test("\\(a\\)", std::regex_constants::basic, 1);
32 test("\\(a[bc]\\)", std::regex_constants::basic, 1);
33 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2);
34 test("(a([bc]))", std::regex_constants::basic, 0);
36 test("\\(a\\)", std::regex_constants::extended, 0);
37 test("\\(a[bc]\\)", std::regex_constants::extended, 0);
38 test("\\(a\\([bc]\\)\\)", std::regex_constants::extended, 0);
39 test("(a([bc]))", std::regex_constants::extended, 2)
    [all...]
ptr_size_flg.pass.cpp 22 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f,
32 test("\\(a\\)", 5, std::regex_constants::basic, 1);
33 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1);
34 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2);
35 test("(a([bc]))", 9, std::regex_constants::basic, 0);
37 test("\\(a\\)", 5, std::regex_constants::extended, 0);
38 test("\\(a[bc]\\)", 9, std::regex_constants::extended, 0);
39 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::extended, 0);
40 test("(a([bc]))", 9, std::regex_constants::extended, 2);
42 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0)
    [all...]
il_flg.pass.cpp 17 // flag_type f = regex_constants::ECMAScript);
25 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);
24 test(const String& p, std::regex_constants::syntax_option_type f, unsigned mc)
33 test(std::string("\\(a\\)"), std::regex_constants::basic, 1);
34 test(std::string("\\(a[bc]\\)"), std::regex_constants::basic, 1);
35 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::basic, 2);
36 test(std::string("(a([bc]))"), std::regex_constants::basic, 0);
38 test(std::string("\\(a\\)"), 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, 0);
41 test(std::string("(a([bc]))"), std::regex_constants::extended, 2)
    [all...]
iter_iter_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
26 test(Iter first, Iter last, std::regex_constants::syntax_option_type f, unsigned mc)
41 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1);
42 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1);
43 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
44 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0);
46 test(F(s1.begin()), F(s1.end()), std::regex_constants::extended, 0);
47 test(F(s2.begin()), F(s2.end()), std::regex_constants::extended, 0);
48 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
49 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.regex/re.regex.construct/
ptr_flg.pass.cpp 14 // basic_regex(const charT* p, flag_type f = regex_constants::ECMAScript);
22 test(const CharT* p, std::regex_constants::syntax_option_type f, unsigned mc)
31 test("\\(a\\)", std::regex_constants::basic, 1);
32 test("\\(a[bc]\\)", std::regex_constants::basic, 1);
33 test("\\(a\\([bc]\\)\\)", std::regex_constants::basic, 2);
34 test("(a([bc]))", std::regex_constants::basic, 0);
36 test("\\(a\\)", std::regex_constants::extended, 0);
37 test("\\(a[bc]\\)", std::regex_constants::extended, 0);
38 test("\\(a\\([bc]\\)\\)", std::regex_constants::extended, 0);
39 test("(a([bc]))", std::regex_constants::extended, 2)
    [all...]
ptr_size_flg.pass.cpp 22 test(const CharT* p, std::size_t len, std::regex_constants::syntax_option_type f,
32 test("\\(a\\)", 5, std::regex_constants::basic, 1);
33 test("\\(a[bc]\\)", 9, std::regex_constants::basic, 1);
34 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::basic, 2);
35 test("(a([bc]))", 9, std::regex_constants::basic, 0);
37 test("\\(a\\)", 5, std::regex_constants::extended, 0);
38 test("\\(a[bc]\\)", 9, std::regex_constants::extended, 0);
39 test("\\(a\\([bc]\\)\\)", 13, std::regex_constants::extended, 0);
40 test("(a([bc]))", 9, std::regex_constants::extended, 2);
42 test("\\(a\\)", 5, std::regex_constants::ECMAScript, 0)
    [all...]
il_flg.pass.cpp 17 // flag_type f = regex_constants::ECMAScript);
25 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);
24 test(const String& p, std::regex_constants::syntax_option_type f, unsigned mc)
33 test(std::string("\\(a\\)"), std::regex_constants::basic, 1);
34 test(std::string("\\(a[bc]\\)"), std::regex_constants::basic, 1);
35 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::basic, 2);
36 test(std::string("(a([bc]))"), std::regex_constants::basic, 0);
38 test(std::string("\\(a\\)"), 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, 0);
41 test(std::string("(a([bc]))"), std::regex_constants::extended, 2)
    [all...]
iter_iter_flg.pass.cpp 16 // flag_type f = regex_constants::ECMAScript);
26 test(Iter first, Iter last, std::regex_constants::syntax_option_type f, unsigned mc)
41 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1);
42 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1);
43 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
44 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0);
46 test(F(s1.begin()), F(s1.end()), std::regex_constants::extended, 0);
47 test(F(s2.begin()), F(s2.end()), std::regex_constants::extended, 0);
48 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
49 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2)
    [all...]
  /external/libcxx/test/std/re/re.badexp/
regex_error.pass.cpp 17 // explicit regex_error(regex_constants::error_type ecode);
18 // regex_constants::error_type code() const;
28 std::regex_error e(std::regex_constants::error_collate);
29 assert(e.code() == std::regex_constants::error_collate);
33 std::regex_error e(std::regex_constants::error_ctype);
34 assert(e.code() == std::regex_constants::error_ctype);
38 std::regex_error e(std::regex_constants::error_escape);
39 assert(e.code() == std::regex_constants::error_escape);
44 std::regex_error e(std::regex_constants::error_backref);
45 assert(e.code() == std::regex_constants::error_backref)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.badexp/
regex_error.pass.cpp 17 // explicit regex_error(regex_constants::error_type ecode);
18 // regex_constants::error_type code() const;
28 std::regex_error e(std::regex_constants::error_collate);
29 assert(e.code() == std::regex_constants::error_collate);
33 std::regex_error e(std::regex_constants::error_ctype);
34 assert(e.code() == std::regex_constants::error_ctype);
38 std::regex_error e(std::regex_constants::error_escape);
39 assert(e.code() == std::regex_constants::error_escape);
44 std::regex_error e(std::regex_constants::error_backref);
45 assert(e.code() == std::regex_constants::error_backref)
    [all...]
  /external/libcxx/test/std/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/r16/sources/cxx-stl/llvm-libc++/test/std/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...]
  /external/google-benchmark/cmake/
std_regex.cpp 7 std::regex_constants::extended | std::regex_constants::nosubs);
  /external/libcxx/utils/google-benchmark/cmake/
std_regex.cpp 7 std::regex_constants::extended | std::regex_constants::nosubs);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/cmake/
std_regex.cpp 7 std::regex_constants::extended | std::regex_constants::nosubs);

Completed in 112 milliseconds

1 2 3 4 5