Home
last modified time | relevance | path

Searched refs:jsonArray (Results 1 – 2 of 2) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothConnectionFacade.java364 private List<Integer> jsonArrayToIntegerList(JSONArray jsonArray) throws JSONException { in jsonArrayToIntegerList() argument
365 if (jsonArray == null) { in jsonArrayToIntegerList()
369 for (int i = 0; i < jsonArray.length(); i++) { in jsonArrayToIntegerList()
370 intArray.add(jsonArray.getInt(i)); in jsonArrayToIntegerList()
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DConnectActivity.java192 JSONArray jsonArray = new JSONArray(roomListJson); in onResume() local
193 for (int i = 0; i < jsonArray.length(); i++) { in onResume()
194 roomList.add(jsonArray.get(i).toString()); in onResume()