Searched defs:requestMatcher (Results 1 - 2 of 2) sorted by path

/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectric.java1181 * @param requestMatcher custom {@code RequestMatcher}.
1184 public static void addHttpResponseRule(RequestMatcher requestMatcher, HttpResponse response) { argument
1185 getFakeHttpLayer().addHttpResponseRule(requestMatcher, response);
1193 * @param requestMatcher custom {@code RequestMatcher}.
1196 public static void addHttpResponseRule(RequestMatcher requestMatcher, List<? extends HttpResponse> responses) { argument
1197 getFakeHttpLayer().addHttpResponseRule(requestMatcher, responses);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
H A DFakeHttpLayer.java66 public void addHttpResponseRule(RequestMatcher requestMatcher, HttpResponse response) { argument
67 addHttpResponseRule(new RequestMatcherResponseRule(requestMatcher, response));
73 * @param requestMatcher Request matcher
76 public void addHttpResponseRule(RequestMatcher requestMatcher, List<? extends HttpResponse> responses) { argument
77 addHttpResponseRule(new RequestMatcherResponseRule(requestMatcher, responses));
187 private RequestMatcher requestMatcher; field in class:FakeHttpLayer.RequestMatcherResponseRule
193 public RequestMatcherResponseRule(RequestMatcher requestMatcher, HttpResponse responseToGive) { argument
194 this.requestMatcher = requestMatcher;
198 public RequestMatcherResponseRule(RequestMatcher requestMatcher, IOExceptio argument
203 RequestMatcherResponseRule(RequestMatcher requestMatcher, HttpException httpException) argument
208 RequestMatcherResponseRule(RequestMatcher requestMatcher, List<? extends HttpResponse> responses) argument
[all...]

Completed in 288 milliseconds