HomeSort by relevance Sort by last modified time
    Searched refs:json (Results 351 - 375 of 1526) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/tracing/bin/
run_metric 7 import json
35 print json.dumps(results, indent=2, sort_keys=True, separators=(',', ': '))
  /external/chromium-trace/catapult/tracing/tracing_build/
tracing_dev_server_config.py 5 import json
27 tests_as_json = json.dumps(tests)
28 self.response.content_type = 'application/json'
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
ParticleControllerComponent.java 9 import com.badlogic.gdx.utils.Json;
17 public abstract class ParticleControllerComponent implements Disposable, Json.Serializable, ResourceData.Configurable {
53 public void write (Json json) {}
55 public void read (Json json, JsonValue jsonData) {}
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/configuration/
ConfigParser.py 30 import json
40 # Parsing of Json test file
42 self.__conf = json.load(testFile)
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
TimePickerDialogTask.java 24 import org.json.JSONException;
25 import org.json.JSONObject;
  /external/v8/test/mjsunit/
json-replacer-number-wrapper-tostring.js 5 // http://ecma-international.org/ecma-262/6.0/#sec-json.stringify
19 JSON.stringify('', [num]);
  /external/v8/tools/
isolate_driver.py 12 import json
24 Dumps it as JSON to |output| file.
27 json.dump({
53 # isolated.py invocation later, store it in *.isolated.gen.json file.
55 prepare_isolate_call(args[1:], args[isolated] + '.gen.json')
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
JsonArrayRequest.java 25 import org.json.JSONArray;
26 import org.json.JSONException;
37 * @param url URL to fetch the JSON from
38 * @param listener Listener to receive the JSON response
48 * @param url URL to fetch the JSON from
51 * @param listener Listener to receive the JSON response
JsonObjectRequest.java 25 import org.json.JSONException;
26 import org.json.JSONObject;
39 * @param url URL to fetch the JSON from
42 * @param listener Listener to receive the JSON response
  /frameworks/volley/src/test/java/com/android/volley/toolbox/
JsonRequestTest.java 20 import org.json.JSONArray;
21 import org.json.JSONObject;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 38 import org.json.JSONException;
39 import org.json.JSONObject;
757 final JSONObject json = toJson(); local
758 if (json != null) {
759 return json.toString();
766 final JSONObject json = new JSONObject(); local
767 json.putOpt(AccountColumns.DISPLAY_NAME, mDisplayName);
768 json.put(AccountColumns.EMAIL_ADDRESS, mEmailAddress);
769 json.put(AccountColumns.SYNC_LOOKBACK, mSyncLookback);
770 json.put(AccountColumns.SYNC_INTERVAL, mSyncInterval)
791 final JSONObject json = new JSONObject(jsonString); local
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 30 const char json[] = " { \"hello\" : \"world\", \"t\" : true , \"f\" : false, \"n\": null, \"i\":123, \"pi\": 3.1416, \"a\":[1, 2, 3, 4] } "; local
34 StringStream ss(json);
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
structtag.go 25 x int `json:"xx"` // ERROR "struct field x has json tag but is not exported"
28 A int `json:"aa" xml:"bb"`
35 unexp `is:"embedded,notexported" json:"unexp"` // OK for now, see issue 7363
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
structtag.go 25 x int `json:"xx"` // ERROR "struct field x has json tag but is not exported"
28 A int `json:"aa" xml:"bb"`
35 unexp `is:"embedded,notexported" json:"unexp"` // OK for now, see issue 7363
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_dump.py 2 from json.tests import PyTest, CTest
8 self.json.dump({}, sio)
test_indent.py 3 from json.tests import PyTest, CTest
50 self.json.dump(h, sio, indent=indent)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_dump.py 2 from json.tests import PyTest, CTest
8 self.json.dump({}, sio)
test_indent.py 3 from json.tests import PyTest, CTest
50 self.json.dump(h, sio, indent=indent)
  /system/firewalld/
Android.mk 39 dbus_bindings/dbus-service-config.json \
48 dbus_bindings/dbus-service-config.json \
  /system/webservd/libwebserv/
response.h 60 // Reply with JSON object. The content type will be "application/json".
61 virtual void ReplyWithJson(int status_code, const base::Value* json) = 0;
63 // Special form for JSON response for simple objects that have a flat
66 int status_code, const std::map<std::string, std::string>& json) = 0;
response_impl.h 46 void ReplyWithJson(int status_code, const base::Value* json) override;
48 const std::map<std::string, std::string>& json) override;
  /system/webservd/webservd/
Android.mk 42 dbus_bindings/dbus-service-config.json \
78 dbus_bindings/dbus-service-config.json \
  /tools/test/connectivity/acts/framework/acts/
signals.py 21 import json
48 json.dumps(extras)
51 raise TestSignalError(("Extras must be json serializable. %s "
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeListAdapter.java 30 import org.json.JSONArray;
31 import org.json.JSONException;
32 import org.json.JSONObject;
64 private List<Item> parseJson(JSONObject json) {
67 JSONArray items = json.getJSONArray(Constants.RECIPE_FIELD_LIST);
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeListAdapter.java 30 import org.json.JSONArray;
31 import org.json.JSONException;
32 import org.json.JSONObject;
64 private List<Item> parseJson(JSONObject json) {
67 JSONArray items = json.getJSONArray(Constants.RECIPE_FIELD_LIST);

Completed in 1142 milliseconds

<<11121314151617181920>>