HomeSort by relevance Sort by last modified time
    Searched defs:Response (Results 1 - 9 of 9) sorted by null

  /frameworks/volley/src/com/android/volley/
Response.java 20 * Encapsulates a parsed response for delivery.
22 * @param <T> Parsed type of this response
24 public class Response<T> {
28 /** Called when a response is received. */
29 public void onResponse(T response);
41 /** Returns a successful response containing the parsed result. */
42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) {
43 return new Response<T>(result, cacheEntry);
47 * Returns a failed response containing the given error code and an optional
50 public static <T> Response<T> error(VolleyError error)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
CookieParser.js 72 this._addCookie(kv, WebInspector.Cookie.Type.Response);
209 Response: 1
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebRequest.h 39 Response,