5 writes to _root
System.Speech (5)
Internal\RBList.cs (5)
40
_root
= FindRoot(node);
63
_root
= FindRoot(_root.Left);
67
_root
= FindRoot(_root.Right);
71
_root
= null;
76
_root
= FindRoot(_root);
22 references to _root
System.Speech (22)
Internal\RBList.cs (22)
30
if (
_root
!= null &&
_root
._inEnumaration)
37
InsertNode(
_root
, node);
46
if (
_root
!= null &&
_root
._inEnumaration)
51
if (!TryFindItem(
_root
, key, out TreeNode? node))
59
if (nodeRemoved ==
_root
)
61
if (
_root
.Left != null)
63
_root = FindRoot(
_root
.Left);
65
else if (
_root
.Right != null)
67
_root = FindRoot(
_root
.Right);
76
_root = FindRoot(
_root
);
82
return new MyEnumerator(
_root
);
93
return
_root
== null;
101
return
_root
!= null &&
_root
.Left == null &&
_root
.Right == null;
109
return
_root
!= null && (
_root
.Right != null ||
_root
.Left != null);
117
if (
_root
== null)
123
return FindMinSubTree(
_root
).Key;