/external/pcre/pcrecpp/ |
D | pcrecpp_unittest.cc | 74 CHECK(pattern.FullMatch(p)); in Timing1() 83 CHECK(pattern.FullMatch("ruby:1234", &i)); in Timing2() 133 CHECK(RE("([0-9a-fA-F]+)[uUlL]*").FullMatch(#value, Hex(&v))); \ in RadixTests() 135 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0x" #value, CRadix(&v))); \ in RadixTests() 159 CHECK(RE("([0-7]+)[uUlL]*").FullMatch(#value, Octal(&v))); \ in RadixTests() 161 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0" #value, CRadix(&v))); \ in RadixTests() 185 CHECK(RE("(-?[0-9]+)[uUlL]*").FullMatch(#value, &v)); \ in RadixTests() 187 CHECK(RE("(-?[0-9a-fA-FxX]+)[uUlL]*").FullMatch(#value, CRadix(&v))); \ in RadixTests() 441 CHECK(RE("(foo)|hello").FullMatch("hello", &a)); in TestMatchNumberPeculiarity() 461 CHECK(re.FullMatch(text_good) == false); in TestRecursion() [all …]
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-port_test.cc | 406 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty)); in TYPED_TEST() 407 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty)); in TYPED_TEST() 410 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re)); in TYPED_TEST() 411 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re)); in TYPED_TEST() 412 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re)); in TYPED_TEST() 413 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re)); in TYPED_TEST() 869 EXPECT_TRUE(RE::FullMatch("", empty)); in TEST() 870 EXPECT_FALSE(RE::FullMatch("a", empty)); in TEST() 873 EXPECT_TRUE(RE::FullMatch("a", re1)); in TEST() 876 EXPECT_TRUE(RE::FullMatch("az", re)); in TEST() [all …]
|
/external/autotest/client/site_tests/camera_V4L2/src/ |
D | camera_characteristics.cc | 27 CHECK(RE2::FullMatch(value, "(.*)x(.*)", width, height)); in ParseSize() 48 CHECK(RE2::FullMatch(value, "([0-9a-f]{4}):([0-9a-f]{4})", &info->usb_vid, in SetEntry() 128 if (RE2::FullMatch(line, R"(camera(\d+)\.([^.=]+)=(.+))", &camera_id, &key, in InitFrom() 142 } else if (RE2::FullMatch(line, R"(camera(\d+)\.module(\d+).([^.=]+)=(.+))", in InitFrom()
|
/external/googletest/googletest/test/ |
D | googletest-port-test.cc | 422 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty)); in TYPED_TEST() 423 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty)); in TYPED_TEST() 426 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re)); in TYPED_TEST() 427 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re)); in TYPED_TEST() 428 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re)); in TYPED_TEST() 429 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re)); in TYPED_TEST() 885 EXPECT_TRUE(RE::FullMatch("", empty)); in TEST() 886 EXPECT_FALSE(RE::FullMatch("a", empty)); in TEST() 889 EXPECT_TRUE(RE::FullMatch("a", re1)); in TEST() 892 EXPECT_TRUE(RE::FullMatch("az", re)); in TEST() [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | regex_full_match_op.cc | 52 output_flat(i) = RE2::FullMatch(input_flat(i), match); in Compute() 81 output_flat(i) = RE2::FullMatch(input_flat(i), *re_); in Compute()
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_show.cc | 96 if (RE2::FullMatch(node->name(), regex)) { in ShouldShow() 106 if (RE2::FullMatch(node->name(), regex)) return false; in ShouldShow() 114 if (RE2::FullMatch(node->name(), regex)) { in ShouldTrim() 129 if (RE2::FullMatch(type, regex)) { in ReAccount()
|
D | tfprof_show_multi.cc | 87 if (RE2::FullMatch(node->name(), regex)) { in ShouldShow() 97 if (RE2::FullMatch(node->name(), regex)) return false; in ShouldShow() 105 if (RE2::FullMatch(node->name(), regex)) { in ShouldTrim()
|
D | tfprof_node.cc | 26 return RE2::FullMatch(device, in CountAsCPUTime()
|
D | tfprof_scope.cc | 129 if (RE2::FullMatch(root->name(), regex)) { in SearchRoot()
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | xla_hlo_profile_test.cc | 58 if (RE2::FullMatch(parsed_line.flops, "[0-9.TGMk]+FLOP/s")) { in HasFlops() 71 if (RE2::FullMatch(parsed_line.trops, "[0-9.TGMk]+TROP/s")) { in HasTrops() 108 bool matched = RE2::FullMatch( 127 return RE2::FullMatch(line, "Extra metric \\S+: \\d+"); in IsExtraMetricProfileOutputLine()
|
D | test_macros.cc | 90 if (RE2::FullMatch(/*text=*/platform_string, /*re=*/s)) { in PrependDisabledIfIndicated()
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 850 static bool FullMatch(const ::std::string& str, const RE& re) { 851 return FullMatch(str.c_str(), re); 859 static bool FullMatch(const ::string& str, const RE& re) { 860 return FullMatch(str.c_str(), re); 868 static bool FullMatch(const char* str, const RE& re);
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 842 static bool FullMatch(const ::std::string& str, const RE& re) { 843 return FullMatch(str.c_str(), re); 851 static bool FullMatch(const ::string& str, const RE& re) { 852 return FullMatch(str.c_str(), re); 860 static bool FullMatch(const char* str, const RE& re);
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-port.h | 861 static bool FullMatch(const ::std::string& str, const RE& re) { 862 return FullMatch(str.c_str(), re); 870 static bool FullMatch(const ::string& str, const RE& re) { 871 return FullMatch(str.c_str(), re); 879 static bool FullMatch(const char* str, const RE& re);
|
/external/swiftshader/third_party/LLVM/utils/FileCheck/ |
D | FileCheck.cpp | 334 StringRef FullMatch = MatchInfo[0]; in Match() local 343 MatchLen = FullMatch.size(); in Match() 344 return FullMatch.data()-Buffer.data(); in Match()
|
/external/googletest/googletest/include/gtest/internal/ |
D | gtest-port.h | 937 static bool FullMatch(const ::std::string& str, const RE& re) { 938 return FullMatch(str.c_str(), re); 946 static bool FullMatch(const ::string& str, const RE& re) { 947 return FullMatch(str.c_str(), re); 955 static bool FullMatch(const char* str, const RE& re);
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-port.h | 1269 static bool FullMatch(const ::std::string& str, const RE& re) { 1270 return FullMatch(str.c_str(), re); 1278 static bool FullMatch(const ::string& str, const RE& re) { 1279 return FullMatch(str.c_str(), re); 1287 static bool FullMatch(const char* str, const RE& re);
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 1193 static bool FullMatch(const ::std::string& str, const RE& re) { 1194 return FullMatch(str.c_str(), re); 1202 static bool FullMatch(const ::string& str, const RE& re) { 1203 return FullMatch(str.c_str(), re); 1211 static bool FullMatch(const char* str, const RE& re);
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-port.h | 1184 static bool FullMatch(const ::std::string& str, const RE& re) { 1185 return FullMatch(str.c_str(), re); 1193 static bool FullMatch(const ::string& str, const RE& re) { 1194 return FullMatch(str.c_str(), re); 1202 static bool FullMatch(const char* str, const RE& re);
|
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/ |
D | gtest-port.h | 1197 static bool FullMatch(const ::std::string& str, const RE& re) { 1198 return FullMatch(str.c_str(), re); 1206 static bool FullMatch(const ::string& str, const RE& re) { 1207 return FullMatch(str.c_str(), re); 1215 static bool FullMatch(const char* str, const RE& re);
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/ |
D | gtest-port.cc | 128 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE 381 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE
|
/external/llvm/utils/unittest/googletest/src/ |
D | gtest-port.cc | 128 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE 381 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE
|
/external/google-breakpad/src/testing/gtest/src/ |
D | gtest-port.cc | 153 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE 406 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE
|
/external/pcre/pcrecpp/include/ |
D | pcrecpp.h | 557 bool FullMatch(const StringPiece & text, ARGS && ...a) const { in FullMatch() function
|
/external/llvm/utils/FileCheck/ |
D | FileCheck.cpp | 463 StringRef FullMatch = MatchInfo[0]; in Match() local 471 MatchLen = FullMatch.size(); in Match() 472 return FullMatch.data()-Buffer.data(); in Match()
|