Lines Matching defs:current
319 Point* current = pointArray_ + dataCount_;
320 if (memcpy_s(current, (maxCount_ - dataCount_) * sizeof(Point), data, count * sizeof(Point)) != EOK) {
438 Point current;
439 data->GetPoint(index, current);
442 Rect refresh(current.x, rect.GetTop(), last.x, rect.GetBottom());
467 Point current;
468 data->GetPoint(index, current);
469 if (current.y == xStart.y) {
472 current.x += x;
473 xStart.x = current.x;
474 BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, current, xStart, invalidatedArea, barWidth,
560 Point& current,
565 data->GetPoint(startPos + 1, current);
566 if (((end.y - start.y <= 0) && (current.y - end.y <= 0)) || ((end.y - start.y >= 0) && (current.y - end.y >= 0))) {
567 slope = (current.x == start.x) ? QUARTER_IN_DEGREE : FastAtan2(current.x - start.x, current.y - start.y);
569 end = current;
573 preSlope = (current.x == end.x) ? QUARTER_IN_DEGREE : FastAtan2(current.x - end.x, current.y - end.y);
592 Point current;
594 if (!Smooth(i, start, end, current, data, slope, preSlope)) {
599 end = current;
626 Point current;
629 if (!Smooth(i, start, end, current, data, slope, preSlope)) {
639 end = current;
652 end = current;