HomeSort by relevance Sort by last modified time
    Searched defs:PartialMatch (Results 1 - 25 of 27) sorted by null

1 2

  /external/google-breakpad/src/testing/gtest/src/
gtest-port.cc 162 bool RE::PartialMatch(const char* str, const RE& re) {
412 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/mesa3d/src/gtest/src/
gtest-port.cc 162 bool RE::PartialMatch(const char* str, const RE& re) {
412 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/pcre/pcrecpp/include/
pcrecpp.h 131 // You can use the "PartialMatch" operation when you want the pattern
135 // pcrecpp::RE("ell").PartialMatch("hello");
140 // re.PartialMatch("x*100 + 20", &number);
223 // if (RE("HELLO", opt).PartialMatch("hello world")) ...
230 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
234 // RE_Options().set_caseless(true).set_multiline(true)).PartialMatch(str);
253 // .set_multiline(true)).PartialMatch(sometext);
372 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
375 // RE_Options().set_caseless(true).set_multiline(true)).PartialMatch(str);
567 bool PartialMatch(const StringPiece& text, ARGS && ...a) const
    [all...]
  /external/protobuf/gtest/src/
gtest-port.cc 135 bool RE::PartialMatch(const char* str, const RE& re) {
385 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-port.cc 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-port.cc 162 bool RE::PartialMatch(const char* str, const RE& re) {
412 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/googletest/googletest/src/
gtest-port.cc 586 bool RE::PartialMatch(const char* str, const RE& re) {
836 bool RE::PartialMatch(const char* str, const RE& re) {
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 586 bool RE::PartialMatch(const char* str, const RE& re) {
836 bool RE::PartialMatch(const char* str, const RE& re) {
    [all...]
  /external/v8/testing/gtest/src/
gtest-port.cc 568 bool RE::PartialMatch(const char* str, const RE& re) {
818 bool RE::PartialMatch(const char* str, const RE& re) {
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 545 bool RE::PartialMatch(const char* str, const RE& re) {
795 bool RE::PartialMatch(const char* str, const RE& re) {
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/src/
gtest-port.cc 545 bool RE::PartialMatch(const char* str, const RE& re) {
795 bool RE::PartialMatch(const char* str, const RE& re) {
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h 856 // PartialMatch(str, re) returns true iff regular expression re
859 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
864 static bool PartialMatch(const ::std::string& str, const RE& re) {
865 return PartialMatch(str.c_str(), re);
873 static bool PartialMatch(const ::string& str, const RE& re) {
874 return PartialMatch(str.c_str(), re);
880 static bool PartialMatch(const char* str, const RE& re);
895 regex_t partial_regex_; // For PartialMatch().
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 845 // PartialMatch(str, re) returns true iff regular expression re
848 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
853 static bool PartialMatch(const ::std::string& str, const RE& re) {
854 return PartialMatch(str.c_str(), re);
862 static bool PartialMatch(const ::string& str, const RE& re) {
863 return PartialMatch(str.c_str(), re);
869 static bool PartialMatch(const char* str, const RE& re);
884 regex_t partial_regex_; // For PartialMatch().
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 679 // PartialMatch(str, re) returns true iff regular expression re
682 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
687 static bool PartialMatch(const ::std::string& str, const RE& re) {
688 return PartialMatch(str.c_str(), re);
695 static bool PartialMatch(const ::string& str, const RE& re) {
696 return PartialMatch(str.c_str(), re);
701 static bool PartialMatch(const char* str, const RE& re);
714 regex_t partial_regex_; // For PartialMatch().
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 837 // PartialMatch(str, re) returns true iff regular expression re
840 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
845 static bool PartialMatch(const ::std::string& str, const RE& re) {
846 return PartialMatch(str.c_str(), re);
854 static bool PartialMatch(const ::string& str, const RE& re) {
855 return PartialMatch(str.c_str(), re);
861 static bool PartialMatch(const char* str, const RE& re);
876 regex_t partial_regex_; // For PartialMatch().
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]

Completed in 408 milliseconds

1 2