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

1 2 3

  /external/autotest/frontend/client/src/autotest/afe/
HostDataSource.java 10 import com.google.gwt.json.client.JSONString;
43 JSONString jsonPlatform = host.get("platform").isString();
60 host.put(OTHER_LABELS, new JSONString(labelString.toString()));
62 JSONArrayList<JSONString> aclsList =
63 new JSONArrayList<JSONString>(host.get("acls").isArray());
65 host.put(HOST_ACLS, new JSONString(aclString));
JobTable.java 11 import com.google.gwt.json.client.JSONString;
51 row.put(HOSTS_SUMMARY, new JSONString(statusCountString));
60 row.put(RESULTS_SUMMARY, new JSONString(resultCountString));
65 row.put("priority", new JSONString(priorityName));
LabelFilter.java 8 import com.google.gwt.json.client.JSONString;
54 labels.set(labels.size(), new JSONString(platformString));
RecurringTable.java 8 import com.google.gwt.json.client.JSONString;
35 row.put("job_id", new JSONString(Integer.toString(jobId)));
JobStatusDataSource.java 10 import com.google.gwt.json.client.JSONString;
54 queueEntry.put("status", new JSONString(translation));
60 queueEntry.put("hostname", new JSONString("(hostless)"));
121 entry.put("hostname", new JSONString(label + " (label)"));
122 entry.put("status", new JSONString(Integer.toString(count) + " " + status));
AfeUtils.java 17 import com.google.gwt.json.client.JSONString;
108 public static JSONString getLockedText(JSONObject host) {
110 return new JSONString(locked ? "Yes" : "No");
273 args.put("name", new JSONString(name));
276 args.put("control_type", new JSONString(TestSelector.SERVER_TYPE));
352 updateData.put("lock_reason", new JSONString(""));
355 updateData.put("lock_reason", new JSONString(lockReason.trim()));
382 for (JSONString jsonOption : new JSONArrayList<JSONString>(options)) {
389 for (JSONString jsonOption : new JSONArrayList<JSONString>(options))
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
TestSet.java 4 import com.google.gwt.json.client.JSONString;
22 condition.put("extra_where", new JSONString(sqlCondition));
MachineQualHistogramFrontend.java 8 import com.google.gwt.json.client.JSONString;
37 params.put("graph_type", new JSONString("qual"));
41 private JSONString buildQuery() {
69 return new JSONString(sql.toString());
72 private JSONString buildFilterString() {
87 return new JSONString(filterString.toString());
MetricsPlot.java 11 import com.google.gwt.json.client.JSONString;
34 params.put("query", new JSONString(query));
35 params.put("param", new JSONString(param));
PreconfigSelector.java 12 import com.google.gwt.json.client.JSONString;
65 params.put("name", new JSONString(name));
66 params.put("type", new JSONString(preconfigType));
TestGroupDataSource.java 9 import com.google.gwt.json.client.JSONString;
76 groupByFields.set(groupByFields.size(), new JSONString(field));
87 groupByFields.set(groupByFields.size(), new JSONString(field));
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONString.java 3 * The <code>JSONString</code> interface allows a <code>toJSONString()</code>
10 public interface JSONString {
  /external/autotest/frontend/client/src/autotest/common/table/
MultipleListFilter.java 4 import com.google.gwt.json.client.JSONString;
27 new JSONString(getItemText(i)));
RpcDataSource.java 11 import com.google.gwt.json.client.JSONString;
38 sortList.set(sortList.size(), new JSONString(sortSpec.toString()));
43 pageParams.put("include_current_job", new JSONString("true"));
SearchFilter.java 8 import com.google.gwt.json.client.JSONString;
61 return new JSONString(activeSearch);
  /external/v8/test/mjsunit/regress/
regress-241344.js 31 var jsonstring = '{"0":0.1, "10000":0.4, '; variable
33 jsonstring += '"' + i + '":0.2, ';
35 jsonstring += '"9999":0.3}';
37 var jsonobject = JSON.parse(jsonstring);
  /prebuilts/tools/common/m2/repository/org/json/json/20080701/
json-20080701-sources.jar 
  /developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
JsonUtils.java 44 String jsonString = new String(buffer);
45 return new JSONObject(jsonString);
  /developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
JsonUtils.java 44 String jsonString = new String(buffer);
45 return new JSONObject(jsonString);
  /development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
JsonUtils.java 44 String jsonString = new String(buffer);
45 return new JSONObject(jsonString);
  /external/autotest/frontend/client/src/autotest/common/
JsonRpcCallback.java 6 import com.google.gwt.json.client.JSONString;
31 JSONString tracebackString = errorObject.get("traceback").isString();
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
CollectorUtil.java 126 * @param jsonString String to be written.
129 private static void writeFile(File file, String jsonString) throws IOException {
132 writer.write(jsonString, 0, jsonString.length());
139 * @param jsonString
142 public static String reformatJsonString(String jsonString) {
147 Matcher m = p.matcher(jsonString);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDSignalingMessage.h 27 + (ARDSignalingMessage *)messageFromJSONString:(NSString *)jsonString;
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ReflectionTest.java 70 String jsonString = json.toJson(fromCopyConstructor);
71 Vector2 fromJson = json.fromJson(Vector2.class, jsonString);
72 println("JSON serialized: " + jsonString);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/common/
ARDUtilities.m 19 + (NSDictionary *)dictionaryWithJSONString:(NSString *)jsonString {
20 NSParameterAssert(jsonString.length > 0);
21 NSData *data = [jsonString dataUsingEncoding:NSUTF8StringEncoding];

Completed in 211 milliseconds

1 2 3