Home
last modified time | relevance | path

Searched refs:parse_key (Results 1 – 14 of 14) sorted by relevance

/external/rust/android-crates-io/crates/toml_edit/tests/testsuite/
Dedit.rs8 macro_rules! parse_key { macro
919 (parse_key!("a"), 1), in test_inline_table_append()
920 (parse_key!("b"), 2), in test_inline_table_append()
921 (parse_key!("c"), 3), in test_inline_table_append()
926 (parse_key!("c"), 4), in test_inline_table_append()
927 (parse_key!("d"), 5), in test_inline_table_append()
928 (parse_key!("e"), 6), in test_inline_table_append()
/external/cronet/stable/third_party/boringssl/src/crypto/pem/
Dpem_info.cc148 static enum parse_result_t parse_key(X509_INFO *info, const uint8_t *data, in parse_key() function
207 parse_function = parse_key; in STACK_OF()
210 parse_function = parse_key; in STACK_OF()
213 parse_function = parse_key; in STACK_OF()
/external/boringssl/src/crypto/pem/
Dpem_info.cc102 static enum parse_result_t parse_key(X509_INFO *info, const uint8_t *data, in parse_key() function
161 parse_function = parse_key; in STACK_OF()
164 parse_function = parse_key; in STACK_OF()
167 parse_function = parse_key; in STACK_OF()
/external/cronet/tot/third_party/boringssl/src/crypto/pem/
Dpem_info.cc148 static enum parse_result_t parse_key(X509_INFO *info, const uint8_t *data, in parse_key() function
207 parse_function = parse_key; in STACK_OF()
210 parse_function = parse_key; in STACK_OF()
213 parse_function = parse_key; in STACK_OF()
/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/pem/
Dpem_info.c122 static enum parse_result_t parse_key(X509_INFO *info, const uint8_t *data, in parse_key() function
184 parse_function = parse_key; in STACK_OF()
187 parse_function = parse_key; in STACK_OF()
190 parse_function = parse_key; in STACK_OF()
/external/ltp/testcases/kernel/input/
Dinput06.c100 static int parse_key(struct input_event *iev) in parse_key() function
148 ret = parse_key(iev); in check_events()
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/serde_json-1.0.133/tests/ui/
Dparse_key.stderr2 --> tests/ui/parse_key.rs:4:16
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/serde_json-1.0.133/tests/ui/
Dparse_key.stderr2 --> tests/ui/parse_key.rs:4:16
/external/rust/android-crates-io/crates/serde_json/tests/ui/
Dparse_key.stderr2 --> tests/ui/parse_key.rs:4:16
/external/python/cpython3/Lib/tomllib/
D_parser.py287 pos, key = parse_key(src, pos)
305 pos, key = parse_key(src, pos)
360 pos, key = parse_key(src, pos)
373 def parse_key(src: str, pos: Pos) -> tuple[Pos, Key]: function
/external/rust/android-crates-io/crates/axum/src/extract/path/
Dde.rs263 macro_rules! parse_key { macro
277 parse_key!(deserialize_identifier);
278 parse_key!(deserialize_str);
279 parse_key!(deserialize_string);
/external/rust/android-crates-io/crates/protobuf-json-mapping/src/
Dparse.rs482 mut parse_key: Fk, in read_map()
502 let k = parse_key(self, key_string)?; in read_map()
511 fn parse_key(&self, key: String, t: &RuntimeType) -> ParseResultWithoutLoc<ReflectValueBox> { in parse_key() method
538 |ss, s| ss.parse_key(s, kt), in merge_map_field()
/external/rust/android-crates-io/crates/toml_edit/src/parser/
Dmod.rs35 pub(crate) fn parse_key(raw: &str) -> Result<crate::Key, TomlError> { in parse_key() function
/external/rust/android-crates-io/crates/toml_edit/src/
Dkey.rs174 let mut key = crate::parser::parse_key(s)?; in try_parse_simple()