Searched refs:matches (Results 101 - 125 of 860) sorted by relevance

1234567891011>>

/external/iproute2/tc/
H A Dm_police.c79 if (matches(arg, "continue") == 0)
81 else if (matches(arg, "drop") == 0)
83 else if (matches(arg, "shot") == 0)
85 else if (matches(arg, "pass") == 0)
89 else if (matches(arg, "reclassify") == 0)
91 else if (matches(arg, "pipe") == 0)
153 if (matches(*argv, "index") == 0) {
159 } else if (matches(*argv, "burst") == 0 ||
212 } else if (matches(*argv, "peakrate") == 0) {
222 } else if (matches(*arg
[all...]
H A Dm_estimator.c46 if (matches(*argv, "help") == 0)
51 if (matches(*argv, "help") == 0)
/external/chromium_org/chrome/browser/autocomplete/
H A Dkeyword_extensions_delegate_impl.cc78 profile_, template_url, remaining_input, &matches()->front());
85 matches()->push_back(extension_suggest_matches_[i]);
86 matches()->back().relevance = matches()->front().relevance - (i + 1);
140 if (matches()->empty() || current_keyword_extension_id_.empty() ||
148 profile_, template_url, remaining_input, &matches()->front());
181 // Because these matches are async, we should never let them become the
197 matches()->insert(matches()->end(),
H A Dhistory_url_provider.cc58 // Innermost matches (matches after any scheme or "www.") are better than
59 // non-innermost matches.
80 // Sorts and dedups the given list of matches.
81 void SortAndDedupMatches(history::HistoryMatches* matches) { argument
83 std::sort(matches->begin(), matches->end(), &CompareHistoryMatch);
85 // Remove duplicate matches (caused by the search string appearing in one of
104 for (size_t i = 0; i < matches->size(); ++i) {
105 for (history::HistoryMatches::iterator j(matches
200 CreateOrPromoteMatch(const history::URLRow& info, size_t input_location, bool match_in_scheme, history::HistoryMatches* matches, bool create_if_necessary, bool promote) argument
1071 CullRedirects(history::HistoryBackend* backend, history::HistoryMatches* matches, size_t max_results) const argument
1101 RemoveSubsequentMatchesOf( history::HistoryMatches* matches, size_t source_index, const std::vector<GURL>& remove) const argument
[all...]
/external/chromium_org/components/query_parser/
H A Dsnippet.h26 // The information is encoded in the string as a set of matches, where each
29 // from other matches.
50 // Given |matches|, the match positions within |document|, compute the snippet
52 // Note that |document| is UTF-8 and the offsets in |matches| are byte
54 void ComputeSnippet(const MatchPositions& matches,
58 const MatchPositions& matches() const { return matches_; } function in class:query_parser::Snippet
67 // The matches within text_.
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryList.idl27 readonly attribute boolean matches;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttribute.h54 bool matches(const QualifiedName&) const;
75 inline bool Attribute::matches(const QualifiedName& qualifiedName) const function in class:blink::Attribute
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dhtmlmixed.js22 scriptTypes.push({matches: /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^$/i,
26 scriptTypes.push({matches: conf.matches, mode: conf.mode && CodeMirror.getMode(config, conf.mode)});
28 scriptTypes.push({matches: /./,
42 if (typeof tp.matches == "string" ? scriptType == tp.matches : tp.matches.test(scriptType)) {
/external/chromium_org/third_party/polymer/components-chromium/core-media-query/
H A Dcore-media-query-extracted.js38 this.queryMatches = mq.matches;
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DMatchFinder.java47 if (matches(context)) {
62 * Returns true if the {@code element} matches this finder. This can be used
67 * @return true if the element matches
69 public final boolean matches(UiElement element) { method in class:MatchFinder
/external/easymock/src/org/easymock/internal/matchers/
H A DAnd.java34 public boolean matches(Object actual) { method in class:And
36 if (!matcher.matches(actual)) {
H A DOr.java34 public boolean matches(Object actual) { method in class:Or
36 if (matcher.matches(actual)) {
H A DContains.java32 public boolean matches(Object actual) { method in class:Contains
H A DEndsWith.java32 public boolean matches(Object actual) { method in class:EndsWith
/external/hamcrest/src/org/hamcrest/core/
H A DAllOf.java22 public boolean matches(Object o) { method in class:AllOf
24 if (!matcher.matches(o)) {
H A DAnyOf.java23 public boolean matches(Object o) { method in class:AnyOf
25 if (matcher.matches(o)) {
H A DIs.java25 public boolean matches(Object arg) { method in class:Is
26 return matcher.matches(arg);
H A DIsNot.java22 public boolean matches(Object arg) { method in class:IsNot
23 return !matcher.matches(arg);
/external/junit/src/org/junit/internal/matchers/
H A DCombinableMatcher.java17 public boolean matches(Object item) { method in class:CombinableMatcher
18 return fMatcher.matches(item);
H A DEach.java14 public boolean matches(Object item) {
15 return allItemsAre.matches(item);
/external/mockito/src/org/mockito/internal/matchers/
H A DAnd.java26 public boolean matches(Object actual) { method in class:And
28 if (!matcher.matches(actual)) {
H A DOr.java26 public boolean matches(Object actual) { method in class:Or
28 if (matcher.matches(actual)) {
/external/chromium_org/third_party/WebKit/Source/platform/
H A DURLPatternMatcher.h50 bool matches(const KURL&) const;
/external/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp46 // If the inner matcher matches, the result is false, and
54 return !InnerMatchers[0].matches(DynNode, Finder, &Discard);
65 if (!InnerMatchers[i].matches(DynNode, Finder, Builder))
79 if (InnerMatchers[i].matches(DynNode, Finder, &BuilderInner)) {
94 if (InnerMatchers[i].matches(DynNode, Finder, &Result)) {
/external/conscrypt/src/main/java/org/conscrypt/
H A DAddressUtils.java26 * Regex that matches valid IPv4 and IPv6 addresses.
65 return ipPattern.matcher(hostname).matches();

Completed in 488 milliseconds

1234567891011>>