Searched refs:jsonString (Results 1 – 11 of 11) sorted by relevance
388 String jsonString = mSharedPrefs.getString( in addDailyRotation() local391 JSONArray jsonArray = new JSONArray(jsonString); in addDailyRotation()404 String jsonString = mSharedPrefs.getString( in getLastDailyRotationTimestamp() local408 JSONArray jsonArray = new JSONArray(jsonString); in getLastDailyRotationTimestamp()438 String jsonString = mSharedPrefs.getString( in getDailyRotationsInLastWeek() local442 JSONArray jsonArray = new JSONArray(jsonString); in getDailyRotationsInLastWeek()489 String jsonString = mSharedPrefs.getString( in getDailyRotationsPreviousDay() local493 JSONArray jsonArray = new JSONArray(jsonString); in getDailyRotationsPreviousDay()
113 String jsonString = mJsonReader.jsonFileToString(mContext, R.raw.car_config); in init() local114 if (jsonString != null) { in init()116 mConfigFile = new JSONObject(jsonString); in init()
51 String jsonString = stringFromAsset(context, assetPathName); in jsonFromAsset() local53 return (jsonString != null) ? new JSONObject(jsonString) : null; in jsonFromAsset()
237 String jsonString = (String) object; in dumpJson() local238 Clog.d(TAG, indent + name + jsonString + " (string)"); in dumpJson()
81 final String jsonString = in createTemporaryContactUri() local93 .encodedFragment(jsonString) in createTemporaryContactUri()
789 public static Account fromJsonString(final String jsonString) { in fromJsonString() argument791 final JSONObject json = new JSONObject(jsonString); in fromJsonString()
107 final String jsonString = in doInBackground() local113 cacheInfo.setLookupKey(jsonString); in doInBackground()
123 final String jsonString = uri.getEncodedFragment(); in loadEncodedContactEntity() local124 final JSONObject json = new JSONObject(jsonString); in loadEncodedContactEntity()
358 final String jsonString = uri.getEncodedFragment(); in loadEncodedContactEntity() local359 final JSONObject json = new JSONObject(jsonString); in loadEncodedContactEntity()
688 private String addRandomDataToJson(String jsonString) throws JSONException { in addRandomDataToJson() argument689 JSONArray jsonArray = new JSONArray(jsonString); in addRandomDataToJson()
1696 final String jsonString = account.toJsonString(context); in backupAccounts() local1699 am.setUserData(amAccount, ACCOUNT_MANAGER_JSON_TAG, jsonString); in backupAccounts()1730 final String jsonString = am.getUserData(amAccount, ACCOUNT_MANAGER_JSON_TAG); in restoreAccounts() local1731 if (TextUtils.isEmpty(jsonString)) { in restoreAccounts()1734 final Account account = Account.fromJsonString(jsonString); in restoreAccounts()