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

1 2 3

  /ndk/sources/cxx-stl/llvm-libc++/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++/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++/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++/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...]
ptr.pass.cpp 24 assert(r.flags() == std::regex_constants::ECMAScript);
  /ndk/sources/cxx-stl/llvm-libc++/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++/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++/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);
test1.pass.cpp 19 // regex_constants::match_flag_type flags =
20 // regex_constants::match_default);
50 std::regex_constants::format_sed);
63 std::regex_constants::format_sed);
76 std::regex_constants::format_no_copy);
89 std::regex_constants::format_first_only);
102 std::regex_constants::format_first_only |
103 std::regex_constants::format_no_copy);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_error.h 35 namespace regex_constants namespace
120 } // namespace regex_constants
133 regex_constants::error_type _M_code;
142 regex_error(regex_constants::error_type __ecode);
151 regex_constants::error_type
158 __throw_regex_error(regex_constants::error_type __ecode);
regex.h 348 typedef regex_constants::syntax_option_type flag_type;
356 static constexpr regex_constants::syntax_option_type icase
357 = regex_constants::icase;
358 static constexpr regex_constants::syntax_option_type nosubs
359 = regex_constants::nosubs;
360 static constexpr regex_constants::syntax_option_type optimize
361 = regex_constants::optimize;
362 static constexpr regex_constants::syntax_option_type collate
363 = regex_constants::collate;
364 static constexpr regex_constants::syntax_option_type ECMAScrip
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
regex_error.h 35 namespace regex_constants namespace
120 } // namespace regex_constants
133 regex_constants::error_type _M_code;
142 regex_error(regex_constants::error_type __ecode);
151 regex_constants::error_type
158 __throw_regex_error(regex_constants::error_type __ecode);
regex.h 348 typedef regex_constants::syntax_option_type flag_type;
356 static constexpr regex_constants::syntax_option_type icase
357 = regex_constants::icase;
358 static constexpr regex_constants::syntax_option_type nosubs
359 = regex_constants::nosubs;
360 static constexpr regex_constants::syntax_option_type optimize
361 = regex_constants::optimize;
362 static constexpr regex_constants::syntax_option_type collate
363 = regex_constants::collate;
364 static constexpr regex_constants::syntax_option_type ECMAScrip
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_error.h 35 namespace regex_constants namespace
120 } // namespace regex_constants
133 regex_constants::error_type _M_code;
142 regex_error(regex_constants::error_type __ecode);
151 regex_constants::error_type
158 __throw_regex_error(regex_constants::error_type __ecode);
regex.h 348 typedef regex_constants::syntax_option_type flag_type;
356 static constexpr regex_constants::syntax_option_type icase
357 = regex_constants::icase;
358 static constexpr regex_constants::syntax_option_type nosubs
359 = regex_constants::nosubs;
360 static constexpr regex_constants::syntax_option_type optimize
361 = regex_constants::optimize;
362 static constexpr regex_constants::syntax_option_type collate
363 = regex_constants::collate;
364 static constexpr regex_constants::syntax_option_type ECMAScrip
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_error.h 35 namespace regex_constants namespace
120 } // namespace regex_constants
133 regex_constants::error_type _M_code;
142 regex_error(regex_constants::error_type __ecode);
151 regex_constants::error_type
158 __throw_regex_error(regex_constants::error_type __ecode);
regex.h 349 typedef regex_constants::syntax_option_type flag_type;
357 static constexpr regex_constants::syntax_option_type icase
358 = regex_constants::icase;
359 static constexpr regex_constants::syntax_option_type nosubs
360 = regex_constants::nosubs;
361 static constexpr regex_constants::syntax_option_type optimize
362 = regex_constants::optimize;
363 static constexpr regex_constants::syntax_option_type collate
364 = regex_constants::collate;
365 static constexpr regex_constants::syntax_option_type ECMAScrip
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/src/
regex.cpp 18 make_error_type_string(regex_constants::error_type ecode)
22 case regex_constants::error_collate:
24 case regex_constants::error_ctype:
26 case regex_constants::error_escape:
29 case regex_constants::error_backref:
31 case regex_constants::error_brack:
33 case regex_constants::error_paren:
35 case regex_constants::error_brace:
37 case regex_constants::error_badbrace:
39 case regex_constants::error_range
    [all...]

Completed in 299 milliseconds

1 2 3