HomeSort by relevance Sort by last modified time
    Searched refs:jsonObj (Results 1 - 2 of 2) 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/webkit/Source/WebCore/inspector/
ConsoleMessage.cpp 133 RefPtr<InspectorObject> jsonObj = InspectorObject::create();
134 jsonObj->setString("source", messageSourceValue(m_source));
135 jsonObj->setString("type", messageTypeValue(m_type));
136 jsonObj->setString("level", messageLevelValue(m_level));
137 jsonObj->setNumber("line", static_cast<int>(m_line));
138 jsonObj->setString("url", m_url);
139 jsonObj->setNumber("repeatCount", static_cast<int>(m_repeatCount));
140 jsonObj->setString("text", m_message);
142 jsonObj->setNumber("networkIdentifier", m_requestId);
155 jsonObj->setArray("parameters", jsonArgs)
    [all...]

Completed in 158 milliseconds