HomeSort by relevance Sort by last modified time
    Searched full:jsonstring (Results 26 - 50 of 74) sorted by null

12 3

  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
AssetUtils.java 48 String jsonString = new String(loadAsset(context, asset));
51 jsonObject = new JSONObject(jsonString);
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
AssetUtils.java 48 String jsonString = new String(loadAsset(context, asset));
51 jsonObject = new JSONObject(jsonString);
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
AssetUtils.java 48 String jsonString = new String(loadAsset(context, asset));
51 jsonObject = new JSONObject(jsonString);
  /external/autotest/frontend/client/src/autotest/afe/
HostTableDecorator.java 15 import com.google.gwt.json.client.JSONString;
35 username = new JSONString(StaticDataRepository.getRepository().getCurrentUserLogin());
JobOwnerFilter.java 13 import com.google.gwt.json.client.JSONString;
82 return new JSONString(userList.getSelectedName());
HostDetailView.java 36 import com.google.gwt.json.client.JSONString;
70 row.put("type", new JSONString("Job"));
118 hostFilter.setParameter("start_time", new JSONString(startTime));
120 hostFilter.setParameter("end_time", new JSONString(endTime));
136 JSONString blank = new JSONString("");
137 JSONString jobId = blank, owner = blank, name = blank;
140 jobId = new JSONString(Integer.toString(id));
227 params.put("id", new JSONString(getObjectId()));
233 params.put("hostname", new JSONString(hostname))
    [all...]
UserPreferencesView.java 15 import com.google.gwt.json.client.JSONString;
128 values.put("reboot_before", new JSONString(rebootBefore.getSelectedChoice()));
129 values.put("reboot_after", new JSONString(rebootAfter.getSelectedChoice()));
131 values.put("drone_set", new JSONString(droneSet.getItemText(droneSet.getSelectedIndex())));
HostSelector.java 20 import com.google.gwt.json.client.JSONString;
218 oneTimeObject.put("hostname", new JSONString(hostname));
219 oneTimeObject.put("platform", new JSONString(ONE_TIME));
247 metaObject.put("hostname", new JSONString(META_PREFIX + number));
248 metaObject.put("platform", new JSONString(label));
250 metaObject.put("status", new JSONString(""));
290 JSONString platform = row.get("platform").isString();
  /external/autotest/frontend/client/src/autotest/common/
JsonRpcProxy.java 9 import com.google.gwt.json.client.JSONString;
69 request.put("method", new JSONString(method));
Utils.java 10 import com.google.gwt.json.client.JSONString;
35 * </code> of <code>JSONString</code>s.
40 result.set(result.size(), new JSONString(s));
86 result.put(entry.getKey(), new JSONString(entry.getValue()));
215 JSONString string;
  /external/autotest/frontend/client/src/autotest/common/table/
ListFilter.java 7 import com.google.gwt.json.client.JSONString;
65 return new JSONString(getSelectedText());
  /external/autotest/frontend/client/src/autotest/moblab/
KeyUploadView.java 12 import com.google.gwt.json.client.JSONString;
63 params.put(rpcArgName, new JSONString(fileName));
ConfigSettingsView.java 13 import com.google.gwt.json.client.JSONString;
85 configValuePair.set(0, new JSONString(configValue.getKey()));
86 configValuePair.set(1, new JSONString(configValue.getValue().getText()));
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDSignalingMessage.m 37 + (ARDSignalingMessage *)messageFromJSONString:(NSString *)jsonString {
38 NSDictionary *values = [NSDictionary dictionaryWithJSONString:jsonString];
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
JsonArrayRequest.java 63 String jsonString = new String(response.data,
65 return Response.success(new JSONArray(jsonString),
JsonObjectRequest.java 66 String jsonString = new String(response.data,
68 return Response.success(new JSONObject(jsonString),
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/common/
ARDUtilities.h 16 + (NSDictionary *)dictionaryWithJSONString:(NSString *)jsonString;
  /external/autotest/frontend/client/src/autotest/tko/
ContentSelect.java 16 import com.google.gwt.json.client.JSONString;
101 extraInfo.set(extraInfo.size(), new JSONString(contentSelect.getValue(i)));
ParameterizedField.java 7 import com.google.gwt.json.client.JSONString;
93 fieldValueList.set(fieldValueList.size(), new JSONString(getValue()));
Plot.java 12 import com.google.gwt.json.client.JSONString;
91 params.put("drilldown_callback", new JSONString(callbackName));
TkoUtils.java 13 import com.google.gwt.json.client.JSONString;
50 params.put("extra_where", new JSONString(condition));
SavedQueriesControl.java 19 import com.google.gwt.json.client.JSONString;
105 args.put("owner", new JSONString(staticData.getCurrentUserLogin()));
149 args.put("name", new JSONString(addQueryDialog.widget.getText()));
150 args.put("url_token", new JSONString(CustomHistory.getLastHistoryToken().toString()));
TestLabelManager.java 13 import com.google.gwt.json.client.JSONString;
177 args.put("name", new JSONString(name));
196 args.put("label_id", new JSONString(label));
  /external/autotest/frontend/client/src/autotest/afe/create/
CreateJobViewPresenter.java 45 import com.google.gwt.json.client.JSONString;
385 profilers.set(profilers.size(), new JSONString(profiler.getText()));
758 args.put("name", new JSONString(display.getJobName().getText()));
761 args.put("control_file", new JSONString(display.getControlFile().getText()));
763 new JSONString(controlTypeSelect.getControlType()));
768 args.put("email_list", new JSONString(display.getEmailList().getText()));
    [all...]
  /frameworks/base/core/java/com/android/server/backup/
AccountSyncSettingsBackupHelper.java 303 String jsonString = unaddedAccountsJSONArray.toString();
305 out.writeUTF(jsonString);
320 String jsonString;
324 jsonString = in.readUTF();
335 JSONArray unaddedAccountsJSONArray = new JSONArray(jsonString);
338 // Malformed jsonString

Completed in 410 milliseconds

12 3