Searched refs:toOffset (Results 1 - 18 of 18) sorted by relevance

/haiku/src/apps/cortex/addons/common/
H A Daudio_buffer_tools.h187 size_t samples, size_t toOffset, size_t toLength) {
193 ASSERT(toOffset < toLength);
195 size_t n = toOffset;
213 size_t samples, size_t toOffset, size_t toLength) {
219 ASSERT(toOffset < toLength);
221 size_t n = toOffset;
303 uint32 toOffset,
311 for(n = toOffset, nLength = samples;
315 for(n = toOffset, nLength = samples;
323 for(n = toOffset, nLengt
184 copy_linear_to_circular( from_sample_t* pFrom, to_sample_t* pTo, size_t samples, size_t toOffset, size_t toLength) argument
[all...]
/haiku/src/kits/interface/textview_support/
H A DLineBuffer.cpp39 BTextView::LineBuffer::RemoveLineRange(int32 fromOffset, int32 toOffset) argument
42 int32 toLine = OffsetToLine(toOffset);
48 BumpOffset(fromOffset - toOffset, fromLine + 1);
H A DLineBuffer.h34 int32 toOffset);
H A DStyleBuffer.cpp273 BTextView::StyleBuffer::SetStyleRange(int32 fromOffset, int32 toOffset, argument
283 if (fromOffset == toOffset) {
330 if (toOffset < runEnd) {
332 newDesc.offset = toOffset;
341 } while (offset < toOffset);
343 if (offset == toOffset && runIndex < fStyleRunDesc.ItemCount()
404 BTextView::StyleBuffer::RemoveStyleRange(int32 fromOffset, int32 toOffset) argument
407 int32 toIndex = fStyleRunDesc.OffsetToRun(toOffset) - 1;
415 fStyleRunDesc.BumpOffset(fromOffset - toOffset, fromIndex + 1);
552 int32 toOffset) cons
[all...]
H A DStyleBuffer.h124 int32 toOffset, int32 textLen,
131 int32 toOffset);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DNummericalTextView.h47 int32 toOffset);
H A DNummericalTextView.cpp160 NummericalTextView::DeleteText(int32 fromOffset, int32 toOffset) argument
162 InputTextView::DeleteText(fromOffset, toOffset);
/haiku/src/kits/interface/
H A DTextInput.h48 virtual void DeleteText(int32 fromOffset, int32 toOffset);
H A DTextInput.cpp206 _BTextInput_::DeleteText(int32 fromOffset, int32 toOffset) argument
208 BTextView::DeleteText(fromOffset, toOffset);
H A DTextView.cpp3045 BTextView::DeleteText(int32 fromOffset, int32 toOffset) argument
3054 if (toOffset < 0)
3055 toOffset = 0;
3056 else if (toOffset > fText->Length())
3057 toOffset = fText->Length();
3059 if (fromOffset >= toOffset)
3067 fText->RemoveRange(fromOffset, toOffset);
3070 fLines->RemoveLineRange(fromOffset, toOffset);
3073 fStyles->RemoveStyleRange(fromOffset, toOffset);
3076 int32 range = toOffset
3783 _Refresh(int32 fromOffset, int32 toOffset, int32 scrollTo) argument
3876 int32 toOffset = _FindLineBreak(fromOffset, &ascent, &descent, &width); local
4018 int32 toOffset = (offset < limit) ? offset : limit; local
4390 _DoDeleteText(int32 fromOffset, int32 toOffset) argument
5453 int32 toOffset = endOffset; local
5880 _ApplyStyleRange(int32 fromOffset, int32 toOffset, uint32 mode, const BFont* font, const rgb_color* color, bool syncNullStyle) argument
[all...]
/haiku/src/system/kernel/vm/
H A DVMAnonymousCache.h99 off_t toOffset, bool skipBusyPages = true);
H A DVMAnonymousCache.cpp521 VMAnonymousCache::_FreeSwapPageRange(off_t fromOffset, off_t toOffset, argument
525 off_t toIndex = toOffset >> PAGE_SHIFT;
/haiku/headers/os/interface/
H A DTextView.h232 virtual void DeleteText(int32 fromOffset, int32 toOffset);
301 void _Refresh(int32 fromOffset, int32 toOffset,
323 int32 toOffset);
375 int32 toOffset,
/haiku/src/apps/mail/
H A DAddressTextControl.cpp66 virtual void DeleteText(int32 fromOffset, int32 toOffset);
364 int32 toOffset)
366 BTextView::DeleteText(fromOffset, toOffset);
363 DeleteText(int32 fromOffset, int32 toOffset) argument
/haiku/src/tests/add-ons/kernel/file_systems/bfs/dump_log/
H A Ddump_log.cpp53 toOffset(disk_super_block &superBlock, block_run run) function
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dwrite_support.cpp1067 move_block(int fd, off_t fromOffset, off_t toOffset, uint8* buffer, int32 size) argument
1080 if (write_pos(fd, toOffset, buffer, size) != size) {
1093 move_partition(int fd, off_t fromOffset, off_t toOffset, off_t size, argument
1103 error = move_block(fd, fromOffset, toOffset, buffer, buffer_size);
1107 toOffset += buffer_size;
1111 error = move_block(fd, fromOffset, toOffset, buffer, remainingSize);
/haiku/src/preferences/filetypes/
H A DApplicationTypeWindow.cpp75 virtual void DeleteText(int32 fromOffset, int32 toOffset);
148 TabFilteringTextView::DeleteText(int32 fromOffset, int32 toOffset) argument
150 BTextView::DeleteText(fromOffset, toOffset);
/haiku/src/apps/webpositive/
H A DURLInputGroup.cpp166 virtual void DeleteText(int32 fromOffset, int32 toOffset);
398 URLInputGroup::URLTextView::DeleteText(int32 fromOffset, int32 toOffset) argument
400 BTextView::DeleteText(fromOffset, toOffset);

Completed in 431 milliseconds