Home
last modified time | relevance | path

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

/external/skia/tools/debugger/
DSkJsonWriteBuffer.cpp19 Json::Value jsonArray(Json::arrayValue); in writeByteArray() local
23 jsonArray.append(hexByte.c_str()); in writeByteArray()
25 this->append("byteArray", jsonArray); in writeByteArray()
37 Json::Value jsonArray(Json::arrayValue); in writeScalarArray() local
39 jsonArray.append(value[i]); in writeScalarArray()
41 this->append("scalarArray", jsonArray); in writeScalarArray()
49 Json::Value jsonArray(Json::arrayValue); in writeIntArray() local
51 jsonArray.append(value[i]); in writeIntArray()
53 this->append("intArray", jsonArray); in writeIntArray()
79 Json::Value jsonArray(Json::arrayValue); in writeColorArray() local
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothConnectionFacade.java350 private List<Integer> jsonArrayToIntegerList(JSONArray jsonArray) throws JSONException { in jsonArrayToIntegerList() argument
351 if (jsonArray == null) { in jsonArrayToIntegerList()
355 for (int i = 0; i < jsonArray.length(); i++) { in jsonArrayToIntegerList()
356 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()