HomeSort by relevance Sort by last modified time
    Searched full:jsonobj (Results 1 - 5 of 5) sorted by null

  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/client/
UserTest.java 41 JSONObject jsonObj = new JSONObject();
42 jsonObj.put("u", "mjoshi");
43 jsonObj.put("f", "Megha");
44 jsonObj.put("l", "Joshi");
45 jsonObj.put("i", 1);
46 User user = User.valueOf(jsonObj);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ConsoleMessage.cpp 194 RefPtr<TypeBuilder::Console::ConsoleMessage> jsonObj = TypeBuilder::Console::ConsoleMessage::create()
200 jsonObj->setType(messageTypeValue(m_type));
201 jsonObj->setLine(static_cast<int>(m_line));
202 jsonObj->setColumn(static_cast<int>(m_column));
203 jsonObj->setUrl(m_url);
204 jsonObj->setRepeatCount(static_cast<int>(m_repeatCount));
206 jsonObj->setNetworkRequestId(m_requestId);
230 jsonObj->setParameters(jsonArgs);
234 jsonObj->setStackTrace(m_callStack->buildInspectorArray());
235 frontend->messageAdded(jsonObj);
    [all...]
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsUtils.java 68 JSONObject jsonObj = new JSONObject();
69 jsonObj.put("cameraProperties", ItsSerializer.serialize(props));
70 storeJsonObject(jsonObj, file);
82 JSONObject jsonObj = new JSONObject();
83 jsonObj.put("cameraProperties", ItsSerializer.serialize(props));
84 jsonObj.put("captureRequest", ItsSerializer.serialize(request));
85 jsonObj.put("captureResult", ItsSerializer.serialize(result));
86 storeJsonObject(jsonObj, file);
92 public static void storeJsonObject(JSONObject jsonObj, File file)
96 buf = ByteBuffer.wrap(jsonObj.toString(PPRINT_JSON_INDENT)
    [all...]
ItsSerializer.java 152 JSONObject jsonObj = new JSONObject();
172 jsonObj.put(entry.key, entry.value);
189 return jsonObj;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
AccessibilityInjector.java 448 JSONObject jsonObj = new JSONObject(jsonString);
451 data.setText(jsonObj.getString("text"));
452 data.setSelectionStart(jsonObj.getInt("startIndex"));
453 data.setSelectionEnd(jsonObj.getInt("endIndex"));

Completed in 1331 milliseconds