HomeSort by relevance Sort by last modified time
    Searched full:jsonobject (Results 76 - 100 of 135) sorted by null

1 2 34 5 6

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nls/
MockListener.java 29 import org.json.JSONObject;
144 JSONObject payload = new JSONObject();
NotificationListenerVerifierActivity.java 51 import org.json.JSONObject;
451 JSONObject payload = new JSONObject(payloadData);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 36 import org.json.JSONObject;
163 // Convert our list of User objects into a list of JSONObject
164 List<JSONObject> jsonContacts = new ArrayList<JSONObject>();
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.h 61 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtr<RequestDataCallback>);
InspectorFrontendHost.cpp 211 RefPtr<JSONObject> message = JSONObject::create();
InspectorWorkerAgent.cpp 93 RefPtr<JSONObject> messageObject = value->asObject();
182 void InspectorWorkerAgent::sendMessageToWorker(ErrorString* error, int workerId, const RefPtr<JSONObject>& message)
InjectedScript.cpp 95 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result)
260 RefPtr<JSONObject> rawResult = r.toJSONValue(scriptState())->asObject();
278 RefPtr<JSONObject> rawResult = r.toJSONValue(scriptState())->asObject();
InjectedScript.h 79 void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result);
InspectorIndexedDBAgent.cpp 313 static PassRefPtr<IDBKey> idbKeyFromInspectorObject(JSONObject* key)
346 RefPtr<JSONObject> object;
358 static PassRefPtr<IDBKeyRange> idbKeyRangeFromKeyRange(JSONObject* keyRange)
360 RefPtr<JSONObject> lower = keyRange->getObject("lower");
365 RefPtr<JSONObject> upper = keyRange->getObject("upper");
641 void InspectorIndexedDBAgent::requestData(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtr<RequestDataCallback> requestCallback)
InspectorDOMAgent.cpp 94 static Color parseColor(const RefPtr<JSONObject>* colorObject)
122 static Color parseConfigColor(const String& fieldName, JSONObject* configObject)
124 const RefPtr<JSONObject> colorObject = configObject->getObject(fieldName);
    [all...]
CodeGeneratorInspector.py 396 return "JSONObject::create()"
418 return "JSONObject"
693 cls.Object = cls.RefPtrBased("JSONObject")
700 # Collection of JSONObject class methods that are likely to be overloaded in generated class.
    [all...]
JSONParser.cpp 407 RefPtr<JSONObject> object = JSONObject::create();
InspectorAgent.cpp 156 void InspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints)
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkExpandableView.java 41 import org.json.JSONObject;
259 public JSONObject saveGroupState() throws JSONException {
260 JSONObject obj = new JSONObject();
  /libcore/benchmarks/src/benchmarks/regression/
ParseBenchmark.java 31 import org.json.JSONObject;
185 new JSONObject(data);
  /libcore/json/src/main/java/org/json/
JSONTokener.java 31 * JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
89 * @return a {@link JSONObject}, {@link JSONArray}, String, Boolean,
90 * Integer, Long, Double or {@link JSONObject#NULL}.
287 return JSONObject.NULL;
350 private JSONObject readObject() throws JSONException {
351 JSONObject result = new JSONObject();
  /external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/browser/sync/
SyncTestUtil.java 29 import org.json.JSONObject;
96 JSONObject aboutInfo = new JSONObject(rawJson);
99 JSONObject dataObj = detailsArray.getJSONObject(i);
103 JSONObject statObj = dataArray.getJSONObject(j);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
AccessibilityInjector.java 30 import org.json.JSONObject;
417 JSONObject json = new JSONObject(jsonParams);
448 JSONObject jsonObj = new JSONObject(jsonString);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
PerfTraceEvent.java 13 import org.json.JSONObject;
283 JSONObject traceObj = new JSONObject();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
OverridesSupport.js 334 var jsonObject = JSON.parse(value);
335 return new WebInspector.OverridesSupport.DeviceOrientation(jsonObject.alpha, jsonObject.beta, jsonObject.gamma);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java 60 import org.json.JSONObject;
357 final JSONObject json = new JSONObject(jsonString);
405 final JSONObject items = json.getJSONObject(Contacts.CONTENT_ITEM_TYPE);
411 final JSONObject obj = items.optJSONObject(mimetype);
415 final JSONObject item = array.getJSONObject(i);
429 private void processOneRecord(RawContact rawContact, JSONObject item, String mimetype)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java 41 import org.json.JSONObject;
236 JSONObject json = new JSONObject();
290 JSONObject json;
292 json = new JSONObject(serializedAccount);
319 final JSONObject json = new JSONObject(jsonAccount);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
ContentSecurityPolicy.h 47 class JSONObject;
  /libcore/luni/src/main/java/java/io/
Serializable.java 95 * org.json.JSONObject tree API} to read and write JSON. Use a binding library
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksPage.java 57 import org.json.JSONObject;
99 JSONObject mState;
332 mState = new JSONObject(prefs.getString(PREF_GROUP_STATE, "{}"));
336 mState = new JSONObject();

Completed in 1122 milliseconds

1 2 34 5 6