Home
last modified time | relevance | path

Searched defs:DecodingResult (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/skia/experimental/rust_png/ffi/
H A DFFI.rs29 enum DecodingResult { enum
86 fn err(self: &ResultOfReader) -> DecodingResult; in err()
136 fn next_frame_info(self: &mut Reader) -> DecodingResult; in next_frame_info()
140 ) -> DecodingResult; in next_interlaced_row()
212 impl From<Option<&png::DecodingError>> for ffi::DecodingResult { implementation
275 fn err(&self) -> ffi::DecodingResult { in err()
548 fn next_frame_info(&mut self) -> ffi::DecodingResult { in next_frame_info()
557 fn next_interlaced_row<'a>(&'a mut self, row: &mut &'a [u8]) -> ffi::DecodingResult { in next_interlaced_row()
/aosp_15_r20/external/pigweed/pw_tokenizer/
H A Ddetokenize.cc121 using DecodingResult = std::pair<DecodedFormatString, uint32_t>; typedef