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

1 23 4 5 6 7

  /external/libcxx/test/re/re.alg/re.alg.replace/
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);
test2.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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.replace/
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);
test2.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);
  /external/libcxx/test/re/re.alg/re.alg.match/
grep.pass.cpp 17 // regex_constants::match_flag_type flags = regex_constants::match_default);
30 std::regex_constants::grep)));
46 std::regex_constants::grep)));
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...]
  /external/libcxx/test/re/re.regex/
types.pass.cpp 18 // typedef regex_constants::syntax_option_type flag_type;
28 std::regex_constants::syntax_option_type>::value), "");
33 std::regex_constants::syntax_option_type>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/
grep.pass.cpp 17 // regex_constants::match_flag_type flags = regex_constants::match_default);
30 std::regex_constants::grep)));
46 std::regex_constants::grep)));
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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/
types.pass.cpp 18 // typedef regex_constants::syntax_option_type flag_type;
28 std::regex_constants::syntax_option_type>::value), "");
33 std::regex_constants::syntax_option_type>::value), "");
  /external/libcxx/test/re/re.regex/re.regex.construct/
bad_escape.pass.cpp 26 result = (ex.code() == std::regex_constants::error_escape);
string.pass.cpp 25 assert(r.flags() == std::regex_constants::ECMAScript);
  /external/libcxx/test/re/re.results/re.results.form/
form4.pass.cpp 16 // regex_constants::match_flag_type flags = regex_constants::format_default) const;
40 std::string out = m.format(fmt, std::regex_constants::format_sed);
49 std::string out = m.format(fmt, std::regex_constants::format_sed);
68 std::wstring out = m.format(fmt, std::regex_constants::format_sed);
77 std::wstring out = m.format(fmt, std::regex_constants::format_sed);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
bad_escape.pass.cpp 26 result = (ex.code() == std::regex_constants::error_escape);
string.pass.cpp 25 assert(r.flags() == std::regex_constants::ECMAScript);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.form/
form4.pass.cpp 16 // regex_constants::match_flag_type flags = regex_constants::format_default) const;
40 std::string out = m.format(fmt, std::regex_constants::format_sed);
49 std::string out = m.format(fmt, std::regex_constants::format_sed);
68 std::wstring out = m.format(fmt, std::regex_constants::format_sed);
77 std::wstring out = m.format(fmt, std::regex_constants::format_sed);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex.h 342 typedef regex_constants::syntax_option_type flag_type;
350 static constexpr flag_type icase = regex_constants::icase;
351 static constexpr flag_type nosubs = regex_constants::nosubs;
352 static constexpr flag_type optimize = regex_constants::optimize;
353 static constexpr flag_type collate = regex_constants::collate;
354 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
355 static constexpr flag_type basic = regex_constants::basic;
356 static constexpr flag_type extended = regex_constants::extended;
357 static constexpr flag_type awk = regex_constants::awk;
358 static constexpr flag_type grep = regex_constants::grep
    [all...]
regex_compiler.h 71 typedef regex_constants::syntax_option_type _FlagT;
232 else if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
285 if (_M_flags & (regex_constants::basic | regex_constants::grep))
350 if (!(_M_flags & regex_constants::ECMAScript)
381 if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
391 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex.h 342 typedef regex_constants::syntax_option_type flag_type;
350 static constexpr flag_type icase = regex_constants::icase;
351 static constexpr flag_type nosubs = regex_constants::nosubs;
352 static constexpr flag_type optimize = regex_constants::optimize;
353 static constexpr flag_type collate = regex_constants::collate;
354 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
355 static constexpr flag_type basic = regex_constants::basic;
356 static constexpr flag_type extended = regex_constants::extended;
357 static constexpr flag_type awk = regex_constants::awk;
358 static constexpr flag_type grep = regex_constants::grep
    [all...]
regex_compiler.h 71 typedef regex_constants::syntax_option_type _FlagT;
232 else if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
285 if (_M_flags & (regex_constants::basic | regex_constants::grep))
350 if (!(_M_flags & regex_constants::ECMAScript)
381 if (!(_M_flags & (regex_constants::basic | regex_constants::grep)))
391 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex.h 342 typedef regex_constants::syntax_option_type flag_type;
350 static constexpr flag_type icase = regex_constants::icase;
351 static constexpr flag_type nosubs = regex_constants::nosubs;
352 static constexpr flag_type optimize = regex_constants::optimize;
353 static constexpr flag_type collate = regex_constants::collate;
354 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
355 static constexpr flag_type basic = regex_constants::basic;
356 static constexpr flag_type extended = regex_constants::extended;
357 static constexpr flag_type awk = regex_constants::awk;
358 static constexpr flag_type grep = regex_constants::grep
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex.h 58 regex_constants::match_flag_type __flags);
68 regex_constants::syntax_option_type __flags);
410 typedef regex_constants::syntax_option_type flag_type;
418 static constexpr flag_type icase = regex_constants::icase;
419 static constexpr flag_type nosubs = regex_constants::nosubs;
420 static constexpr flag_type optimize = regex_constants::optimize;
421 static constexpr flag_type collate = regex_constants::collate;
422 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
423 static constexpr flag_type basic = regex_constants::basic;
424 static constexpr flag_type extended = regex_constants::extended
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
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...]

Completed in 908 milliseconds

1 23 4 5 6 7