Searched refs:JSONDecodeError (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/simplejson/
H A Ddecoder.py32 class JSONDecodeError(ValueError): class in inherits:ValueError
114 raise JSONDecodeError(
131 raise JSONDecodeError(msg, s, end)
138 raise JSONDecodeError(
146 raise JSONDecodeError(msg, s, end)
154 raise JSONDecodeError(msg, s, end)
160 raise JSONDecodeError(msg, s, end)
163 raise JSONDecodeError(msg, s, end)
206 raise JSONDecodeError(
219 raise JSONDecodeError("Expectin
[all...]
H A D__init__.py103 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
111 from decoder import JSONDecoder, JSONDecodeError namespace
H A D_speedups.c422 static PyObject *JSONDecodeError = NULL; local
424 if (JSONDecodeError == NULL) {
428 JSONDecodeError = PyObject_GetAttrString(decoder, "JSONDecodeError");
430 if (JSONDecodeError == NULL)
433 exc = PyObject_CallFunction(JSONDecodeError, "(zOO&)", msg, s, _convertPyInt_FromSsize_t, &end);
435 PyErr_SetObject(JSONDecodeError, exc);

Completed in 123 milliseconds