Home
last modified time | relevance | path

Searched refs:fetch_flow_collection_start (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/python/pyyaml/lib/yaml/
Dscanner.py425 self.fetch_flow_collection_start(FlowSequenceStartToken)
428 self.fetch_flow_collection_start(FlowMappingStartToken)
430 def fetch_flow_collection_start(self, TokenClass): member in Scanner
/aosp_15_r20/external/rust/android-crates-io/crates/yaml-rust/src/
Dscanner.rs393 '[' => self.fetch_flow_collection_start(TokenType::FlowSequenceStart), in fetch_next_token()
394 '{' => self.fetch_flow_collection_start(TokenType::FlowMappingStart), in fetch_next_token()
965 fn fetch_flow_collection_start(&mut self, tok: TokenType) -> ScanResult { in fetch_flow_collection_start() method