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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/re/re.alg/re.alg.match/
awk.pass.cpp 10 // <regex>
20 #include <regex>
32 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk)));
48 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
63 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::awk)));
70 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
76 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk),
83 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::awk)));
89 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::awk)));
104 assert(std::regex_match(s, m, std::regex("(ab)*c", std::regex_constants::awk)))
    [all...]
  /external/libchrome/base/task_scheduler/
test_utils.h 14 #define EXPECT_DCHECK_DEATH(statement, regex) EXPECT_DEATH(statement, regex)
16 #define EXPECT_DCHECK_DEATH(statement, regex)
  /external/libcxx/test/std/re/re.alg/re.alg.search/
lookahead.pass.cpp 10 // <regex>
21 #include <regex>
27 assert(!std::regex_search("ab", std::regex("(?=^)b")));
28 assert(!std::regex_search("ab", std::regex("a(?=^)b")));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
lookahead.pass.cpp 10 // <regex>
21 #include <regex>
26 assert(!std::regex_search("ab", std::regex("(?=^)b")));
27 assert(!std::regex_search("ab", std::regex("a(?=^)b")));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.search/
lookahead.pass.cpp 10 // <regex>
21 #include <regex>
27 assert(!std::regex_search("ab", std::regex("(?=^)b")));
28 assert(!std::regex_search("ab", std::regex("a(?=^)b")));
  /external/fmtlib/test/
assert-test.cc 32 # define EXPECT_DEBUG_DEATH_IF_SUPPORTED(statement, regex) \
33 EXPECT_DEBUG_DEATH(statement, regex)
35 # define EXPECT_DEBUG_DEATH_IF_SUPPORTED(statement, regex) \
36 GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
  /external/libcxx/test/std/re/re.regex/re.regex.assign/
assign_ptr_size_flag.pass.cpp 10 // <regex>
16 #include <regex>
22 std::regex r2;
23 r2.assign("(a([bc]))", 9, std::regex::extended);
24 assert(r2.flags() == std::regex::extended);
copy.pass.cpp 10 // <regex>
16 #include <regex>
22 std::regex r1("(a([bc]))");
23 std::regex r2;
25 assert(r2.flags() == std::regex::ECMAScript);
  /external/libcxx/test/std/re/re.regex/re.regex.construct/
