Searched refs:yOffset (Results 26 - 45 of 45) sorted by relevance

12

/haiku/src/apps/softwareupdater/
H A DSoftwareUpdaterWindow.cpp970 int32 yOffset; local
975 yOffset = 0;
977 yOffset = 2;
978 int32 barHeight = size - 3 - 2 * yOffset;
983 view->MovePenTo(BPoint(where.x + size, where.y + 1 + yOffset));
984 view->StrokeLine(BPoint(where.x + size, where.y + size - yOffset));
986 where.y + size - yOffset));
992 BRect rect(where.x + size - barWidth,where.y + yOffset,
993 where.x + size - 1,where.y + size - 1 - yOffset);
/haiku/src/apps/diskusage/
H A DPieView.cpp114 float yOffset, height; local
116 yOffset = (height - fIcon->Bounds().Height()) / 2;
118 Menu()->MovePenBy(0.0, yOffset);
120 Menu()->MovePenBy(fIcon->Bounds().Width() + kSmallHMargin, -yOffset);
/haiku/src/servers/app/drawing/interface/virtual/
H A DDWindowHWInterface.h67 uint32 count, int32 xOffset, int32 yOffset);
H A DDWindowHWInterface.cpp954 uint32 count, int32 xOffset, int32 yOffset)
983 = (uint16)sortedRectList[i].top + yOffset + fYOffset;
953 CopyRegion(const clipping_rect* sortedRectList, uint32 count, int32 xOffset, int32 yOffset) argument
/haiku/src/tests/servers/app/newerClipping/drawing/
H A DAccelerantHWInterface.cpp664 uint32 count, int32 xOffset, int32 yOffset)
676 params[i].dest_top = (uint16)sortedRectList[i].top + yOffset;
663 CopyRegion(const clipping_rect* sortedRectList, uint32 count, int32 xOffset, int32 yOffset) argument
/haiku/src/servers/app/
H A DWindow.h188 int32 xOffset, int32 yOffset);
321 int32 yOffset);
H A DWindow.cpp463 Window::CopyContents(BRegion* region, int32 xOffset, int32 yOffset) argument
478 region->OffsetBy(xOffset, yOffset);
483 region->OffsetBy(-xOffset, -yOffset);
507 fDrawingEngine->CopyRegion(copyRegion, xOffset, yOffset);
515 copyRegion->OffsetBy(xOffset, yOffset);
525 fDrawingEngine->CopyRegion(region, xOffset, yOffset);
541 newDirty->OffsetBy(xOffset, yOffset);
1751 int32 xOffset, int32 yOffset)
1762 common->OffsetBy(xOffset, yOffset);
1750 _ShiftPartOfRegion(BRegion* region, BRegion* regionToShift, int32 xOffset, int32 yOffset) argument
/haiku/src/servers/app/drawing/interface/local/
H A DAccelerantHWInterface.cpp1215 uint32 count, int32 xOffset, int32 yOffset)
1217 _CopyRegion(sortedRectList, count, xOffset, yOffset, fOffscreenBackBuffer);
1558 int32 yOffset = -(int32)fFrontBuffer->Height(); local
1564 rects[i].top -= yOffset;
1565 rects[i].bottom -= yOffset;
1568 _CopyRegion(rects, count, xOffset, yOffset, false);
1622 uint32 count, int32 xOffset, int32 yOffset, bool inBackBuffer)
1652 + yOffset + srcOffsetY;
1214 CopyRegion(const clipping_rect* sortedRectList, uint32 count, int32 xOffset, int32 yOffset) argument
1621 _CopyRegion(const clipping_rect* sortedRectList, uint32 count, int32 xOffset, int32 yOffset, bool inBackBuffer) argument
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp588 int32 xOffset, yOffset; local
592 message.Read(yOffset);
596 BRect dest = rect.OffsetByCopy(xOffset, yOffset);
639 int32 xOffset, yOffset; local
641 if (message.Read(yOffset) != B_OK)
644 offscreen->MovePenTo(xOffset, yOffset);
/haiku/src/kits/interface/
H A DSplitLayout.cpp607 float yOffset = fTopInset; local
628 _LayoutItem(splitterItem, BRect(xOffset, yOffset,
629 xOffset + splitterWidth - 1, yOffset + splitterHeight - 1),
635 yOffset += splitterHeight + ySpacing;
651 _LayoutItem(item, BRect(xOffset, yOffset, xOffset + width,
652 yOffset + height), true);
657 yOffset += height + ySpacing + 1;
H A DBox.cpp265 float yOffset = roundf(lineHeight / 6.0f); local
268 DrawString(fLabel, BPoint(10.0f, fontHeight.ascent - yOffset));
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteDrawingEngine.cpp104 int32 yOffset)
115 SetTransform(state->CombinedTransform(), xOffset, yOffset);
121 message.Add(yOffset);
272 int32 xOffset, int32 yOffset)
292 RemoteDrawingEngine::CopyRect(BRect rect, int32 xOffset, int32 yOffset) const
297 message.Add(yOffset);
299 return rect.OffsetBySelf(xOffset, yOffset);
103 SetDrawState(const DrawState* state, int32 xOffset, int32 yOffset) argument
271 SetTransform(const BAffineTransform& transform, int32 xOffset, int32 yOffset) argument
/haiku/src/servers/app/drawing/Painter/
H A DPainter.h63 int32 yOffset = 0);
71 int32 xOffset, int32 yOffset);
H A DPainter.cpp294 Painter::SetDrawState(const DrawState* state, int32 xOffset, int32 yOffset) argument
305 SetTransform(state->CombinedTransform(), xOffset, yOffset);
335 fPatternHandler.SetOffsets(xOffset, yOffset);
372 Painter::SetTransform(BAffineTransform transform, int32 xOffset, int32 yOffset) argument
376 fTransform = agg::trans_affine_translation(-xOffset, -yOffset);
379 fTransform *= agg::trans_affine_translation(xOffset, yOffset);
/haiku/src/servers/app/drawing/
H A DHWInterface.h126 uint32 count, int32 xOffset, int32 yOffset)
125 CopyRegion(const clipping_rect* sortedRectList, uint32 count, int32 xOffset, int32 yOffset) argument
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js1088 context.translate(this.xOffset, this.yOffset);
1090 context.translate(-this.xOffset, -this.yOffset);
1127 this.yOffset = remoteMessage.dataView.readInt32();
1953 var yOffset = remoteMessage.dataView.readInt32();
1959 rect.top + yOffset);
/haiku/src/apps/deskbar/
H A DStatusView.cpp1193 float yOffset = iconSize > B_MINI_ICON ? 3 : 2; local
1198 loc.y = yOffset;
1202 - fMaxReplicantHeight - yOffset;
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp101 int32 LineAtOffset(float yOffset) const;
437 SourceView::BaseView::LineAtOffset(float yOffset) const
440 if (yOffset < 0 || lineCount == 0)
443 int32 line = (int32)yOffset / (int32)fFontInfo->lineHeight;
/haiku/src/tests/servers/app/painter/
H A DPainter.cpp1293 float yOffset = viewRect.top - (bitmapRect.top * yScale); local
1302 imgMatrix *= agg::trans_affine_translation(xOffset, yOffset);
/haiku/src/apps/mediaplayer/
H A DMainWin.cpp2181 int yOffset = (height - renderHeight) / 2; local
2186 BRect videoFrame(xOffset, yOffset,
2187 xOffset + renderWidth - 1, yOffset + renderHeight - 1);

Completed in 140 milliseconds

12