/external/rust/android-crates-io/crates/petgraph/src/ |
D | data.rs | 17 fn node_weight(self: &Self, id: Self::NodeId) -> Option<&Self::NodeWeight>; 86 fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight> { in node_weight() function 87 self.node_weight(id) in node_weight() 113 fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight> { in node_weight() function 114 self.node_weight(id) in node_weight()
|
D | quickcheck.rs | 136 if gr.node_weight(ni).is_some() { in arbitrary()
|
D | graphmap.rs | 627 *graph.node_weight(a).unwrap(), in from_graph() 628 *graph.node_weight(b).unwrap(), in from_graph()
|
D | adj.rs | 595 fn node_weight(&self, n: Self::NodeId) -> Option<&()> { in node_weight() method
|
D | matrix_graph.rs | 405 pub fn node_weight(&self, a: NodeIndex<Ix>) -> &N { in node_weight() method 1053 self.node_weight(ax) in index()
|
/external/freetype/src/cache/ |
D | ftccache.c | 292 manager->cur_weight -= cache->clazz.node_weight( node, cache ); in ftc_node_destroy() 371 manager->cur_weight -= cache->clazz.node_weight( node, cache ); in ftc_cache_done() 410 manager->cur_weight += cache->clazz.node_weight( node, cache ); in ftc_cache_add() 587 manager->cur_weight -= cache->clazz.node_weight( node, cache ); in FTC_Cache_RemoveFaceID()
|
D | ftccache.h | 131 FTC_Node_WeightFunc node_weight; member
|
D | ftcmanag.c | 496 weight += cache->clazz.node_weight( node, cache ); in FTC_Manager_Check()
|
/external/executorch/backends/xnnpack/operators/ |
D | node_visitor.py | 61 node_weight: int 63 def __init__(self, node_input: int, node_weight: int, node_bias=None): 65 self.node_weight = node_weight 613 weight_node = get_input_node(node, input_type_map.node_weight)
|
D | op_addmm.py | 41 input_type_map = InputTypeToIndex(node_input=1, node_weight=2, node_bias=0)
|
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/stable_graph/ |
D | mod.rs | 298 let node_weight = self.g.nodes.get_mut(a.index())?.weight.take()?; in remove_node() localVariable 324 Some(node_weight) in remove_node() 480 pub fn node_weight(&self, a: NodeIndex<Ix>) -> Option<&N> { in node_weight() function 927 if let Some(node_weight) = node.weight.as_ref() { in filter_map() 928 if let Some(new_weight) = node_map(NodeIndex::new(i), node_weight) { in filter_map() 1020 if let Some(Some(_)) = self.g.node_weight(node_ix) { in ensure_node_exists() 1168 self.node_weight(index).unwrap() in index()
|
/external/rust/android-crates-io/crates/petgraph/src/visit/ |
D | filter.rs | 330 fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight> { in node_weight() function 332 self.0.node_weight(id) in node_weight()
|
/external/rust/android-crates-io/crates/petgraph/src/algo/ |
D | isomorphism.rs | 184 if let (Some(x), Some(y)) = (g0.node_weight(n0), g1.node_weight(n1)) { in eq()
|
/external/rust/android-crates-io/crates/petgraph/tests/ |
D | quickcheck.rs | 1088 assert!(gr2.node_weight(node_index(i)).is_none());
|
D | graph.rs | 415 println!("Visit {:?} = {:?}", no, g.node_weight(no)); in dijk()
|
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/ |
D | mod.rs | 541 pub fn node_weight(&self, a: NodeIndex<Ix>) -> Option<&N> { in node_weight() function
|