copy.pass.cpp 10 // <regex>
16 #include <regex>
22 std::regex r1("(a([bc]))");
23 std::regex r2 = r1;
24 assert(r2.flags() == std::regex::ECMAScript);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
re_comp.h 22 /* This is only a wrapper around the <regex.h> file. XPG4.2 mentions
24 #include <regex.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
re_comp.h 22 /* This is only a wrapper around the <regex.h> file. XPG4.2 mentions
24 #include <regex.h>
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.assign/
assign_ptr_size_flag.pass.cpp 10 // <regex>
16 #include <regex>
21 std::regex r2;
22 r2.assign("(a([bc]))", 9, std::regex::extended);
23 assert(r2.flags() == std::regex::extended);
copy.pass.cpp 10 // <regex>
16 #include <regex>
21 std::regex r1("(a([bc]))");
22 std::regex r2;
24 assert(r2.flags() == std::regex::ECMAScript);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
copy.pass.cpp 10 // <regex>
16 #include <regex>
21 std::regex r1("(a([bc]))");
22 std::regex r2 = r1;
23 assert(r2.flags() == std::regex::ECMAScript);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.regex/re.regex.assign/
assign_ptr_size_flag.pass.cpp 10 // <regex>
16 #include <regex>
22 std::regex r2;
23 r2.assign("(a([bc]))", 9, std::regex::extended);
24 assert(r2.flags() == std::regex::extended);
copy.pass.cpp 10 // <regex>
16 #include <regex>
22 std::regex r1("(a([bc]))");
23 std::regex r2;
25 assert(r2.flags() == std::regex::ECMAScript);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.regex/re.regex.construct/
copy.pass.cpp 10 // <regex>
16 #include <regex>
22 std::regex r1("(a([bc]))");
23 std::regex r2 = r1;
24 assert(r2.flags() == std::regex::ECMAScript);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/
awk.pass.cpp 10 // <regex>
20 #include <regex>
30 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk)));
46 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
61 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::awk)));
68 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
74 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk),
81 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::awk)));
87 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::awk)));
102 assert(std::regex_match(s, m, std::regex("(ab)*c", std::regex_constants::awk)))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.match/
awk.pass.cpp 10 // <regex>
20 #include <regex>
32 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk)));
48 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
63 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::awk)));
70 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
76 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk),
83 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::awk)));
89 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::awk)));
104 assert(std::regex_match(s, m, std::regex("(ab)*c", std::regex_constants::awk)))
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-death-test.h 102 // On POSIX-compliant systems (*nix), we use the <regex.h> library,
103 // which uses the POSIX extended regex syntax.
105 // On other platforms (e.g. Windows), we only support a simple regex
109 // or POSIX extended regex syntax. For example, we don't support
114 // subset of both PCRE and POSIX extended regex, so it's easy to
141 // If you accidentally use PCRE or POSIX extended regex features
147 // as a compiled regex library, but should perform well enough for a
167 // that matches regex.
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_
    [all...]
  /external/googletest/googletest/include/gtest/
gtest-death-test.h 102 // On POSIX-compliant systems (*nix), we use the <regex.h> library,
103 // which uses the POSIX extended regex syntax.
105 // On other platforms (e.g. Windows), we only support a simple regex
109 // or POSIX extended regex syntax. For example, we don't support
114 // subset of both PCRE and POSIX extended regex, so it's easy to
141 // If you accidentally use PCRE or POSIX extended regex features
147 // as a compiled regex library, but should perform well enough for a
167 // that matches regex.
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-death-test.h 102 // On POSIX-compliant systems (*nix), we use the <regex.h> library,
103 // which uses the POSIX extended regex syntax.
105 // On other platforms (e.g. Windows), we only support a simple regex
109 // or POSIX extended regex syntax. For example, we don't support
114 // subset of both PCRE and POSIX extended regex, so it's easy to
141 // If you accidentally use PCRE or POSIX extended regex features
147 // as a compiled regex library, but should perform well enough for a
167 // that matches regex.
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_
    [all...]
  /external/v8/testing/gtest/include/gtest/
gtest-death-test.h 102 // On POSIX-compliant systems (*nix), we use the <regex.h> library,
103 // which uses the POSIX extended regex syntax.
105 // On other platforms (e.g. Windows), we only support a simple regex
109 // or POSIX extended regex syntax. For example, we don't support
114 // subset of both PCRE and POSIX extended regex, so it's easy to
141 // If you accidentally use PCRE or POSIX extended regex features
147 // as a compiled regex library, but should perform well enough for a
167 // that matches regex.
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-death-test.h 102 // On POSIX-compliant systems (*nix), we use the <regex.h> library,
103 // which uses the POSIX extended regex syntax.
105 // On other platforms (e.g. Windows), we only support a simple regex
109 // or POSIX extended regex syntax. For example, we don't support
114 // subset of both PCRE and POSIX extended regex, so it's easy to
141 // If you accidentally use PCRE or POSIX extended regex features
147 // as a compiled regex library, but should perform well enough for a
167 // that matches regex.
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/
gtest-death-test.h 102 // On POSIX-compliant systems (*nix), we use the <regex.h> library,
103 // which uses the POSIX extended regex syntax.
105 // On other platforms (e.g. Windows), we only support a simple regex
109 // or POSIX extended regex syntax. For example, we don't support
114 // subset of both PCRE and POSIX extended regex, so it's easy to
141 // If you accidentally use PCRE or POSIX extended regex features
147 // as a compiled regex library, but should perform well enough for a
167 // that matches regex.
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_
    [all...]

Completed in 958 milliseconds

1 2 3 4 5 6 7 8 91011>>