OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PartialMatch
(Results
26 - 31
of
31
) sorted by null
1
2
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h
832
//
PartialMatch
(str, re) returns true iff regular expression re
835
// TODO(wan@google.com): make FullMatch() and
PartialMatch
() work
840
static bool
PartialMatch
(const ::std::string& str, const RE& re) {
841
return
PartialMatch
(str.c_str(), re);
849
static bool
PartialMatch
(const ::string& str, const RE& re) {
850
return
PartialMatch
(str.c_str(), re);
856
static bool
PartialMatch
(const char* str, const RE& re);
871
regex_t partial_regex_; // For
PartialMatch
().
[
all
...]
/external/gtest/include/gtest/internal/
gtest-port.h
850
//
PartialMatch
(str, re) returns true iff regular expression re
853
// TODO(wan@google.com): make FullMatch() and
PartialMatch
() work
858
static bool
PartialMatch
(const ::std::string& str, const RE& re) {
859
return
PartialMatch
(str.c_str(), re);
867
static bool
PartialMatch
(const ::string& str, const RE& re) {
868
return
PartialMatch
(str.c_str(), re);
874
static bool
PartialMatch
(const char* str, const RE& re);
889
regex_t partial_regex_; // For
PartialMatch
().
[
all
...]
/external/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/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h
832
//
PartialMatch
(str, re) returns true iff regular expression re
835
// TODO(wan@google.com): make FullMatch() and
PartialMatch
() work
840
static bool
PartialMatch
(const ::std::string& str, const RE& re) {
841
return
PartialMatch
(str.c_str(), re);
849
static bool
PartialMatch
(const ::string& str, const RE& re) {
850
return
PartialMatch
(str.c_str(), re);
856
static bool
PartialMatch
(const char* str, const RE& re);
871
regex_t partial_regex_; // For
PartialMatch
().
[
all
...]
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h
[
all
...]
Completed in 345 milliseconds
1
2