Lines Matching defs:GetOut
558 auto curOut = GetOut(0);
570 auto curOut = GetOut(idx);
578 auto curOut = GetOut(idx);
597 if (!GetOut(idx)->IsNextOutNull() && !GetOut(idx)->IsPrevOutNull()) {
598 GetOut(idx)->GetPrevOut()->SetNextOut(GetOut(idx)->GetNextOut());
599 GetOut(idx)->GetNextOut()->SetPrevOut(GetOut(idx)->GetPrevOut());
600 } else if (GetOut(idx)->IsNextOutNull() && !GetOut(idx)->IsPrevOutNull()) {
601 GetOut(idx)->GetPrevOut()->SetNextOutNull();
602 } else if (!GetOut(idx)->IsNextOutNull()) { // then GetOut(idx)->IsPrevOutNull() is true
603 GetIn(idx)->GetGate()->SetFirstOut(GetOut(idx)->GetNextOut());
604 GetOut(idx)->GetNextOut()->SetPrevOutNull();
619 Out *Gate::GetOut(size_t idx)