Lines Matching defs:where

1358 BView::MouseDown(BPoint where)
1366 BView::MouseUp(BPoint where)
1374 BView::MouseMoved(BPoint where, uint32 code, const BMessage* dragMessage)
1722 BView::ScrollTo(BPoint where)
1725 where.x = roundf(where.x);
1726 where.y = roundf(where.y);
1729 if (where.x == fBounds.left && where.y == fBounds.top)
1737 if (where.x < min)
1738 where.x = min;
1739 else if (where.x > max)
1740 where.x = max;
1746 if (where.y < min)
1747 where.y = min;
1748 else if (where.y > max)
1749 where.y = max;
1754 float xDiff = where.x - fBounds.left;
1755 float yDiff = where.y - fBounds.top;
1769 fBounds.OffsetTo(where.x, where.y);
1870 BView::SetOrigin(BPoint where)
1872 SetOrigin(where.x, where.y);
2981 BView::ClipToPicture(BPicture* picture, BPoint where, bool sync)
2983 _ClipToPicture(picture, where, false, sync);
2988 BView::ClipToInversePicture(BPicture* picture, BPoint where, bool sync)
2990 _ClipToPicture(picture, where, true, sync);
3121 BView::DrawBitmapAsync(const BBitmap* bitmap, BPoint where)
3132 info.viewRect = info.bitmapRect.OffsetToCopy(where);
3180 BView::DrawBitmap(const BBitmap* bitmap, BPoint where)
3183 DrawBitmapAsync(bitmap, where);
4389 BView::DrawPicture(const BPicture* picture, BPoint where)
4394 DrawPictureAsync(picture, where);
4400 BView::DrawPicture(const char* filename, long offset, BPoint where)
4405 DrawPictureAsync(filename, offset, where);
4421 BView::DrawPictureAsync(const BPicture* picture, BPoint where)
4429 fOwner->fLink->Attach<BPoint>(where);
4437 BView::DrawPictureAsync(const char* filename, long offset, BPoint where)
4453 DrawPictureAsync(&picture, where);
4820 BView::MoveTo(BPoint where)
4822 MoveTo(where.x, where.y);
5058 BPoint where;
5059 message->FindPoint("be:view_where", &where);
5060 MouseDown(where);
5066 BPoint where;
5067 if (message->FindPoint("be:view_where", &where) != B_OK)
5071 if (GetToolTipAt(where, &tip))
5125 BPoint where;
5127 message->FindPoint("be:view_where", &where);
5143 MouseMoved(where, transit, dragMessage);
5150 BPoint where;
5151 message->FindPoint("be:view_where", &where);
5153 MouseUp(where);
5709 BPoint where;
5710 GetMouse(&where, NULL, false);
5712 BToolTipManager::Manager()->ShowTip(tip, ConvertToScreen(where), this);
5939 BView::_ClipToPicture(BPicture* picture, BPoint where, bool invert, bool sync)
5953 fOwner->fLink->Attach<BPoint>(where);
5958 // can avoid the performance impact of syncing. In a use-case where
6126 It doesn't contact the server, though - the only case where this
6139 moved.AddPoint("where", BPoint(x, y));
6149 It doesn't contact the server, though - the only case where this