HomeSort by relevance Sort by last modified time
    Searched refs:Matches (Results 26 - 50 of 194) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/media/base/
text_track_config.cc 23 bool TextTrackConfig::Matches(const TextTrackConfig& config) const {
text_track_config.h 32 bool Matches(const TextTrackConfig& config) const;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
cryptoparams.h 42 bool Matches(const CryptoParams& params) const {
  /external/chromium_org/tools/cr/cr/base/
linux.py 22 def Matches(self):
  /external/llvm/include/llvm/Support/
Regex.h 12 // to support backreferences in matches.
35 /// expressions and '.' never match newline. A ^ anchor matches the
37 /// function, and the $ anchor matches the null string before any
55 /// matches it contains. The number filled in by match will include this
59 /// matches - Match the regex against a given \p String.
61 /// \param Matches - If given, on a successful match this will be filled in
66 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = 0);
81 /// expression that matches Str and only Str.
  /external/chromium/net/proxy/
proxy_bypass_rules.h 18 // if it matches any one of these rules.
27 // Returns true if |url| matches the rule.
28 virtual bool Matches(const GURL& url) const = 0;
56 // Returns true if |url| matches any of the proxy bypass rules.
57 bool Matches(const GURL& url) const;
76 // Adds a rule that matches a URL when all of the following are true:
77 // (a) The URL's scheme matches |optional_scheme|, if
79 // (b) The URL's hostname matches |hostname_pattern|.
80 // (c) The URL's (effective) port number matches |optional_port| if
88 // This matches IE's interpretation of th
    [all...]
proxy_config_service_common_unittest.h 29 // Call this within an EXPECT_TRUE(), to assert that |rules| matches
31 ::testing::AssertionResult Matches(
proxy_bypass_rules.cc 27 virtual bool Matches(const GURL& url) const {
63 virtual bool Matches(const GURL& url) const {
95 virtual bool Matches(const GURL& url) const {
169 bool ProxyBypassRules::Matches(const GURL& url) const {
171 if ((*it)->Matches(url))
  /external/chromium_org/chrome/browser/chromeos/login/
helper.cc 53 if (network->Matches(NetworkTypePattern::Ethernet()))
60 if (network->Matches(NetworkTypePattern::Ethernet()))
  /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/gpu/config/
gpu_test_config.h 63 // Check if two configs overlap, i.e., if there exists a config that matches
107 // Check if a bot config matches a test config, i.e., the test config is a
109 bool Matches(const GPUTestConfig& config) const;
110 bool Matches(const std::string& config_data) const;
116 // Check if this bot's config matches |config_data| or any of the |configs|.
  /external/chromium_org/net/proxy/
proxy_bypass_rules.h 18 // if it matches any one of these rules.
27 // Returns true if |url| matches the rule.
28 virtual bool Matches(const GURL& url) const = 0;
56 // Returns true if |url| matches any of the proxy bypass rules.
57 bool Matches(const GURL& url) const;
76 // Adds a rule that matches a URL when all of the following are true:
77 // (a) The URL's scheme matches |optional_scheme|, if
79 // (b) The URL's hostname matches |hostname_pattern|.
80 // (c) The URL's (effective) port number matches |optional_port| if
88 // This matches IE's interpretation of th
    [all...]
proxy_config_service_common_unittest.h 28 // Call this within an EXPECT_TRUE(), to assert that |rules| matches
30 ::testing::AssertionResult Matches(
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 68 size_t Matches = 0;
70 Matches += ast_matchers::internal::Matcher<T>::canConstructFrom(*List[I]);
72 return Matches == 1;
  /external/clang/utils/TableGen/
ClangCommentCommandInfoEmitter.cpp 62 std::vector<StringMatcher::StringPair> Matches;
68 Matches.push_back(StringMatcher::StringPair(Name, Return));
73 StringMatcher("Name", Matches, OS).Emit();
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern.h 20 // Returns a pattern that matches the host of this URL and all subdomains.
23 // Returns a pattern that matches exactly this URL.
33 // - [*.]domain.tld (matches domain.tld and all sub-domains)
34 // - host (matches an exact hostname)
35 // - a.b.c.d (matches an exact IPv4 ip)
36 // - [a:b:c:d:e:f:g:h] (matches an exact IPv6 ip)
40 // True if |url| matches this pattern.
41 bool Matches(const GURL& url) const;
  /external/chromium/chrome/browser/history/
query_parser.h 42 // Returns true if this node matches the specified text. If exact is true,
45 virtual bool Matches(const string16& word, bool exact) const = 0;
47 // Returns true if this node matches at least one of the words in words. If
48 // the node matches at least one word, an entry is added to match_positions
90 // Returns true if the string text matches the query nodes created by a call
query_parser.cc 34 // Coalesces match positions in |matches| after index that intersect the match
37 Snippet::MatchPositions* matches) {
38 Snippet::MatchPosition& mp = (*matches)[index];
39 for (Snippet::MatchPositions::iterator i = matches->begin() + index + 1;
40 i != matches->end(); ) {
43 i = matches->erase(i);
50 // Sorts the match positions in |matches| by their first index, then coalesces
52 void CoalseAndSortMatchPositions(Snippet::MatchPositions* matches) {
53 std::sort(matches->begin(), matches->end(), &CompareMatchPosition)
    [all...]
  /external/chromium/net/http/
http_auth_filter.cc 50 return rules_.Matches(url);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
codec.h 53 bool Matches(int payload, const std::string& nm) const;
54 bool Matches(const AudioCodec& codec) const;
103 bool Matches(int payload, const std::string& nm) const;
104 bool Matches(const VideoCodec& codec) const;
  /external/chromium_org/net/http/
http_auth_filter.cc 50 return rules_.Matches(url);
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.cc 84 Matches matches;
86 if (!GetBookmarksWithTitleMatchingTerm(terms[i], i == 0, &matches))
91 SortMatches(matches, &node_typed_counts);
95 // matches and so this shouldn't be performance critical.
101 // so that the best matches will always be included in the results. The loop
104 // best matches.
110 void BookmarkIndex::SortMatches(const Matches& matches,
118 for (Matches::const_iterator i = matches.begin(); i != matches.end(); ++i
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_index.cc 86 Matches matches;
88 if (!GetBookmarksWithTitleMatchingTerm(terms[i], i == 0, &matches))
93 SortMatches(matches, &node_typed_counts);
97 // matches and so this shouldn't be performance critical.
103 // so that the best matches will always be included in the results. The loop
106 // best matches.
112 void BookmarkIndex::SortMatches(const Matches& matches,
122 for (Matches::const_iterator i = matches.begin(); i != matches.end(); ++i
    [all...]
  /external/chromium_org/chrome/browser/download/
download_query.h 45 // the item matches the filter and false otherwise.
101 // Search() for items whose url matches both regexes. You can also pass two
130 if (Matches(**iter)) results->push_back(*iter);
144 bool Matches(const content::DownloadItem& item) const;
  /external/chromium_org/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc 349 EXPECT_TRUE(tests[i].proxy_rules.Matches(config.proxy_rules()));
406 EXPECT_TRUE(managed_params.proxy_rules.Matches(
415 EXPECT_TRUE(recommended_params.proxy_rules.Matches(
423 EXPECT_TRUE(network_params.proxy_rules.Matches(
431 EXPECT_TRUE(managed_params.proxy_rules.Matches(
440 EXPECT_TRUE(network_params.proxy_rules.Matches(
448 EXPECT_TRUE(network_params.proxy_rules.Matches(

Completed in 631 milliseconds

12 3 4 5 6 7 8