Searched refs:string_match (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/webrtc/base/
H A Dstringutils_unittest.cc17 // 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"));
H A Dsysteminfo_unittest.cc27 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"));
72 known = rtc::string_match(machine_model, "MacBookPro*") ||
73 rtc::string_match(machine_model, "MacBookAir*") ||
74 rtc::string_match(machine_model, "MacBook*") ||
75 rtc::string_match(machine_model, "MacPro*") ||
76 rtc::string_match(machine_model, "Macmini*") ||
77 rtc::string_match(machine_model, "iMac*") ||
78 rtc::string_match(machine_mode
[all...]
H A Dstringutils.cc27 bool string_match(const char* target, const char* pattern) { function in namespace:rtc
35 && string_match(target + 1, pattern + 1)) {
H A Dstringutils.h51 // Ex: string_match("www.TEST.GOOGLE.COM", "www.*.com") -> true
52 bool string_match(const char* target, const char* pattern);
H A Dopenssladapter.cc704 if (!strcmp(nval->name, "DNS") && string_match(host, nval->value)) {
H A Dproxydetect.cc232 if (!string_match(url.host().c_str(), item))
/external/valgrind/main/include/
H A Dpub_tool_seqmatch.h94 Bool VG_(string_match) ( const HChar* pat, const HChar* str );
/external/valgrind/main/coregrind/
H A Dm_seqmatch.c175 Bool VG_(string_match) ( const HChar* patt, const HChar* input ) function
H A Dm_options.c40 #include "pub_core_seqmatch.h" // VG_(string_match)
331 so we can use VG_(string_match) on it. */
335 matches = VG_(string_match)(patt, name);
356 so we can use VG_(string_match) on it. */
361 matches = VG_(string_match)(patt, child_argv[i]);
H A Dm_libcproc.c187 match = VG_(string_match)(remove_pattern, entry_start);
206 if (VG_(string_match)(remove_pattern, entry_start)) {
H A Dm_redir.c745 sp->mark = VG_(string_match)( sp->from_sopatt,
774 if (VG_(string_match)( sp->from_fnpatt, *names )) {
1538 if (VG_(string_match)(sopatt, di_soname))
1581 if (VG_(string_match)(fnpatt, *names)) {
H A Dm_errormgr.c1606 return VG_(string_match)(supploc->name, funobj_name);
H A Dm_main.c61 #include "pub_core_seqmatch.h" // For VG_(string_match)
733 ok = VG_(string_match)(patt, tmp_str);
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Ddevicemanager.cc52 return rtc::string_match(val.c_str(), key.first.c_str());
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c190 = VG_(string_match)( VG_(clo_trace_symtab_patt), filename );
1785 if (!VG_(string_match)(sopatt, si->soname)) {

Completed in 2779 milliseconds