Home
last modified time | relevance | path

Searched refs:JSONString (Results 1 – 25 of 39) sorted by relevance

12

/external/autotest/frontend/client/src/autotest/moblab/rpc/
DMoblabRpcHelper.java6 import com.google.gwt.json.client.JSONString;
186 params.put("ipaddress", new JSONString(dutIpAddress)); in addMoblabDut()
206 params.put("ipaddress", new JSONString(dutIpAddress)); in removeMoblabDut()
227 params.put("ipaddress", new JSONString(dutIpAddress)); in addMoblabLabel()
228 params.put("label_name", new JSONString(labelName)); in addMoblabLabel()
249 params.put("ipaddress", new JSONString(dutIpAddress)); in removeMoblabLabel()
250 params.put("label_name", new JSONString(labelName)); in removeMoblabLabel()
297 params.put("board_name", new JSONString(board_name)); in fetchBuildsForBoard()
314 params.put("board_name", new JSONString(board_name)); in fetchFirmwareForBoard()
331 params.put("board", new JSONString(board)); in runSuite()
[all …]
DCloudStorageInfo.java5 import com.google.gwt.json.client.JSONString;
102 object.put(JSON_FIELD_BOTO_KEY_ID, new JSONString(botoKey)); in toJson()
105 object.put(JSON_FIELD_BOTO_SECRET_KEY, new JSONString(botoSecret)); in toJson()
108 object.put(JSON_FIELD_IMAGE_STORAGE_URL, new JSONString(imageStorageServer)); in toJson()
111 object.put(JSON_FIELD_RESULT_STORAGE_URL, new JSONString(resultStorageServer)); in toJson()
113 object.put(JSON_FIELD_RESULT_STORAGE_URL, new JSONString("")); in toJson()
DOperationStatus.java5 import com.google.gwt.json.client.JSONString;
55 object.put(JSON_FIELD_STATUS_DETAILS, new JSONString(details)); in toJson()
DNetworkInfo.java6 import com.google.gwt.json.client.JSONString;
70 serverIpsArray.set(index, new JSONString(serverIps[index])); in toJson()
/external/autotest/frontend/client/src/autotest/afe/
DHostDataSource.java10 import com.google.gwt.json.client.JSONString;
43 JSONString jsonPlatform = host.get("platform").isString(); in processHost()
60 host.put(OTHER_LABELS, new JSONString(labelString.toString())); in processHost()
62 JSONArrayList<JSONString> aclsList = in processHost()
63 new JSONArrayList<JSONString>(host.get("acls").isArray()); in processHost()
65 host.put(HOST_ACLS, new JSONString(aclString)); in processHost()
DAfeUtils.java17 import com.google.gwt.json.client.JSONString;
98 public static JSONString getLockedText(JSONObject host) { in getLockedText()
100 return new JSONString(locked ? "Yes" : "No"); in getLockedText()
271 updateData.put("lock_reason", new JSONString("")); in changeHostLocks()
274 updateData.put("lock_reason", new JSONString(lockReason.trim())); in changeHostLocks()
301 for (JSONString jsonOption : new JSONArrayList<JSONString>(options)) { in populateRadioChooser()
308 for (JSONString jsonOption : new JSONArrayList<JSONString>(options)) { in populateListBox()
315 for (JSONString jsonOption : new JSONArrayList<JSONString>(options)) { in populateListBox()
362 row.put(targetFieldName, new JSONString(date)); in removeSecondsFromDateField()
DJobTable.java11 import com.google.gwt.json.client.JSONString;
51 row.put(HOSTS_SUMMARY, new JSONString(statusCountString)); in preprocessRow()
60 row.put(RESULTS_SUMMARY, new JSONString(resultCountString)); in preprocessRow()
65 row.put("priority", new JSONString(priorityName)); in preprocessRow()
DJobStatusDataSource.java10 import com.google.gwt.json.client.JSONString;
54 queueEntry.put("status", new JSONString(translation)); in handleJsonResult()
60 queueEntry.put("hostname", new JSONString("(hostless)")); in handleJsonResult()
121 entry.put("hostname", new JSONString(label + " (label)")); in addMetaHostRows()
122 entry.put("status", new JSONString(Integer.toString(count) + " " + status)); in addMetaHostRows()
DHostDetailView.java36 import com.google.gwt.json.client.JSONString;
70 row.put("type", new JSONString("Job")); in handleJsonResult()
118 hostFilter.setParameter("start_time", new JSONString(startTime)); in updateFilter()
120 hostFilter.setParameter("end_time", new JSONString(endTime)); in updateFilter()
136 JSONString blank = new JSONString(""); in preprocessRow()
137 JSONString jobId = blank, owner = blank, name = blank; in preprocessRow()
140 jobId = new JSONString(Integer.toString(id)); in preprocessRow()
226 params.put("id", new JSONString(getObjectId())); in fetchData()
232 params.put("hostname", new JSONString(hostname)); in fetchDataByHostname()
DHostSelector.java20 import com.google.gwt.json.client.JSONString;
217 oneTimeObject.put("hostname", new JSONString(hostname)); in processAddByHostname()
218 oneTimeObject.put("platform", new JSONString(ONE_TIME)); in processAddByHostname()
246 metaObject.put("hostname", new JSONString(META_PREFIX + number)); in addMetaHosts()
247 metaObject.put("platform", new JSONString(label)); in addMetaHosts()
249 metaObject.put("status", new JSONString("")); in addMetaHosts()
289 JSONString platform = row.get("platform").isString(); in isOneTimeHost()
DLabelFilter.java8 import com.google.gwt.json.client.JSONString;
54 labels.set(labels.size(), new JSONString(platformString)); in getMatchValue()
DJobOwnerFilter.java13 import com.google.gwt.json.client.JSONString;
82 return new JSONString(userList.getSelectedName()); in getMatchValue()
DHostTableDecorator.java15 import com.google.gwt.json.client.JSONString;
34 username = new JSONString(StaticDataRepository.getRepository().getCurrentUserLogin()); in AclAccessibleFilter()
/external/autotest/frontend/client/src/autotest/afe/create/
DCreateJobViewPresenter.java47 import com.google.gwt.json.client.JSONString;
361 params.put("test_source_build", new JSONString(testSourceBuild)); in getControlFileParams()
378 profilers.set(profilers.size(), new JSONString(profiler.getText())); in getControlFileParams()
764 args.put("name", new JSONString(display.getJobName().getText())); in submitJob()
767 args.put("control_file", new JSONString(display.getControlFile().getText())); in submitJob()
769 new JSONString(controlTypeSelect.getControlType())); in submitJob()
774 args.put("email_list", new JSONString(display.getEmailList().getText())); in submitJob()
781 args.put("reboot_before", new JSONString(rebootBefore.getSelectedChoice())); in submitJob()
782 args.put("reboot_after", new JSONString(rebootAfter.getSelectedChoice())); in submitJob()
787 args.put("pool", new JSONString(display.getPool().getText())); in submitJob()
[all …]
/external/autotest/frontend/client/src/autotest/tko/
DTestSet.java4 import com.google.gwt.json.client.JSONString;
22 condition.put("extra_where", new JSONString(sqlCondition)); in getCondition()
DPreconfigSelector.java12 import com.google.gwt.json.client.JSONString;
65 params.put("name", new JSONString(name)); in loadSelectedPreconfig()
66 params.put("type", new JSONString(preconfigType)); in loadSelectedPreconfig()
DTestGroupDataSource.java9 import com.google.gwt.json.client.JSONString;
76 groupByFields.set(groupByFields.size(), new JSONString(field)); in setGroupColumns()
87 groupByFields.set(groupByFields.size(), new JSONString(field)); in setHeaderGroups()
DSavedQueriesControl.java19 import com.google.gwt.json.client.JSONString;
105 args.put("owner", new JSONString(staticData.getCurrentUserLogin())); in fillQueryList()
149 args.put("name", new JSONString(addQueryDialog.widget.getText())); in onClick()
150 args.put("url_token", new JSONString(CustomHistory.getLastHistoryToken().toString())); in onClick()
DParameterizedField.java7 import com.google.gwt.json.client.JSONString;
93 fieldValueList.set(fieldValueList.size(), new JSONString(getValue())); in addQueryParameters()
/external/autotest/frontend/client/src/autotest/common/table/
DRpcDataSource.java11 import com.google.gwt.json.client.JSONString;
38 sortList.set(sortList.size(), new JSONString(sortSpec.toString())); in getPage()
43 pageParams.put("include_current_job", new JSONString("true")); in getPage()
DMultipleListFilter.java4 import com.google.gwt.json.client.JSONString;
27 new JSONString(getItemText(i))); in getMatchValue()
DSearchFilter.java8 import com.google.gwt.json.client.JSONString;
61 return new JSONString(activeSearch); in getMatchValue()
DListFilter.java7 import com.google.gwt.json.client.JSONString;
65 return new JSONString(getSelectedText()); in getMatchValue()
/external/autotest/frontend/client/src/autotest/common/
DJsonRpcCallback.java6 import com.google.gwt.json.client.JSONString;
31 JSONString tracebackString = errorObject.get("traceback").isString(); in onError()
/external/autotest/frontend/client/src/autotest/moblab/
DConfigSettingsView.java14 import com.google.gwt.json.client.JSONString;
99 configValuePair.set(0, new JSONString(configValue.getKey())); in initialize()
100 configValuePair.set(1, new JSONString(configValue.getValue().getText())); in initialize()

12