Searched refs:string_match (Results 1 – 15 of 15) sorted by relevance
/external/webrtc/webrtc/base/ |
D | systeminfo_unittest.cc | 27 EXPECT_TRUE(rtc::string_match(info.GetCpuVendor().c_str(), in TEST() 29 rtc::string_match(info.GetCpuVendor().c_str(), in TEST() 32 EXPECT_TRUE(rtc::string_match(info.GetCpuVendor().c_str(), "ARM")); in TEST() 64 known = rtc::string_match(machine_model, "MacBookPro*") || in TEST() 65 rtc::string_match(machine_model, "MacBookAir*") || in TEST() 66 rtc::string_match(machine_model, "MacBook*") || in TEST() 67 rtc::string_match(machine_model, "MacPro*") || in TEST() 68 rtc::string_match(machine_model, "Macmini*") || in TEST() 69 rtc::string_match(machine_model, "iMac*") || in TEST() 70 rtc::string_match(machine_model, "Xserve*"); in TEST() [all …]
|
D | stringutils_unittest.cc | 20 EXPECT_TRUE( string_match("A.B.C.D", "a.b.c.d")); in TEST() 21 EXPECT_TRUE( string_match("www.TEST.GOOGLE.COM", "www.*.com")); in TEST() 22 EXPECT_TRUE( string_match("127.0.0.1", "12*.0.*1")); in TEST() 23 EXPECT_TRUE( string_match("127.1.0.21", "12*.0.*1")); in TEST() 24 EXPECT_FALSE(string_match("127.0.0.0", "12*.0.*1")); in TEST() 25 EXPECT_FALSE(string_match("127.0.0.0", "12*.0.*1")); in TEST() 26 EXPECT_FALSE(string_match("127.1.1.21", "12*.0.*1")); in TEST()
|
D | stringutils.cc | 27 bool string_match(const char* target, const char* pattern) { in string_match() function 35 && string_match(target + 1, pattern + 1)) { in string_match()
|
D | stringutils.h | 52 bool string_match(const char* target, const char* pattern);
|
D | openssladapter.cc | 780 if (!strcmp(nval->name, "DNS") && string_match(host, nval->value)) { in VerifyServerName()
|
D | proxydetect.cc | 238 if (!string_match(url.host().c_str(), item)) in ProxyItemMatch()
|
/external/valgrind/include/ |
D | pub_tool_seqmatch.h | 101 Bool VG_(string_match) ( const HChar* pat, const HChar* str );
|
/external/valgrind/coregrind/ |
D | m_seqmatch.c | 179 Bool VG_(string_match) ( const HChar* patt, const HChar* input ) in VG_() argument
|
D | m_options.c | 374 matches = VG_(string_match)(patt, name); in VG_() 400 matches = VG_(string_match)(patt, child_argv[i]); in VG_()
|
D | m_redir.c | 832 sp->mark = VG_(string_match)( sp->from_sopatt, soname ); in generate_and_add_actives() 860 if (VG_(string_match)( sp->from_fnpatt, *names ) in generate_and_add_actives() 1757 if (VG_(string_match)(sopatt, di_soname)) { in handle_require_text_symbols() local 1804 if (VG_(string_match)(fnpatt, *names)) { in handle_require_text_symbols()
|
D | m_libcproc.c | 190 match = VG_(string_match)(remove_pattern, entry_start); in mash_colon_env() 209 if (VG_(string_match)(remove_pattern, entry_start)) { in mash_colon_env() local
|
D | m_errormgr.c | 1835 ret = VG_(string_match)(supploc->name, funobj_name); in supp_pattEQinp()
|
D | m_main.c | 801 ok = VG_(string_match)(patt, tmp_str); in main_process_cmd_line_options()
|
/external/webrtc/talk/media/devices/ |
D | devicemanager.cc | 52 return rtc::string_match(val.c_str(), key.first.c_str()); in StringMatchWithWildcard()
|
/external/valgrind/coregrind/m_debuginfo/ |
D | debuginfo.c | 193 = VG_(string_match)( VG_(clo_trace_symtab_patt), filename ); in alloc_DebugInfo() 2175 if (!VG_(string_match)(sopatt, si->soname)) { in VG_()
|