/external/autotest/frontend/client/src/autotest/moblab/rpc/ |
D | MoblabRpcHelper.java | 6 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 …]
|
D | CloudStorageInfo.java | 5 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()
|
D | OperationStatus.java | 5 import com.google.gwt.json.client.JSONString; 55 object.put(JSON_FIELD_STATUS_DETAILS, new JSONString(details)); in toJson()
|
D | NetworkInfo.java | 6 import com.google.gwt.json.client.JSONString; 70 serverIpsArray.set(index, new JSONString(serverIps[index])); in toJson()
|
/external/autotest/frontend/client/src/autotest/afe/ |
D | HostDataSource.java | 10 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()
|
D | AfeUtils.java | 17 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()
|
D | JobTable.java | 11 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()
|
D | JobStatusDataSource.java | 10 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()
|
D | HostDetailView.java | 36 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()
|
D | HostSelector.java | 20 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()
|
D | LabelFilter.java | 8 import com.google.gwt.json.client.JSONString; 54 labels.set(labels.size(), new JSONString(platformString)); in getMatchValue()
|
D | JobOwnerFilter.java | 13 import com.google.gwt.json.client.JSONString; 82 return new JSONString(userList.getSelectedName()); in getMatchValue()
|
D | HostTableDecorator.java | 15 import com.google.gwt.json.client.JSONString; 34 username = new JSONString(StaticDataRepository.getRepository().getCurrentUserLogin()); in AclAccessibleFilter()
|
/external/autotest/frontend/client/src/autotest/afe/create/ |
D | CreateJobViewPresenter.java | 47 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/ |
D | TestSet.java | 4 import com.google.gwt.json.client.JSONString; 22 condition.put("extra_where", new JSONString(sqlCondition)); in getCondition()
|
D | PreconfigSelector.java | 12 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()
|
D | TestGroupDataSource.java | 9 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()
|
D | SavedQueriesControl.java | 19 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()
|
D | ParameterizedField.java | 7 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/ |
D | RpcDataSource.java | 11 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()
|
D | MultipleListFilter.java | 4 import com.google.gwt.json.client.JSONString; 27 new JSONString(getItemText(i))); in getMatchValue()
|
D | SearchFilter.java | 8 import com.google.gwt.json.client.JSONString; 61 return new JSONString(activeSearch); in getMatchValue()
|
D | ListFilter.java | 7 import com.google.gwt.json.client.JSONString; 65 return new JSONString(getSelectedText()); in getMatchValue()
|
/external/autotest/frontend/client/src/autotest/common/ |
D | JsonRpcCallback.java | 6 import com.google.gwt.json.client.JSONString; 31 JSONString tracebackString = errorObject.get("traceback").isString(); in onError()
|
/external/autotest/frontend/client/src/autotest/moblab/ |
D | ConfigSettingsView.java | 14 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()
|