Home
last modified time | relevance | path

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

/external/rust/crates/bindgen/src/
Dclang.rs651 pub fn offset_of_field(&self) -> Result<usize, LayoutError> { in offset_of_field() argument
655 Err(LayoutError::from(offset as i32)) in offset_of_field()
932 pub enum LayoutError { enum
948 impl ::std::convert::From<i32> for LayoutError { implementation
950 use self::LayoutError::*; in from()
1070 ) -> Result<usize, LayoutError> { in fallible_size() argument
1073 Err(LayoutError::from(val as i32)) in fallible_size()
1094 ) -> Result<usize, LayoutError> { in fallible_align() argument
1097 Err(LayoutError::from(val as i32)) in fallible_align()
1108 ) -> Result<crate::ir::layout::Layout, LayoutError> { in fallible_layout() argument
/external/rust/crates/plotters/src/drawing/
Darea.rs143 LayoutError, enumerator
153 DrawingAreaErrorKind::LayoutError => write!(fmt, "Bad layout"), in fmt()