HomeSort by relevance Sort by last modified time
    Searched refs:JSONException (Results 26 - 50 of 204) sorted by null

12 3 4 5 6 7 8 9

  /libcore/json/src/main/java/org/json/
JSONObject.java 61 * fails with a {@code JSONException} if the requested name has no value
148 * @throws JSONException if the parse fails or doesn't yield a
151 public JSONObject(JSONTokener readFrom) throws JSONException {
169 * @throws JSONException if the parse fails or doesn't yield a {@code
172 public JSONObject(String json) throws JSONException {
181 public JSONObject(JSONObject copyFrom, String[] names) throws JSONException {
204 public JSONObject put(String name, boolean value) throws JSONException {
217 public JSONObject put(String name, double value) throws JSONException {
228 public JSONObject put(String name, int value) throws JSONException {
239 public JSONObject put(String name, long value) throws JSONException {
    [all...]
JSONTokener.java 91 * @throws JSONException if the input is malformed.
93 public Object nextValue() throws JSONException {
115 private int nextCleanInternal() throws JSONException {
192 public String nextString(char quote) throws JSONException {
237 private char readEscapeCharacter() throws JSONException {
280 private Object readLiteral() throws JSONException {
349 private JSONObject readObject() throws JSONException {
404 private JSONArray readArray() throws JSONException {
448 public JSONException syntaxError(String message) {
449 return new JSONException(message + this)
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
HTTPTokener.java 46 * @throws JSONException
49 public String nextToken() throws JSONException {
JSONObject.java 158 * @exception JSONException If a value is a non-finite number or if a name is duplicated.
160 public JSONObject(JSONObject jo, String[] names) throws JSONException {
171 * @throws JSONException If there is a syntax error in the source string
174 public JSONObject(JSONTokener x) throws JSONException {
416 * @exception JSONException If there is a syntax error in the source
419 public JSONObject(String source) throws JSONException {
433 * @throws JSONException If the value is an invalid number
437 throws JSONException {
461 * @throws JSONException If the key is null or if the current value
465 throws JSONException {
    [all...]
XMLTokener.java 61 * @throws JSONException If the <code>]]&gt;</code> is not found.
63 public String nextCDATA() throws JSONException {
90 * @throws JSONException
92 public Object nextContent() throws JSONException {
125 * @throws JSONException If missing ';' in XML entity.
127 public Object nextEntity(char a) throws JSONException {
151 * @throws JSONException If a string is not properly closed or if the XML
154 public Object nextMeta() throws JSONException {
217 * @throws JSONException If the XML is not well formed.
219 public Object nextToken() throws JSONException {
    [all...]
CookieList.java 47 * @throws JSONException
49 public static JSONObject toJSONObject(String string) throws JSONException {
69 * @throws JSONException
71 public static String toString(JSONObject o) throws JSONException {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
TimePickerDialogTask.java 24 import org.json.JSONException;
55 } catch (JSONException e) {
69 } catch (JSONException e) {
83 } catch (JSONException e) {
DatePickerDialogTask.java 24 import org.json.JSONException;
56 } catch (JSONException e) {
71 } catch (JSONException e) {
86 } catch (JSONException e) {
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
JsonParser.java 23 import org.json.JSONException;
41 public static JSONObject parse(JsonReader reader) throws IOException, JSONException {
63 } catch (JSONException e) {
74 throw new JSONException(errorMsg);
AssetMatcherFactory.java 19 import org.json.JSONException;
31 JSONException {
StatementParser.java 22 import org.json.JSONException;
42 throws JSONException, IOException {
70 throws AssociationServiceException, IOException, JSONException {
81 throws JSONException, AssociationServiceException, IOException {
  /libcore/json/src/test/java/org/json/
SelfUseTest.java 43 @Override public JSONObject put(String name, Object value) throws JSONException {
47 @Override public Object get(String name) throws JSONException {
78 @Override public JSONArray put(int index, Object value) throws JSONException {
82 @Override public Object get(int index) throws JSONException {
117 @Override public Object nextValue() throws JSONException {
124 public void testObjectPut() throws JSONException {
129 public void testObjectAccumulate() throws JSONException {
134 public void testObjectGetBoolean() throws JSONException {
140 public void testObjectOptType() throws JSONException {
158 public void testToJSONArray() throws JSONException {
    [all...]
JSONTokenerTest.java 27 public void testNulls() throws JSONException {
103 public void testEmptyString() throws JSONException {
112 } catch (JSONException expected) {
117 } catch (JSONException e) {
123 } catch (JSONException e) {
130 } catch (JSONException e) {
139 public void testCharacterNavigation() throws JSONException {
147 } catch (JSONException e) {
157 public void testBackNextAndMore() throws JSONException {
176 public void testNextMatching() throws JSONException {
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
JsonBackedSuggestionExtras.java 18 import org.json.JSONException;
36 public JsonBackedSuggestionExtras(String json) throws JSONException {
45 public JsonBackedSuggestionExtras(SuggestionExtras extras) throws JSONException {
61 } catch (JSONException e) {
AbstractSuggestionExtras.java 18 import org.json.JSONException;
55 public String toJsonString() throws JSONException {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ConnectivityEvents.java 21 import org.json.JSONException;
47 public JSONObject toJSON() throws JSONException {
76 public JSONObject toJSON() throws JSONException {
102 public JSONObject toJSON() throws JSONException {
124 public JSONObject toJSON() throws JSONException {
CommonIntentsFacade.java 33 import org.json.JSONException;
56 public Intent pick(@RpcParameter(name = "uri") String uri) throws JSONException {
61 public Intent scanBarcode() throws JSONException {
93 public void viewContacts() throws JSONException {
100 throws JSONException {
  /developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
JsonUtils.java 21 import org.json.JSONException;
38 JSONException {
  /developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
JsonUtils.java 21 import org.json.JSONException;
38 JSONException {
  /development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
JsonUtils.java 21 import org.json.JSONException;
38 JSONException {
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonMessageBuilder.java 24 import com.google.polo.json.JSONException;
126 } catch (JSONException e) {
170 } catch (JSONException e) {
189 } catch (JSONException e) {
211 } catch (JSONException e) {
226 } catch (JSONException e) {
239 } catch (JSONException e) {
261 } catch (JSONException e) {
288 } catch (JSONException e) {
306 } catch (JSONException e)
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageBuilder.java 22 import com.google.polo.json.JSONException;
132 } catch (JSONException e) {
148 } catch (JSONException e) {
155 } catch (JSONException e) {
218 } catch (JSONException e) {
240 } catch (JSONException e) {
267 } catch (JSONException e) {
283 } catch (JSONException e) {
299 } catch (JSONException e) {
323 } catch (JSONException e)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
SimpleBackupSharedPreference.java 22 import org.json.JSONException;
57 public JSONObject toJson() throws JSONException {
73 public static BackupSharedPreference fromJson(final JSONObject json) throws JSONException {
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
ListParams.java 25 import org.json.JSONException;
95 } catch (JSONException e) {
118 } catch (JSONException e) {
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
JsonArrayRequest.java 26 import org.json.JSONException;
69 } catch (JSONException je) {

Completed in 738 milliseconds

12 3 4 5 6 7 8 9