/external/chromium_org/media/base/ |
text_track_config.cc | 23 bool TextTrackConfig::Matches(const TextTrackConfig& config) const {
|
audio_decoder_config.cc | 94 bool AudioDecoderConfig::Matches(const AudioDecoderConfig& config) const {
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
codec.cc | 35 bool AudioCodec::Matches(int payload, const std::string& nm) const { 40 bool AudioCodec::Matches(const AudioCodec& codec) const { 47 return Matches(codec.id, codec.name) && 61 bool VideoCodec::Matches(int payload, const std::string& nm) const { 66 bool VideoCodec::Matches(const VideoCodec& codec) const { 68 return Matches(codec.id, codec.name);
|
cryptoparams.h | 42 bool Matches(const CryptoParams& params) const {
|
/external/llvm/include/llvm/TableGen/ |
StringMatcher.h | 29 /// not exit this code fragment. If nothing matches, execution falls through. 36 const std::vector<StringPair> &Matches; 41 const std::vector<StringPair> &matches, raw_ostream &os) 42 : StrVariableName(strVariableName), Matches(matches), OS(os) {} 48 bool EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
|
/external/llvm/unittests/Support/ |
RegexTest.cpp | 27 SmallVector<StringRef, 1> Matches; 29 EXPECT_TRUE(r2.match("aa216b", &Matches)); 30 EXPECT_EQ(1u, Matches.size()); 31 EXPECT_EQ("216", Matches[0].str()); 34 EXPECT_TRUE(r3.match("9a:513b", &Matches)); 35 EXPECT_EQ(3u, Matches.size()); 36 EXPECT_EQ("9a:513", Matches[0].str()); 37 EXPECT_EQ("a", Matches[1].str()); 38 EXPECT_EQ("513", Matches[2].str()); 40 EXPECT_TRUE(r3.match("9:513b", &Matches)); [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
omnibox_info.py | 13 print info.Matches() 27 - a list of matches in the same order as you'd see in the omnibox, 32 { u'matches': [ 83 def Matches(self): 84 """Get omnibox matches. 89 return self.omniboxdict.get('matches', []) 92 """Find all omnibox matches which match the attributes in |attr_dict|. 105 for item in self.Matches():
|
/external/chromium_org/sync/internal_api/public/util/ |
experiments.h | 21 bool Matches(const Experiments& rhs) {
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
cryptoparams.h | 42 bool Matches(const CryptoParams& params) const {
|
codec.cc | 90 bool Codec::Matches(const Codec& codec) const { 132 bool AudioCodec::Matches(const AudioCodec& codec) const { 142 return Codec::Matches(codec) &&
|
/external/clang/utils/TableGen/ |
ClangCommentHTMLTagsEmitter.cpp | 25 std::vector<StringMatcher::StringPair> Matches; 30 Matches.push_back(StringMatcher::StringPair(Spelling, "return true;")); 36 StringMatcher("Name", Matches, OS).Emit();
|
ClangCommentCommandInfoEmitter.cpp | 62 std::vector<StringMatcher::StringPair> Matches; 68 Matches.push_back(StringMatcher::StringPair(Name, Return)); 73 StringMatcher("Name", Matches, OS).Emit();
|
/external/easymock/src/org/easymock/internal/matchers/ |
Matches.java | 22 public class Matches implements IArgumentMatcher, Serializable {
28 public Matches(String regex) {
32 public boolean matches(Object actual) {
method in class:Matches 33 return (actual instanceof String) && ((String) actual).matches(regex);
37 buffer.append("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
|
/external/mockito/src/org/mockito/internal/matchers/ |
Matches.java | 14 public class Matches extends ArgumentMatcher<Object> implements Serializable { 19 public Matches(String regex) { 23 public boolean matches(Object actual) { method in class:Matches 24 return (actual instanceof String) && ((String) actual).matches(regex); 28 description.appendText("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_index.h | 59 typedef std::vector<Match> Matches; 62 // Used to sort Matches in decreasing order of typed count. 66 // Extracts |matches.nodes| into NodeTypedCountPairs and sorts the pairs in 68 void SortMatches(const Matches& matches, 80 // count so that the best matches will always be added to the results. 86 // Add |node| to |results| if the node matches the query. 92 // Populates |matches| for the specified term. If |first_term| is true, this 97 Matches* matches); [all...] |
/external/chromium/chrome/browser/content_settings/ |
content_settings_pattern.cc | 26 // - [*.]domain.tld (matches domain.tld and all sub-domains) 27 // - host (matches an exact hostname) 28 // - a.b.c.d (matches an exact IPv4 ip) 29 // - [a:b:c:d:e:f:g:h] (matches an exact IPv6 ip) 68 bool ContentSettingsPattern::Matches(const GURL& url) const {
|
/external/chromium/net/proxy/ |
proxy_config_service_common_unittest.cc | 18 // Helper to verify that |expected_proxy| matches |actual_proxy|. If it does 72 ::testing::AssertionResult ProxyRulesExpectation::Matches(
|
/external/chromium_org/chrome/browser/bookmarks/ |
bookmark_index.h | 57 typedef std::vector<Match> Matches; 60 // Used to sort Matches in decreasing order of typed count. 64 // Extracts |matches.nodes| into NodeTypedCountPairs, sorts the pairs in 65 // decreasing order of typed count, and then de-dupes the matches. 66 void SortMatches(const Matches& matches, 78 // count so that the best matches will always be added to the results. 84 // Add |node| to |results| if the node matches the query. 90 // Populates |matches| for the specified term. If |first_term| is true, this 95 Matches* matches) [all...] |
/external/chromium_org/tools/cr/cr/base/ |
host.py | 28 def Matches(self): 33 true if the plugin matches the machine it is running on. 40 if host.Matches():
|
linux.py | 22 def Matches(self):
|
/external/llvm/lib/Support/ |
Regex.cpp | 52 /// matches it contains. 57 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches){ 58 unsigned nmatch = Matches ? preg->re_nsub+1 : 0; 78 if (Matches) { // match position requested 79 Matches->clear(); 84 Matches->push_back(StringRef()); 88 Matches->push_back(StringRef(String.data()+pm[i].rm_so, 98 SmallVector<StringRef, 8> Matches; 104 if (!match(String, &Matches)) 109 std::string Res(String.begin(), Matches[0].begin()) [all...] |
/external/chromium_org/chromeos/network/ |
managed_state.cc | 18 bool ManagedState::Matches(const NetworkTypePattern& pattern) const {
|
/external/chromium_org/components/policy/core/common/cloud/ |
resource_cache_unittest.cc | 30 bool Matches(const std::string& expected, const std::string& subkey) { 142 cache.FilterSubkeys(kKey1, base::Bind(&Matches, kSubA));
|
/external/chromium_org/components/url_matcher/ |
substring_set_matcher.h | 42 // Matches |text| against all registered StringPatterns. Stores the IDs 43 // of matching patterns in |matches|. |matches| is not cleared before adding 46 std::set<StringPattern::ID>* matches) const; 57 // IDs that are used to report matches. 60 // any registered pattern matches a text at the beginning of the text (i.e. 65 // would report all pattern IDs associated with the trie nodes as matches. 67 // As we are not looking for all prefix matches but all substring matches, 86 typedef std::set<StringPattern::ID> Matches; 104 const Matches& matches() const { return matches_; } function in class:url_matcher::SubstringSetMatcher::AhoCorasickNode [all...] |
/external/chromium_org/net/proxy/ |
proxy_config_service_common_unittest.cc | 18 // Helper to verify that |expected_proxy| matches the first proxy conatined in 95 ::testing::AssertionResult ProxyRulesExpectation::Matches(
|