Searched refs:newOffset (Results 1 - 23 of 23) sorted by relevance

/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScrollableView.cpp26 ScrollableView::ScrollOffsetChanged(BPoint oldOffset, BPoint newOffset) argument
33 view->CopyBits(bounds.OffsetByCopy(newOffset - oldOffset), bounds);
36 child->MoveTo(child->Frame().LeftTop() + oldOffset - newOffset);
H A DScrollableView.h24 BPoint newOffset);
H A DScroller.h43 BPoint newOffset);
H A DScrollable.h43 BPoint newOffset);
H A DScrollView.cpp560 ScrollView::ScrollOffsetChanged(BPoint /*oldOffset*/, BPoint newOffset) argument
562 if (fHScrollBar && fHScrollBar->Value() != newOffset.x)
563 fHScrollBar->SetValue(newOffset.x);
564 if (fVScrollBar && fVScrollBar->Value() != newOffset.y)
565 fVScrollBar->SetValue(newOffset.y);
H A DScrollView.h93 BPoint newOffset);
/haiku/src/tests/kits/shared/
H A DKeymapTest.cpp98 int newOffset = (*tables[modifiers & ~B_OPTION_KEY])[keycode]; local
99 if (newOffset >= 0)
100 mapChars = &charArray[newOffset];
/haiku/src/apps/icon-o-matic/
H A DCanvasView.h52 virtual void SetScrollOffset(BPoint newOffset);
54 BPoint newOffset);
H A DCanvasView.cpp239 CanvasView::SetScrollOffset(BPoint newOffset) argument
246 newOffset = ValidScrollOffsetFor(newOffset);
248 BPoint mouseOffset = newOffset - ScrollOffset();
253 Scrollable::SetScrollOffset(newOffset);
260 CanvasView::ScrollOffsetChanged(BPoint oldOffset, BPoint newOffset) argument
262 BPoint offset = newOffset - oldOffset;
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.h53 BPoint newOffset);
H A DPropertyListView.cpp507 PropertyListView::ScrollOffsetChanged(BPoint oldOffset, BPoint newOffset) argument
509 ScrollBy(newOffset.x - oldOffset.x,
510 newOffset.y - oldOffset.y);
/haiku/src/system/kernel/vm/
H A DVMAnonymousCache.h48 off_t size, off_t newOffset);
H A DVMCache.cpp1239 VMCache::Adopt(VMCache* source, off_t offset, off_t size, off_t newOffset) argument
1243 off_t offsetChange = newOffset - offset;
H A DVMAnonymousCache.cpp622 off_t newOffset)
631 off_t pageIndex = newOffset >> PAGE_SHIFT;
715 return VMCache::Adopt(source, offset, size, newOffset);
621 Adopt(VMCache* _source, off_t offset, off_t size, off_t newOffset) argument
/haiku/headers/private/storage/
H A DPartition.h113 status_t ValidateMove(off_t* newOffset) const;
114 status_t Move(off_t newOffset);
/haiku/src/system/libroot/posix/malloc_hoard2/
H A Dwrapper.cpp79 int32 newOffset = (addr_t)address - (addr_t)location; local
81 if (offset == -1 || offset > newOffset) {
89 offset = newOffset;
/haiku/headers/private/kernel/disk_device_manager/
H A Dddm_userland_interface.h61 off_t newOffset, partition_id* descendantIDs,
/haiku/src/servers/app/drawing/interface/virtual/
H A DDWindowHWInterface.cpp105 virtual void FrameMoved(BPoint newOffset);
289 DWindow::FrameMoved(BPoint newOffset) argument
291 fHWInterface->SetOffset((int32)newOffset.x, (int32)newOffset.y);
/haiku/src/system/kernel/disk_device_manager/
H A Dddm_userland_interface.cpp734 partition_id childID, int32* childChangeCounter, off_t newOffset,
748 if (newOffset == partition->Offset())
750 off_t proposedOffset = newOffset;
755 if (proposedOffset != newOffset)
758 off_t moveBy = newOffset - partition->Offset();
733 _user_move_partition(partition_id partitionID, int32* changeCounter, partition_id childID, int32* childChangeCounter, off_t newOffset, partition_id* descendantIDs, int32* descendantChangeCounters, int32 descendantCount) argument
/haiku/headers/private/kernel/vm/
H A DVMCache.h136 off_t newOffset);
/haiku/src/tests/kits/storage/
H A DResourcesTest.cpp1487 size_t newOffset = length + 30; local
1490 newOffset, newWriteSize)
1493 CPPUNIT_ASSERT( data != NULL && length == newOffset + newWriteSize );
1497 // [offset + writeSize, newOffset) unspecified
1498 CPPUNIT_ASSERT( !memcmp((const char*)data + newOffset, writeBuffer,
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp2160 off_t newOffset = offset; local
2162 for (; i < arrayLength; i++, offset = newOffset) {
2166 newOffset += (off_t)array[i].Length() << fVolume->BlockShift();
2167 if (newOffset <= size)
2173 if (newOffset > size && offset < size) {
/haiku/headers/private/system/
H A Dsyscalls.h617 int32* childChangeCounter, off_t newOffset,

Completed in 162 milliseconds