Home
last modified time | relevance | path

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

/external/rust/android-crates-io/crates/taffy/src/compute/
Dmod.rs55 use crate::{BoxSizing, CacheTree, MaybeMath, MaybeResolve};
156 pub fn compute_cached_layout<Tree: CacheTree + ?Sized, ComputeFunction>( in compute_cached_layout()
261 pub fn compute_hidden_layout(tree: &mut (impl LayoutPartialTree + CacheTree), node: NodeId) -> Layo… in compute_hidden_layout() argument
/external/rust/android-crates-io/crates/taffy/examples/
Dcustom_tree_owned_partial.rs16 prelude::*, Cache, CacheTree, Layout, Style,
173 impl CacheTree for Node {
Dcustom_tree_owned_unsafe.rs11 prelude::*, round_layout, CacheTree,
170 impl CacheTree for StatelessLayoutTree {
Dcustom_tree_vec.rs10 prelude::*, round_layout, Cache, CacheTree,
179 impl CacheTree for Tree {
/external/rust/android-crates-io/crates/taffy/src/tree/
Dtraits.rs193 pub trait CacheTree { interface
Dtaffy_tree.rs20 use crate::CacheTree;
207 impl<NodeContext> CacheTree for TaffyTree<NodeContext> {
390 impl<NodeContext, MeasureFunction> CacheTree for TaffyView<'_, NodeContext, MeasureFunction>
920 pub(crate) fn as_layout_tree(&mut self) -> impl LayoutPartialTree + CacheTree + '_ { in as_layout_tree()