Lines Matching refs:is_null
107 if self.is_null() { in set_color()
127 if self.is_null() { in get_color()
135 if self.is_null() { in is_red_color()
143 if self.is_null() { in is_black_color()
162 while !temp.left().is_null() { in min_node()
171 while !temp.right().is_null() { in max_node()
179 if !self.right().is_null() { in next()
184 if temp.parent().is_null() { in next()
197 if !self.left().is_null() { in prev()
202 if temp.parent().is_null() { in prev()
215 if self.is_null() { in set_parent()
223 if self.is_null() { in set_left()
231 if self.is_null() { in set_right()
239 if self.is_null() { in parent()
247 if self.is_null() { in left()
255 if self.is_null() { in right()
267 fn is_null(&self) -> bool { in is_null() method
268 self.0.is_null() in is_null()
275 if !self.left().is_null() { in deep_clone()
279 if !self.right().is_null() { in deep_clone()
379 if node.is_null() { in tree_print()
402 if self.root.is_null() { in print_tree()
625 if self.head.is_null() { in next()
653 if self.tail.is_null() { in next_back()
708 if self.head.is_null() { in next()
784 if self.head.is_null() { in next()
823 let iter = if self.root.is_null() { in into_iter()
859 self.root.is_null() in is_empty()
881 if !temp.left().is_null() { in left_rotate()
916 if !temp.right().is_null() { in right_rotate()
948 if node.is_null() { in replace_or_insert()
972 if !uncle.is_null() && uncle.is_red_color() { in insert_fixup()
995 if !uncle.is_null() && uncle.is_red_color() { in insert_fixup()
1027 while !x.is_null() { in insert()
1040 if y.is_null() { in insert()
1061 if self.root.is_null() { in find_node()
1072 if next.is_null() { in find_node()
1083 if self.root.is_null() { in first_child()
1087 while !temp.left().is_null() { in first_child()
1096 if self.root.is_null() { in last_child()
1100 while !temp.right().is_null() { in last_child()
1110 if first.is_null() { in get_first()
1119 if last.is_null() { in get_last()
1128 if first.is_null() { in pop_first()
1137 if last.is_null() { in pop_last()
1146 if first.is_null() { in get_first_mut()
1155 if last.is_null() { in get_last_mut()
1164 if node.is_null() { in get()
1174 if node.is_null() { in get_mut()
1184 if node.is_null() { in contains_key()
1192 if !current.is_null() { in clear_recurse()
1217 if node.is_null() { in remove()
1303 if !node.left().is_null() && !node.right().is_null() { in delete()
1325 if !child.is_null() { in delete()
1346 if !node.left().is_null() { in delete()
1354 if !child.is_null() { in delete()