Lines Matching refs:aInsertPos

1960     Point aInsertPos;  in GetChartInsertPos()  local
2021 aInsertPos.X() = aSelection.Left() - nNeededWidth; in GetChartInsertPos()
2023 aInsertPos.X() = aSelection.Right() + 1; in GetChartInsertPos()
2026 aInsertPos.Y() = std::max( aSelection.Top(), aVisible.Top() ); in GetChartInsertPos()
2033 aInsertPos.Y() = aSelection.Bottom() + 1; in GetChartInsertPos()
2035 aInsertPos.Y() = aSelection.Top() - nNeededHeight; in GetChartInsertPos()
2039aInsertPos.X() = std::min( aSelection.Right(), aVisible.Right() ) - nNeededWidth + 1; in GetChartInsertPos()
2041 aInsertPos.X() = std::max( aSelection.Left(), aVisible.Left() ); in GetChartInsertPos()
2048 aInsertPos.X() = aSelection.Left() - nNeededWidth; in GetChartInsertPos()
2050 aInsertPos.X() = aSelection.Right() + 1; in GetChartInsertPos()
2051 aInsertPos.Y() = std::max( aSelection.Top(), aVisible.Top() ); in GetChartInsertPos()
2056 Rectangle aCompareRect( aInsertPos, Size( nNeededWidth, nNeededHeight ) ); in GetChartInsertPos()
2058 aInsertPos.X() -= aCompareRect.Right() - aVisible.Right(); in GetChartInsertPos()
2060 aInsertPos.Y() -= aCompareRect.Bottom() - aVisible.Bottom(); in GetChartInsertPos()
2062 if ( aInsertPos.X() < aVisible.Left() ) in GetChartInsertPos()
2063 aInsertPos.X() = aVisible.Left(); in GetChartInsertPos()
2064 if ( aInsertPos.Y() < aVisible.Top() ) in GetChartInsertPos()
2065 aInsertPos.Y() = aVisible.Top(); in GetChartInsertPos()
2070 aInsertPos.X() += nBorder; in GetChartInsertPos()
2071 aInsertPos.Y() += nBorder; in GetChartInsertPos()
2073 return aInsertPos; in GetChartInsertPos()