/external/junit/src/org/junit/internal/matchers/ |
Each.java | 14 public boolean matches(Object item) { 15 return allItemsAre.matches(item);
|
/external/mockito/src/org/mockito/internal/matchers/ |
And.java | 26 public boolean matches(Object actual) { method in class:And 28 if (!matcher.matches(actual)) {
|
Or.java | 26 public boolean matches(Object actual) { method in class:Or 28 if (matcher.matches(actual)) {
|
Contains.java | 23 public boolean matches(Object actual) { method in class:Contains
|
EndsWith.java | 23 public boolean matches(Object actual) { method in class:EndsWith
|
NotNull.java | 23 public boolean matches(Object actual) { method in class:NotNull
|
/frameworks/base/services/core/java/com/android/server/firewall/ |
AndFilter.java | 28 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:AndFilter 31 if (!children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
|
OrFilter.java | 28 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:OrFilter 31 if (children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_provider.h | 31 // Finds and removes the match from the current collection of matches and 35 // Fill and return an ACMatchClassifications structure given the |matches| 38 const history::TermMatches& matches,
|
history_url_provider.cc | 58 // 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) { 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->begin() + i + 1) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
URLPatternMatcher.h | 50 bool matches(const KURL&) const;
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
unifilt.h | 88 virtual UMatchDegree matches(const Replaceable& text,
|
unimatch.h | 26 * Constants returned by <code>UnicodeMatcher::matches()</code> 32 * Constant returned by <code>matches()</code> indicating a 41 * Constant returned by <code>matches()</code> indicating a 53 * Constant returned by <code>matches()</code> indicating a 56 * the given text matches, and it is known that additional 123 virtual UMatchDegree matches(const Replaceable& text,
|
/external/clang/lib/ASTMatchers/ |
ASTMatchersInternal.cpp | 46 // 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/ |
AddressUtils.java | 26 * Regex that matches valid IPv4 and IPv6 addresses. 65 return ipPattern.matcher(hostname).matches();
|
/external/easymock/src/org/easymock/internal/matchers/ |
Contains.java | 32 public boolean matches(Object actual) {
method in class:Contains
|
EndsWith.java | 32 public boolean matches(Object actual) {
method in class:EndsWith
|
InstanceOf.java | 32 public boolean matches(Object actual) {
method in class:InstanceOf
|
StartsWith.java | 32 public boolean matches(Object actual) {
method in class:StartsWith
|
/external/icu/icu4c/source/common/unicode/ |
unifilt.h | 88 virtual UMatchDegree matches(const Replaceable& text,
|
unimatch.h | 26 * Constants returned by <code>UnicodeMatcher::matches()</code> 32 * Constant returned by <code>matches()</code> indicating a 41 * Constant returned by <code>matches()</code> indicating a 53 * Constant returned by <code>matches()</code> indicating a 56 * the given text matches, and it is known that additional 123 virtual UMatchDegree matches(const Replaceable& text,
|
/external/iproute2/tc/ |
f_flow.c | 77 if (matches(s, flow_keys[i]) == 0) { 157 if (matches(*argv, "map") == 0) { 159 } else if (matches(*argv, "hash") == 0) { 161 } else if (matches(*argv, "keys") == 0) { 166 } else if (matches(*argv, "and") == 0) { 173 } else if (matches(*argv, "or") == 0) { 180 } else if (matches(*argv, "xor") == 0) { 187 } else if (matches(*argv, "rshift") == 0) { 194 } else if (matches(*argv, "addend") == 0) { 201 } else if (matches(*argv, "divisor") == 0) [all...] |
/external/lldb/source/Interpreter/ |
OptionValueFileSpec.cpp | 129 StringList &matches) 132 matches.Clear(); 140 matches); 141 return matches.GetSize();
|
OptionValueUUID.cpp | 83 StringList &matches) 86 matches.Clear(); 114 matches.AppendString(uuid_str.c_str()); 121 return matches.GetSize();
|
/external/mockito/src/org/mockito/ |
ArgumentMatcher.java | 25 * public boolean matches(Object list) { 74 public abstract boolean matches(Object argument); method in class:ArgumentMatcher
|