Home
last modified time | relevance | path

Searched defs:JsonValue (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/torque/ls/
Djson.h25 struct JsonValue { struct
30 JsonValue() V8_NOEXCEPT = default; argument
32 JsonValue& operator=(const JsonValue& other) = delete; argument
35 JsonValue& operator=(JsonValue&& other) V8_NOEXCEPT = default; argument
37 static JsonValue From(double number) { in From() argument
44 static JsonValue From(JsonObject object) { in From() argument
51 static JsonValue From(bool b) { in From() argument
58 static JsonValue From(const std::string& string) { in From() argument
65 static JsonValue From(JsonArray array) { in From() argument
72 static JsonValue JsonNull() { in JsonNull() argument
[all …]
/third_party/rust/crates/nom/examples/
Djson.rs18 pub enum JsonValue { enum
109 ) -> IResult<&'a str, Vec<JsonValue>, E> { in array()
124 ) -> IResult<&'a str, (&'a str, JsonValue), E> { in key_value() argument
134 ) -> IResult<&'a str, HashMap<String, JsonValue>, E> { in hash() argument
158 ) -> IResult<&'a str, JsonValue, E> { in json_value() argument
175 ) -> IResult<&'a str, JsonValue, E> { in root() argument
Djson_iterator.rs20 pub struct JsonValue<'a, 'b> { struct
25 impl<'a, 'b: 'a> JsonValue<'a, 'b> { impl
/third_party/rust/crates/nom/tests/
Djson.rs18 pub enum JsonValue { enum
97 fn array(input: &str) -> IResult<&str, Vec<JsonValue>> { in array()
105 fn object(input: &str) -> IResult<&str, HashMap<String, JsonValue>> { in object() argument
119 fn json_value(input: &str) -> IResult<&str, JsonValue> { in json_value() argument
132 fn json(input: &str) -> IResult<&str, JsonValue> { in json() argument
/third_party/rust/crates/nom/benchmarks/benches/
Djson.rs23 pub enum JsonValue { enum
102 fn array(input: &str) -> IResult<&str, Vec<JsonValue>> { in array()
110 fn object(input: &str) -> IResult<&str, HashMap<String, JsonValue>> { in object() argument
124 fn json_value(input: &str) -> IResult<&str, JsonValue> { in json_value() argument
137 fn json(input: &str) -> IResult<&str, JsonValue> { in json() argument