/aosp_15_r20/external/rust/android-crates-io/crates/config/src/file/format/ |
D | mod.rs | 27 #[cfg(feature = "json5")] 28 mod json5; module 55 /// JSON5 (parsed with json5) 56 #[cfg(feature = "json5")] 57 Json5, enumerator 81 #[cfg(feature = "json5")] 82 formats.insert(FileFormat::Json5, vec!["json5"]); 117 #[cfg(feature = "json5")] in parse() 118 FileFormat::Json5 => json5::parse(uri, text), in parse() 126 not(feature = "json5"), in parse()
|
/aosp_15_r20/external/rust/android-crates-io/crates/config/ |
D | README.md | 14 - Read from [JSON], [TOML], [YAML], [INI], [RON], [JSON5] files 24 [JSON5]: https://github.com/callum-oakley/json5-rs 43 - `json5` - Adds support for reading JSON5 files
|
D | Cargo.toml | 43 package = "json5" 119 "json5", 123 json5 = ["json5_rs"] qkey
|
D | .cargo-checksum.json | 1 …json5.rs":"fa037aa2d2a94012bcdc3f6649072304ddab12ddef6f18284f85c37db6b41dac","src/file/format/mod.…
|
/aosp_15_r20/frameworks/base/cmds/uinput/ |
H A D | README.md | 31 ```json5 114 ```json5 189 ```json5 250 ```json5 280 ```json5 290 ```json5
|
/aosp_15_r20/external/skia/tools/gpu/gl/interface/ |
H A D | BUILD.bazel | 11 deps = ["@com_github_flynn_json5//:json5"], 33 interface_json = os.path.abspath("$(execpath interface.json5)") 54 ":interface.json5", 63 ":interface.json5",
|
H A D | gen_interface.go | 8 // interface.json5 file. 20 "github.com/flynn/json5" 25 inTable = flag.String("in_table", "./interface.json5", "The JSON5 table to read in") 451 err = json5.Unmarshal(b, &features)
|
H A D | Makefile | 2 go run *.go --in_table "./interface.json5" --out_dir "../../../../src/gpu/ganesh/gl" 5 go run *.go --in_table "./interface.json5" --out_dir "../../../../src/gpu/ganesh/gl" --dryrun
|
/aosp_15_r20/external/rust/android-crates-io/crates/config/tests/ |
D | file_json5.rs | 1 #![cfg(feature = "json5")] 32 .add_source(File::new("tests/Settings", FileFormat::Json5)) in make() 78 .add_source(File::new("tests/Settings-invalid", FileFormat::Json5)) in test_error_parse() 81 let path_with_extension: PathBuf = ["tests", "Settings-invalid.json5"].iter().collect(); in test_error_parse()
|
/aosp_15_r20/external/json-schema-validator/src/test/java/com/networknt/schema/ |
H A D | Issue575Test.java | 39 String json5 = "{\"testDateTime\":\"2022-05-18T08:27:53+02:00\"}"; // Africa/Cairo in validTimeZoneOffsets() local 58 Arguments.of(json5), in validTimeZoneOffsets() 96 String json5 = "{\"testDateTime\":\"Orlando\"}"; in invalidTimeRepresentations() local 109 Arguments.of(json5), in invalidTimeRepresentations()
|
/aosp_15_r20/external/rust/android-crates-io/crates/pest_derive/ |
D | _README.md | 181 * [json5-rs](https://github.com/callum-oakley/json5-rs) 199 * [json5-nodes](https://github.com/jlyonsmith/json5-nodes)
|
/aosp_15_r20/external/rust/android-crates-io/crates/pest_generator/ |
D | _README.md | 181 * [json5-rs](https://github.com/callum-oakley/json5-rs) 199 * [json5-nodes](https://github.com/jlyonsmith/json5-nodes)
|
/aosp_15_r20/external/rust/android-crates-io/crates/pest/ |
D | _README.md | 181 * [json5-rs](https://github.com/callum-oakley/json5-rs) 199 * [json5-nodes](https://github.com/jlyonsmith/json5-nodes)
|
/aosp_15_r20/external/rust/android-crates-io/crates/pest_meta/ |
D | _README.md | 181 * [json5-rs](https://github.com/callum-oakley/json5-rs) 199 * [json5-nodes](https://github.com/jlyonsmith/json5-nodes)
|
/aosp_15_r20/external/pigweed/pw_ide/py/pw_ide/ |
H A D | editors.py | 63 import json5 # type: ignore 115 """JSON5 file format. 128 return json5.load(*args, **kwargs) 136 json5.dump(data, *args, **kwargs)
|
/aosp_15_r20/external/kotlinx.serialization/formats/ |
H A D | README.md | 36 …JSON5 | [xn32/json5k](https://github.com/xn32/json5k) <br> `io.github.xn32:json…
|
/aosp_15_r20/external/pytorch/tools/ |
H A D | vscode_settings.py | 8 import json5 as json # type: ignore[import] 50 "Try `pip install json5` to install an extended JSON parser."
|
/aosp_15_r20/external/cronet/build/config/siso/ |
H A D | blink_all.star | 13 "third_party/pyjson5/src/json5:pylib": { 60 "third_party/pyjson5/src/json5:pylib",
|
/aosp_15_r20/external/skia/experimental/tskit/ |
H A D | package-lock.json | 213 "node_modules/@types/json5": { 215 "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 1841 "node_modules/json5": { 1843 "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 1850 "json5": "lib/cli.js" string 2811 "@types/json5": "^0.0.29", 2812 "json5": "^1.0.1", string 3134 "@types/json5": { 3136 "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 4342 "json5": { object [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/serde/src/ |
D | lib.rs | 46 //! - [JSON5], a superset of JSON including some productions from ES5. 78 //! [JSON5]: https://github.com/callum-oakley/json5-rs
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/serde-1.0.197/src/ |
H A D | lib.rs | 46 //! - [JSON5], a superset of JSON including some productions from ES5. 78 //! [JSON5]: https://github.com/callum-oakley/json5-rs
|
/aosp_15_r20/external/skia/bazel/gcs_mirror/ |
H A D | gcs_mirror.go | 28 "github.com/flynn/json5" 96 if err := json5.Unmarshal([]byte(cleaned), &entries); err != nil {
|
/aosp_15_r20/frameworks/base/packages/SystemUI/scripts/token_alignment/ |
H A D | package-lock.json | 205 "node_modules/@types/json5": { 207 "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 2239 "node_modules/json5": { 2241 "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2248 "json5": "lib/cli.js" string 3051 "@types/json5": "^0.0.29", 3052 "json5": "^1.0.1", string
|
/aosp_15_r20/external/pigweed/pw_web/webconsole/ |
H A D | package-lock.json | 748 "node_modules/@types/json5": { 2739 "node_modules/json5": { 2747 "json5": "lib/cli.js" string 3778 "@types/json5": "^0.0.29", 3779 "json5": "^1.0.2", string 4428 "@types/json5": { 5708 "json5": { object 6296 "@types/json5": "^0.0.29", 6297 "json5": "^1.0.2", string
|
/aosp_15_r20/external/skia/modules/canvaskit/ |
H A D | package-lock.json | 51 "json5": "^2.1.2", string 1504 "node_modules/json5": { 1506 "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 1510 "json5": "lib/cli.js" string 2446 "json5": "^2.1.2", string 3582 "json5": { object 3584 "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|