HomeSort by relevance Sort by last modified time
    Searched refs:JSONObject (Results 101 - 125 of 267) sorted by null

1 2 3 45 6 7 8 91011

  /external/autotest/frontend/client/src/autotest/tko/
TestLabelManager.java 12 import com.google.gwt.json.client.JSONObject;
45 private JSONObject currentTestCondition;
97 public void handleAddLabels(JSONObject testCondition) {
114 public void handleRemoveLabels(JSONObject testCondition) {
176 JSONObject args = new JSONObject();
195 JSONObject args = Utils.copyJSONObject(currentTestCondition);
214 public void handleInvalidate(JSONObject condition) {
219 public void handleRevalidate(JSONObject condition) {
HeaderField.java 6 import com.google.gwt.json.client.JSONObject;
104 public void addQueryParameters(JSONObject parameters) {}
MachineQualHistogram.java 7 import com.google.gwt.json.client.JSONObject;
24 protected void showDrilldownImpl(JSONObject drilldownParams) {
SpreadsheetDataProcessor.java 14 import com.google.gwt.json.client.JSONObject;
48 private List<JSONObject> counts;
51 public ProcessDataCommand(List<JSONObject> counts) {
130 private void processRow(JSONObject group) {
149 public void refresh(JSONObject condition, Command onFinished) {
160 public void handlePage(List<JSONObject> data) {
192 public void onError(JSONObject errorObject) {
197 JSONObject queryParameters) {
TkoSpreadsheetUtils.java 6 import com.google.gwt.json.client.JSONObject;
13 public static TestSet getTestSet(CellInfo cellInfo, JSONObject condition,
MachineQualHistogramFrontend.java 7 import com.google.gwt.json.client.JSONObject;
36 protected void addAdditionalEmbeddingParams(JSONObject params) {
91 protected JSONObject buildParams() {
105 JSONObject params = new JSONObject();
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
Cookie.java 28 * Convert a web browser cookie specification to a JSONObject and back.
67 * Convert a cookie specification string into a JSONObject. The string
75 * a JSONObject.
77 * @return A JSONObject containing "name", "value", and possibly other
81 public static JSONObject toJSONObject(String string) throws JSONException {
83 JSONObject o = new JSONObject();
109 * Convert a JSONObject into a cookie specification string. The JSONObject
111 * If the JSONObject contains "expires", "domain", "path", or "secure
    [all...]
HTTP.java 30 * Convert an HTTP header to a JSONObject and back.
40 * Convert an HTTP header string into a JSONObject. It can be a request
67 * @return A JSONObject containing the elements and attributes
71 public static JSONObject toJSONObject(String string) throws JSONException {
72 JSONObject o = new JSONObject();
108 * Convert a JSONObject into an HTTP header. A request header must contain
120 * Any other members of the JSONObject will be output as HTTP fields.
122 * @param o A JSONObject
127 public static String toString(JSONObject o) throws JSONException
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonRpcServer.java 25 import org.json.JSONObject;
87 JSONObject request = new JSONObject(data);
118 private void send(PrintWriter writer, JSONObject result, int UID) {
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutPackageItem.java 25 import org.json.JSONObject;
143 public JSONObject dumpCheckin(boolean clear) throws JSONException {
144 final JSONObject result = new JSONObject();
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
CameraMetadataGetter.java 54 import org.json.JSONObject;
138 public JSONObject getCameraInfo(String cameraId) {
139 JSONObject staticMetadata = null;
150 public JSONObject[] getCaptureRequestTemplates(String cameraId) {
151 JSONObject[] templates = new JSONObject[TEMPLATE_IDS.length];
171 return new JSONObject[0];
249 JSONObject ratObj = new JSONObject();
257 JSONObject sizeObj = new JSONObject()
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
JobListView.java 19 import com.google.gwt.json.client.JSONObject;
71 public void addParams(JSONObject params) {
88 public void addParams(JSONObject params) {
100 Set<JSONObject> selectedSet = selectionManager.getSelectedObjects();
107 for(JSONObject jsonObj : selectedSet) {
111 JSONObject params = new JSONObject();
142 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) {
RecurringView.java 19 import com.google.gwt.json.client.JSONObject;
80 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) {
81 JSONObject job = row.get("job").isObject();
191 JSONObject args = new JSONObject();
240 Set<JSONObject> selectedSet = selectionManager.getSelectedObjects();
247 for(JSONObject jsonObj : selectedSet) {
251 JSONObject params = new JSONObject();
256 private void callRemove(JSONObject params)
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ContactsFacade.java 37 import org.json.JSONObject;
129 public List<JSONObject> contactsGet(
131 List<JSONObject> result = new ArrayList<JSONObject>();
157 JSONObject message = new JSONObject();
201 public JSONObject contactsGetById(@RpcParameter(name = "id") Integer id,
203 JSONObject result = null;
218 result = new JSONObject();
257 public List<JSONObject> queryContent
    [all...]
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 24 import org.json.JSONObject;
82 JSONObject jsonObject = new JSONObject();
84 jsonObject.put("id", id);
85 jsonObject.put("month", month);
86 jsonObject.put("date", date);
87 jsonObject.put("hour", hour);
88 jsonObject.put("minute", minute);
92 return jsonObject.toString()
    [all...]
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 24 import org.json.JSONObject;
82 JSONObject jsonObject = new JSONObject();
84 jsonObject.put("id", id);
85 jsonObject.put("month", month);
86 jsonObject.put("date", date);
87 jsonObject.put("hour", hour);
88 jsonObject.put("minute", minute);
92 return jsonObject.toString()
    [all...]
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 21 import org.json.JSONObject;
208 JSONObject response = new JSONObject(content);
209 JSONObject query = response.getJSONObject("query");
211 JSONObject word = random.getJSONObject(0);
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
Alarm.java 24 import org.json.JSONObject;
82 JSONObject jsonObject = new JSONObject();
84 jsonObject.put("id", id);
85 jsonObject.put("month", month);
86 jsonObject.put("date", date);
87 jsonObject.put("hour", hour);
88 jsonObject.put("minute", minute);
92 return jsonObject.toString()
    [all...]
  /frameworks/volley/src/test/java/com/android/volley/toolbox/
JsonRequestCharsetTest.java 25 import org.json.JSONObject;
61 Response<JSONObject> objectResponse = objectRequest.parseNetworkResponse(network);
88 Response<JSONObject> objectResponse = objectRequest.parseNetworkResponse(network);
111 JSONObject json = new JSONObject().put(TEXT_NAME, TEXT_VALUE).put(COPY_NAME, COPY_VALUE);
  /external/autotest/frontend/client/src/autotest/moblab/
ConfigSettingsView.java 12 import com.google.gwt.json.client.JSONObject;
79 JSONObject params = new JSONObject();
80 JSONObject configValues = new JSONObject();
131 JSONObject resultObject = result.isObject();
166 public void rpcCallSubmit(JSONObject params) {
  /device/google/contexthub/util/nanotool/
calibrationfile.cpp 69 json_root_ = reinterpret_cast<JSONObject*>(json.get());
70 LOGD("Parsed JSONObject from file:\n%s",
78 json_root_ = new JSONObject();
84 const sp<JSONObject> CalibrationFile::GetJSONObject() const {
121 LOGD("Saving JSONObject to file (%zd bytes):\n%s", json_str.size(),
  /external/autotest/frontend/client/src/autotest/common/
XhrJsonRpcProxy.java 10 import com.google.gwt.json.client.JSONObject;
28 protected void sendRequest(JSONObject request, final JsonRpcCallback callback) {
82 JSONObject responseObject = responseValue.isObject();
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiNanManagerFacade.java 44 import org.json.JSONObject;
58 private static TlvBufferUtils.TlvConstructor getFilterData(JSONObject j) throws JSONException {
85 private static ConfigRequest getConfigRequest(JSONObject j) throws JSONException {
108 private static PublishData getPublishData(JSONObject j) throws JSONException {
137 private static PublishSettings getPublishSettings(JSONObject j) throws JSONException {
157 private static SubscribeData getSubscribeData(JSONObject j) throws JSONException {
186 private static SubscribeSettings getSubscribeSettings(JSONObject j) throws JSONException {
230 public void wifiNanEnable(@RpcParameter(name = "nanConfig") JSONObject nanConfig)
241 public void wifiNanPublish(@RpcParameter(name = "publishData") JSONObject publishData,
242 @RpcParameter(name = "publishSettings") JSONObject publishSettings
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
StatementParser.java 23 import org.json.JSONObject;
85 JSONObject statement = JsonParser.parse(reader);
90 JSONObject targetObject = statement.optJSONObject(Utils.ASSET_DESCRIPTOR_FIELD_TARGET);
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapBmessage.java 22 import org.json.JSONObject;
156 JSONObject json = new JSONObject();

Completed in 1889 milliseconds

1 2 3 45 6 7 8 91011