Home
last modified time | relevance | path

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

/external/skia/experimental/rust_png/ffi/
DFFI.rs30 enum DecodingResult { enum
107 fn err(self: &ResultOfReader) -> DecodingResult; in err()
159 fn next_frame_info(self: &mut Reader) -> DecodingResult; in next_frame_info()
163 ) -> DecodingResult; in next_interlaced_row()
245 impl From<Option<&png::DecodingError>> for ffi::DecodingResult { implementation
334 fn err(&self) -> ffi::DecodingResult { in err()
628 fn next_frame_info(&mut self) -> ffi::DecodingResult { in next_frame_info()
636 fn next_interlaced_row<'a>(&'a mut self, row: &mut &'a [u8]) -> ffi::DecodingResult { in next_interlaced_row()
/external/pigweed/pw_tokenizer/
Ddetokenize.cc124 using DecodingResult = std::pair<DecodedFormatString, uint32_t>; typedef