/packages/apps/Launcher3/src/com/android/launcher3/ |
InstallShortcutReceiver.java | 37 import org.json.JSONObject; 384 JSONObject object = (JSONObject) new JSONTokener(encoded).nextValue();
|
/packages/apps/Settings/tests/src/com/android/settings/vpn2/ |
VpnTests.java | 46 import org.json.JSONObject; 238 JSONObject json_data = new JSONObject(entityStr); 246 Log.e(TAG, "exception while creating JSONObject: " + e.toString());
|
/developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/ |
MainActivity.java | 68 import org.json.JSONObject; 226 public static Question fromJson(JSONObject questionObject, int questionIndex) 260 JSONObject jsonObject = JsonUtils.loadJsonFile(this, QUIZ_JSON_FILE); 261 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS); 263 JSONObject questionObject = jsonArray.getJSONObject(i);
|
/developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/ |
MainActivity.java | 68 import org.json.JSONObject; 226 public static Question fromJson(JSONObject questionObject, int questionIndex) 260 JSONObject jsonObject = JsonUtils.loadJsonFile(this, QUIZ_JSON_FILE); 261 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS); 263 JSONObject questionObject = jsonArray.getJSONObject(i);
|
/development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/ |
MainActivity.java | 68 import org.json.JSONObject; 226 public static Question fromJson(JSONObject questionObject, int questionIndex) 260 JSONObject jsonObject = JsonUtils.loadJsonFile(this, QUIZ_JSON_FILE); 261 JSONArray jsonArray = jsonObject.getJSONArray(JsonUtils.JSON_FIELD_QUESTIONS); 263 JSONObject questionObject = jsonArray.getJSONObject(i);
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
WorkerInspectorController.cpp | 66 virtual void sendMessageToFrontend(PassRefPtr<JSONObject> message) OVERRIDE
|
JSONParser.cpp | 407 RefPtr<JSONObject> object = JSONObject::create();
|
InspectorDOMAgent.cpp | 97 static Color parseColor(const RefPtr<JSONObject>* colorObject) 125 static Color parseConfigColor(const String& fieldName, JSONObject* configObject) 127 const RefPtr<JSONObject> colorObject = configObject->getObject(fieldName); [all...] |
InspectorInputAgent.cpp | 205 RefPtr<JSONObject> pointObj;
|
InspectorPageAgent.cpp | 550 RefPtr<JSONObject> scripts = m_state->getObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad); 552 scripts = JSONObject::create(); 568 RefPtr<JSONObject> scripts = m_state->getObject(PageAgentState::pageAgentScriptsToEvaluateOnLoad); [all...] |
InspectorLayerTreeAgent.cpp | 410 void InspectorLayerTreeAgent::snapshotCommandLog(ErrorString* errorString, const String& snapshotId, RefPtr<TypeBuilder::Array<JSONObject> >& commandLog) 415 commandLog = TypeBuilder::Array<JSONObject>::runtimeCast(snapshot->snapshotCommandLog());
|
InspectorCSSAgent.cpp | 835 static bool extractRangeComponent(ErrorString* errorString, const RefPtr<JSONObject>& range, const String& component, unsigned& result) 846 static bool jsonRangeToSourceRange(ErrorString* errorString, InspectorStyleSheetBase* inspectorStyleSheet, const RefPtr<JSONObject>& range, SourceRange* sourceRange) [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
InspectorClientImpl.cpp | 72 void InspectorClientImpl::sendMessageToFrontend(PassRefPtr<JSONObject> message)
|
/external/chromium_org/third_party/simplejson/ |
decoder.py | 180 def JSONObject((s, end), encoding, strict, scan_once, object_hook, 395 self.parse_object = JSONObject
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 149 def JSONObject(s_and_end, encoding, strict, scan_once, object_hook, 355 self.parse_object = JSONObject
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 149 def JSONObject(s_and_end, encoding, strict, scan_once, object_hook, 355 self.parse_object = JSONObject
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
InspectorIndexedDBAgent.cpp | 316 static IDBKey* idbKeyFromInspectorObject(JSONObject* key) 349 RefPtr<JSONObject> object; 362 static IDBKeyRange* idbKeyRangeFromKeyRange(JSONObject* keyRange) 364 RefPtr<JSONObject> lower = keyRange->getObject("lower"); 369 RefPtr<JSONObject> upper = keyRange->getObject("upper"); 666 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, const PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback)
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ContactLoader.java | 59 import org.json.JSONObject; 371 final JSONObject json = new JSONObject(jsonString); 419 final JSONObject items = json.getJSONObject(Contacts.CONTENT_ITEM_TYPE); 425 final JSONObject obj = items.optJSONObject(mimetype); 429 final JSONObject item = array.getJSONObject(i); 443 private static void processOneRecord(RawContact rawContact, JSONObject item, String mimetype) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
InstallShortcutReceiver.java | 121 JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
ScriptDebugServer.h | 81 bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, ScriptValue* newCallFrames, RefPtr<JSONObject>* result);
|
V8Binding.cpp | 917 RefPtr<JSONObject> jsonObject = JSONObject::create(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/ |
ContentSecurityPolicy.cpp | 674 RefPtr<JSONObject> cspReport = JSONObject::create(); 689 RefPtr<JSONObject> reportObject = JSONObject::create(); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsLayer.cpp | 549 PassRefPtr<JSONObject> GraphicsLayer::layerTreeAsJSON(LayerTreeFlags flags, RenderingContextMap& renderingContextMap) const 551 RefPtr<JSONObject> json = adoptRef(new JSONObject); 675 RefPtr<JSONObject> json = layerTreeAsJSON(flags, renderingContextMap); [all...] |
/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();
|
/frameworks/base/core/tests/coretests/src/android/app/backup/ |
BackupDataTest.java | 30 import org.json.JSONObject;
|