Searched defs:matcher (Results 1 - 25 of 191) sorted by path

12345678

/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerRegistry.java58 private final UriPatternMatcher matcher; field in class:HttpRequestHandlerRegistry
61 matcher = new UriPatternMatcher();
65 matcher.register(pattern, handler);
69 matcher.unregister(pattern);
73 matcher.setHandlers(map);
77 return (HttpRequestHandler) matcher.lookup(requestURI);
85 return matcher.matchUriRequestPattern(pattern, requestUri);
/external/caliper/lib/
H A Djersey-core-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/jersey-module-version META- ...
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
H A Djavascripttokenizer.py26 from closure_linter.common import matcher namespace
31 Matcher = matcher.Matcher
35 """Enumeration of the different matcher modes used for JavaScript."""
310 """Builds the token matcher group.
312 The token matcher groups work as follows: it is a list of Matcher objects.
318 The completed token matcher group.
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
H A Dbootstrap.js1576 this.matcher = this.options.matcher || this.matcher
1635 return that.matcher(item)
1647 , matcher: function (item) {
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp1 //===- unittest/Tooling/ASTMatchersTest.cpp - AST matcher unit tests ------===//
1000 StatementMatcher matcher = anyOf( local
1009 // The first branch of the matcher binds x to 0 but then fails.
1012 matcher,
1017 // Using the same matcher in two match expressions will make memoization
2739 // FIXME: Add a Type matcher so we can replace uses of this
2743 // We don't really care whether this matcher succeeds; we're testing that
3228 // present and its inner matcher alone does not match.
3241 // matcher does not match.
3268 // still match the inner matcher
[all...]
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
H A Dmockito-core-1.9.1-SNAPSHOT.jar ... org.mockito.ArgumentMatcher) org.mockito.ArgumentMatcher matcher static void " href="/7.0.0_r1/s? ...
/external/easymock/src/org/easymock/
H A DEasyMock.java1635 * Reports an argument matcher. This method is needed to define own argument
1638 * @param matcher
1640 public static void reportMatcher(IArgumentMatcher matcher) { argument
1641 LastControl.reportMatcher(matcher);
H A DMockControl.java320 * The matcher must be set before any behavior for the method is defined.
322 * @param matcher the matcher for the last method called
327 public void setMatcher(ArgumentsMatcher matcher) { argument
328 ctrl.setLegacyMatcher(matcher);
446 * matcher must be set before any behavior is defined on the mock object.
448 * @param matcher the default matcher for this control
453 public void setDefaultMatcher(ArgumentsMatcher matcher) { argument
454 ctrl.setLegacyDefaultMatcher(matcher);
[all...]
/external/easymock/src/org/easymock/internal/
H A DExpectedInvocation.java34 private final org.easymock.ArgumentsMatcher matcher; field in class:ExpectedInvocation
45 org.easymock.ArgumentsMatcher matcher) {
47 this.matcher = matcher;
48 this.matchers = (matcher == null) ? createMissingMatchers(invocation,
77 && ((this.matcher == null && other.matcher == null) || (this.matcher != null && this.matcher
78 .equals(other.matcher)))
43 ExpectedInvocation(Invocation invocation, List<IArgumentMatcher> matchers, @SuppressWarnings(�) org.easymock.ArgumentsMatcher matcher) argument
131 withMatcher(@uppressWarnings�) org.easymock.ArgumentsMatcher matcher) argument
[all...]
H A DILegacyMatcherMethods.java23 void setDefaultMatcher(org.easymock.ArgumentsMatcher matcher); argument
26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher); argument
H A DInvocation.java135 public boolean matches(Invocation actual, org.easymock.ArgumentsMatcher matcher) { argument
138 && matcher.matches(this.arguments, actual.arguments);
142 public String toString(org.easymock.ArgumentsMatcher matcher) { argument
143 return getMockAndMethodName() + "(" + matcher.toString(arguments) + ")";
H A DLastControl.java47 public static void reportMatcher(IArgumentMatcher matcher) { argument
53 stack.push(matcher);
H A DLegacyMatcherProvider.java48 public void setDefaultMatcher(ArgumentsMatcher matcher) { argument
52 "default matcher can only be set once directly after creation of the MockControl"));
54 defaultMatcher = matcher;
58 public void setMatcher(Method method, ArgumentsMatcher matcher) { argument
59 if (matchers.containsKey(method) && matchers.get(method) != matcher) {
66 + "), a matcher has already been set"));
68 matchers.put(method, matcher);
96 for (Map.Entry<Method, ArgumentsMatcher> matcher : matchers.entrySet()) {
97 map.put(new MethodSerializationWrapper(matcher.getKey()), matcher
[all...]
H A DMocksBehavior.java231 public void setDefaultMatcher(org.easymock.ArgumentsMatcher matcher) { argument
232 getLegacyMatcherProvider().setDefaultMatcher(matcher);
236 public void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher) { argument
237 getLegacyMatcherProvider().setMatcher(method, matcher);
H A DMocksControl.java279 public void setLegacyDefaultMatcher(org.easymock.ArgumentsMatcher matcher) { argument
281 state.setDefaultMatcher(matcher);
288 public void setLegacyMatcher(org.easymock.ArgumentsMatcher matcher) { argument
290 state.setMatcher(null, matcher);
H A DRecordState.java84 throw new IllegalStateException("matcher calls were used outside expectations");
380 public void setDefaultMatcher(org.easymock.ArgumentsMatcher matcher) { argument
381 behavior.setDefaultMatcher(matcher);
385 public void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher) { argument
386 requireMethodCall("matcher");
387 behavior.setMatcher(lastInvocation.getMethod(), matcher);
H A DReplayState.java136 public void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher) { argument
141 public void setDefaultMatcher(org.easymock.ArgumentsMatcher matcher) { argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-oro.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 624 milliseconds

12345678