Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/pyyaml/lib/yaml/
Dscanner.py635 self.fetch_block_scalar(style='|')
638 self.fetch_block_scalar(style='>')
640 def fetch_block_scalar(self, style): member in Scanner
/aosp_15_r20/external/rust/android-crates-io/crates/yaml-rust/src/
Dscanner.rs412 '|' if self.flow_level == 0 => self.fetch_block_scalar(true), in fetch_next_token()
414 '>' if self.flow_level == 0 => self.fetch_block_scalar(false), in fetch_next_token()
1066 fn fetch_block_scalar(&mut self, literal: bool) -> ScanResult { in fetch_block_scalar() method