Home
last modified time | relevance | path

Searched refs:compute_child_layout (Results 1 – 6 of 6) sorted by relevance

/external/rust/android-crates-io/crates/taffy/src/tree/
Dtraits.rs187 fn compute_child_layout(&mut self, node_id: NodeId, inputs: LayoutInput) -> LayoutOutput; in compute_child_layout() method
323 self.compute_child_layout( in measure_child_size()
350 self.compute_child_layout( in perform_child_layout()
Dtaffy_tree.rs340 fn compute_child_layout(&mut self, node: NodeId, inputs: LayoutInput) -> LayoutOutput { in compute_child_layout() function
/external/rust/android-crates-io/crates/taffy/examples/
Dcustom_tree_owned_partial.rs149 …fn compute_child_layout(&mut self, node_id: NodeId, inputs: taffy::tree::LayoutInput) -> taffy::tr… in compute_child_layout() method
Dcustom_tree_owned_unsafe.rs146 …fn compute_child_layout(&mut self, node_id: NodeId, inputs: taffy::tree::LayoutInput) -> taffy::tr… in compute_child_layout() method
Dcustom_tree_vec.rs155 …fn compute_child_layout(&mut self, node_id: NodeId, inputs: taffy::tree::LayoutInput) -> taffy::tr… in compute_child_layout() method
/external/rust/android-crates-io/crates/taffy/src/compute/
Dmod.rs269 tree.compute_child_layout(child_id, LayoutInput::HIDDEN); in compute_hidden_layout()