/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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/ |
healthcheck.py | 71 XMLStringMatchPart = """<SearchString>%(string_match)s</SearchString>""" 77 def __init__(self, ip_addr, port, hc_type, resource_path, fqdn=None, string_match=None, request_interval=30, failure_threshold=3): 96 :type string_match: str 97 :param string_match: if hc_type is HTTP_STR_MATCH or HTTPS_STR_MATCH, the string to search for in the response body from the specified resource 111 self.string_match = string_match 143 if self.string_match is not None: 144 params['string_match_part'] = self.XMLStringMatchPart % {'string_match': self.string_match}
|
/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) 348 so we can use VG_(string_match) on it. */ 352 matches = VG_(string_match)(patt, name); 373 so we can use VG_(string_match) on it. */ 378 matches = VG_(string_match)(patt, child_argv[i]);
|
m_redir.c | 801 sp->mark = VG_(string_match)( sp->from_sopatt, [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/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/route53/ |
test_health_check.py | 93 hc = HealthCheck(ip_addr="54.217.7.118", port=80, hc_type="HTTP_STR_MATCH", resource_path="/testing", string_match="test") 105 hc = HealthCheck(ip_addr="54.217.7.118", port=80, hc_type="HTTPS_STR_MATCH", resource_path="/testing", string_match="test")
|
/external/webrtc/talk/media/devices/ |
devicemanager.cc | 52 return rtc::string_match(val.c_str(), key.first.c_str());
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/route53/ |
test_connection.py | 601 hc = HealthCheck(ip_addr='74.125.228.81', port=443, hc_type='HTTPS_STR_MATCH', resource_path='/health_check', string_match='OK')
|
/external/valgrind/coregrind/m_debuginfo/ |
debuginfo.c | 194 = VG_(string_match)( VG_(clo_trace_symtab_patt), filename ); [all...] |