53 references to Right
System.Data (53)
fx\src\data\System\Data\RbTree.cs (47)
379
if (
Right
(x_id) != NIL)
380
return Minimum (
Right
(x_id)); //return left most node in right sub-tree.
383
while (y_id != NIL && x_id ==
Right
(y_id))
441
int y_id =
Right
(x_id);
472
SetSubTreeSize(x_id, (SubTreeSize(Left(x_id)) + SubTreeSize(
Right
(x_id)) + (Next(x_id) == NIL ? 1 : SubTreeSize(Next(x_id)))));
476
SetSubTreeSize(y_id, (SubTreeSize(Left(y_id)) + SubTreeSize(
Right
(y_id)) + (Next(y_id) == NIL ? 1 : SubTreeSize(Next(y_id)))));
491
SetLeft (x_id,
Right
(y_id)); // Turn y's right subtree into x's left subtree
492
if (
Right
(y_id) != NIL) {
493
SetParent (
Right
(y_id), x_id);
517
SetSubTreeSize(x_id, (SubTreeSize(Left(x_id)) + SubTreeSize(
Right
(x_id)) + (Next(x_id) == NIL ? 1 : SubTreeSize(Next(x_id)))));
521
SetSubTreeSize(y_id, (SubTreeSize(Left(y_id)) + SubTreeSize(
Right
(y_id)) + (Next(y_id) == NIL ? 1 : SubTreeSize(Next(y_id)))));
578
z_id =
Right
(z_id);
604
SetRight(newMainTreeNodeId,
Right
(z_id));
609
else if (
Right
(Parent(z_id))==z_id)
615
if (
Right
(z_id) != NIL)
616
SetParent(
Right
(z_id), newMainTreeNodeId);
660
z_id =
Right
(z_id);
716
y_id =
Right
(Parent (Parent (x_id))); // x.parent.parent.right;
726
if (x_id ==
Right
(Parent (x_id)))
857
if (Left (z_id) == NIL ||
Right
(z_id) == NIL)
865
x_id =
Right
(y_id);
946
SetRight(satelliteRootId,
Right
(mNode));
964
if (
Right
(mNode) != NIL) {
965
SetParent(
Right
(mNode), satelliteRootId);
994
SetRight (y_id,
Right
(z_id));
1015
if (
Right
(z_id) != NIL) {
1016
SetParent(
Right
(z_id), y_id);
1062
w_id = (x_id == NIL) ?
Right
(px_id) :
Right
(Parent (x_id)); // w is x's right sibling and it cannot be NIL
1073
w_id = (x_id == NIL) ?
Right
(px_id) :
Right
(Parent (x_id));
1076
if (color (Left (w_id)) == NodeColor.black && color (
Right
(w_id)) == NodeColor.black)
1084
if (color (
Right
(w_id)) == NodeColor.black)
1089
w_id = (x_id == NIL) ?
Right
(px_id) :
Right
(Parent (x_id));
1094
SetColor (
Right
(w_id), NodeColor.black);
1125
if (color (
Right
(w_id)) == NodeColor.black && color (Left (w_id)) == NodeColor.black) {
1133
SetColor (
Right
(w_id), NodeColor.black);
1191
x_id =
Right
(x_id);
1218
x_id =
Right
(x_id);
1361
if (nodeId ==
Right
(parent))
1378
if (nodeId ==
Right
(parent))
1442
x_id =
Right
(x_id);
1458
x_id =
Right
(x_id);
1522
if ( (index=IndexOf(
Right
(nodeId), item)) != -1) {
1681
int myCorrectSize = SubTreeSize (Left (nodeId)) + SubTreeSize (
Right
(nodeId)) + (Next (nodeId) == NIL ? 1 : SubTreeSize (Next (nodeId)));
1703
int myCorrectSize = SubTreeSize(Left(nodeId)) + SubTreeSize(
Right
(nodeId)) + (Next(nodeId) == NIL ? 1 : SubTreeSize(Next(nodeId)));
fx\src\data\System\Data\Selection.cs (6)
546
else { x = records.
Right
(x); }
554
else { x = records.
Right
(x); }
581
else { x = records.
Right
(x); }
596
else { x = records.
Right
(x); }
614
else { x = records.
Right
(x); }
952
GetUniqueKeyValues(list, records.
Right
(curNodeId));