Home
last modified time | relevance | path

Searched refs:ParseError (Results 1 – 6 of 6) sorted by relevance

/frameworks/volley/src/main/java/com/android/volley/
DParseError.java23 public class ParseError extends VolleyError { class
24 public ParseError() { } in ParseError() method in ParseError
26 public ParseError(NetworkResponse networkResponse) { in ParseError() method in ParseError
30 public ParseError(Throwable cause) { in ParseError() method in ParseError
/frameworks/base/media/mca/
Dstructgen.py98 class ParseError: class
235 raise ParseError(lineno, "Unknown field type '%s'!" % typestr)
238 raise ParseError(lineno, "Unknown command: '%s'!" % cmd)
244 raise ParseError(lineno, "Required field '@name' missing!")
246 raise ParseError(lineno, "Required field '@package' missing!")
248 raise ParseError(lineno, "Required field '@libname' missing!")
257 raise ParseError(lineno, "Not enough arguments specifed for command '%s'! Expected %d, " \
260 raise ParseError(lineno, "Too many arguments specifed for command '%s'! Expected %d, " \
/frameworks/volley/src/main/java/com/android/volley/toolbox/
DJsonArrayRequest.java20 import com.android.volley.ParseError;
68 return Response.error(new ParseError(e)); in parseNetworkResponse()
70 return Response.error(new ParseError(je)); in parseNetworkResponse()
DJsonObjectRequest.java20 import com.android.volley.ParseError;
71 return Response.error(new ParseError(e)); in parseNetworkResponse()
73 return Response.error(new ParseError(je)); in parseNetworkResponse()
DImageRequest.java26 import com.android.volley.ParseError;
162 return Response.error(new ParseError(e)); in parseNetworkResponse()
211 return Response.error(new ParseError(response)); in doParse()
/frameworks/base/docs/html/training/volley/
Drequest-custom.jd153 return Response.error(new ParseError(e));
155 return Response.error(new ParseError(e));