/external/webrtc/webrtc/base/ |
stringutils_unittest.cc | 17 // Tests for string_match(). 20 EXPECT_TRUE( string_match("A.B.C.D", "a.b.c.d")); 21 EXPECT_TRUE( string_match("www.TEST.GOOGLE.COM", "www.*.com")); 22 EXPECT_TRUE( string_match("127.0.0.1", "12*.0.*1")); 23 EXPECT_TRUE( string_match("127.1.0.21", "12*.0.*1")); 24 EXPECT_FALSE(string_match("127.0.0.0", "12*.0.*1")); 25 EXPECT_FALSE(string_match("127.0.0.0", "12*.0.*1")); 26 EXPECT_FALSE(string_match("127.1.1.21", "12*.0.*1"));
|
systeminfo_unittest.cc | 27 EXPECT_TRUE(rtc::string_match(info.GetCpuVendor().c_str(), 29 rtc::string_match(info.GetCpuVendor().c_str(), 32 EXPECT_TRUE(rtc::string_match(info.GetCpuVendor().c_str(), "ARM")); 64 known = rtc::string_match(machine_model, "MacBookPro*") || 65 rtc::string_match(machine_model, "MacBookAir*") || 66 rtc::string_match(machine_model, "MacBook*") || 67 rtc::string_match(machine_model, "MacPro*") || 68 rtc::string_match(machine_model, "Macmini*") || 69 rtc::string_match(machine_model, "iMac*") || 70 rtc::string_match(machine_model, "Xserve*") [all...] |
stringutils.cc | 27 bool string_match(const char* target, const char* pattern) { function in namespace:rtc 35 && string_match(target + 1, pattern + 1)) {
|
stringutils.h | 51 // Ex: string_match("www.TEST.GOOGLE.COM", "www.*.com") -> true 52 bool string_match(const char* target, const char* pattern);
|
openssladapter.cc | 780 if (!strcmp(nval->name, "DNS") && string_match(host, nval->value)) {
|
proxydetect.cc | 238 if (!string_match(url.host().c_str(), item)) [all...] |
/external/valgrind/include/ |
pub_tool_seqmatch.h | 101 Bool VG_(string_match) ( const HChar* pat, const HChar* str );
|
/external/valgrind/coregrind/ |
m_seqmatch.c | 179 Bool VG_(string_match) ( const HChar* patt, const HChar* input ) function
|
m_options.c | 40 #include "pub_core_seqmatch.h" // VG_(string_match) 370 so we can use VG_(string_match) on it. */ 374 matches = VG_(string_match)(patt, name); 395 so we can use VG_(string_match) on it. */ 400 matches = VG_(string_match)(patt, child_argv[i]);
|
m_redir.c | [all...] |
m_libcproc.c | 190 match = VG_(string_match)(remove_pattern, entry_start); 209 if (VG_(string_match)(remove_pattern, entry_start)) { [all...] |
m_errormgr.c | [all...] |
m_main.c | 60 #include "pub_core_seqmatch.h" // For VG_(string_match) [all...] |
/external/webrtc/talk/media/devices/ |
devicemanager.cc | 52 return rtc::string_match(val.c_str(), key.first.c_str());
|
/external/valgrind/coregrind/m_debuginfo/ |
debuginfo.c | 193 = VG_(string_match)( VG_(clo_trace_symtab_patt), filename ); [all...] |