Home | History | Annotate | Download | only in accessibility

Lines Matching refs:increase

111 void AXNodeObject::alterSliderValue(bool increase)
117 changeValueByStep(increase);
119 changeValueByPercent(increase ? 5 : -5);
143 void AXNodeObject::changeValueByStep(bool increase)
148 value += increase ? step : -step;