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

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsSerializer.java 43 import org.json.JSONArray;
138 JSONArray cfgArray = new JSONArray();
189 JSONArray pairObj = new JSONArray();
198 JSONArray rangeObj = new JSONArray();
207 JSONArray xformObj = new JSONArray();
222 JSONArray curveArr = new JSONArray()
    [all...]
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
CameraMetadataGetter.java 53 import org.json.JSONArray;
307 JSONArray cfgArray = new JSONArray();
345 JSONArray pairObj = new JSONArray();
354 JSONArray rangeObj = new JSONArray();
363 JSONArray xformObj = new JSONArray();
379 JSONArray curveArr = new JSONArray()
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothConnectionFacade.java 51 import org.json.JSONArray;
359 * Converts a given JSONArray to an ArrayList of Integers
361 * @param jsonArray the JSONArray to be converted
364 private List<Integer> jsonArrayToIntegerList(JSONArray jsonArray) throws JSONException {
365 if (jsonArray == null) {
369 for (int i = 0; i < jsonArray.length(); i++) {
370 intArray.add(jsonArray.getInt(i));
668 JSONArray profileSe
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
ConnectActivity.java 36 import org.json.JSONArray;
176 String roomListJson = new JSONArray(roomList).toString();
192 JSONArray jsonArray = new JSONArray(roomListJson);
193 for (int i = 0; i < jsonArray.length(); i++) {
194 roomList.add(jsonArray.get(i).toString());
  /developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
MainActivity.java 66 import org.json.JSONArray;
230 JSONArray answersJsonArray = questionObject.getJSONArray(JsonUtils.JSON_FIELD_ANSWERS);
265 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS);
266 for (int i = 0; i < jsonArray.length(); i++) {
267 JSONObject questionObject = jsonArray.getJSONObject(i);
  /developers/samples/android/deprecated/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
MainActivity.java 66 import org.json.JSONArray;
230 JSONArray answersJsonArray = questionObject.getJSONArray(JsonUtils.JSON_FIELD_ANSWERS);
265 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS);
266 for (int i = 0; i < jsonArray.length(); i++) {
267 JSONObject questionObject = jsonArray.getJSONObject(i);
  /development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
MainActivity.java 66 import org.json.JSONArray;
230 JSONArray answersJsonArray = questionObject.getJSONArray(JsonUtils.JSON_FIELD_ANSWERS);
265 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS);
266 for (int i = 0; i < jsonArray.length(); i++) {
267 JSONObject questionObject = jsonArray.getJSONObject(i);
  /cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
VulkanDeviceInfo.java 23 import org.json.JSONArray;
369 JSONArray deviceGroups = parent.getJSONArray(KEY_DEVICE_GROUPS);
385 JSONArray devices = parent.getJSONArray(KEY_DEVICES);
    [all...]

Completed in 166 milliseconds