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

1 2 3 4 5

  /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.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.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.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.regex/re.regex.construct/
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...]
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...]
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...]
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...]
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++/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.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);
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.alg/re.alg.match/
basic.pass.cpp 17 // regex_constants::match_flag_type flags = regex_constants::match_default);
35 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::basic)));
51 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::basic)));
66 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::basic)));
73 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic)));
79 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic),
80 std::regex_constants::match_continuous));
86 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::basic)));
92 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::basic)))
    [all...]
extended.pass.cpp 17 // regex_constants::match_flag_type flags = regex_constants::match_default);
29 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended)));
45 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::extended)));
60 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::extended)));
67 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended)));
73 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended),
74 std::regex_constants::match_continuous));
80 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::extended)));
86 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::extended)))
    [all...]
egrep.pass.cpp 17 // regex_constants::match_flag_type flags = regex_constants::match_default);
30 std::regex_constants::egrep)));
46 std::regex_constants::egrep)));
53 std::regex_constants::egrep)));
69 std::regex_constants::egrep)));
  /ndk/sources/cxx-stl/llvm-libc++/include/
regex 22 namespace regex_constants
81 } // regex_constants
87 explicit regex_error(regex_constants::error_type ecode);
88 regex_constants::error_type code() const;
130 typedef regex_constants::syntax_option_type flag_type;
134 static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
135 static constexpr regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
136 static constexpr regex_constants::syntax_option_type optimize = regex_constants::optimize
    [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...]
  /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_compiler.h 65 typedef regex_constants::syntax_option_type _FlagT;
228 else if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
281 if (_M_flags & (regex_constants::basic | regex_constants::grep))
346 if (!(_M_flags & regex_constants::ECMAScript)
377 if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
387 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))
    [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_compiler.h 65 typedef regex_constants::syntax_option_type _FlagT;
228 else if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
281 if (_M_flags & (regex_constants::basic | regex_constants::grep))
346 if (!(_M_flags & regex_constants::ECMAScript)
377 if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
387 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))
    [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);
  /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);

Completed in 771 milliseconds

1 2 3 4 5