Searched refs:endIndex (Results 1 - 12 of 12) sorted by last modified time

/haiku/src/apps/terminal/
H A DTermViewStates.cpp924 int32 endIndex; local
926 endIndex = originalText.Length();
929 endIndex = colonPositions[endColonIndex].index;
935 originalText.CopyInto(text, startIndex, endIndex - startIndex);
/haiku/src/tests/apps/partitioner/
H A DPartitioner.cpp765 int32 endIndex = 0; local
766 while (isdigit(line[endIndex]))
767 endIndex++;
769 if (endIndex == 0) {
774 size = atoll(BString(line, endIndex).String());
777 line += endIndex;
/haiku/src/kits/support/
H A DString.cpp527 int32 endIndex = index < length ? FindFirst(separator, index) : length; local
528 if (endIndex < 0)
529 endIndex = length;
531 if (endIndex > index || !noEmptyStrings) {
532 BString toAppend(String() + index, endIndex - index);
533 if (toAppend.Length() != endIndex - index
539 if (endIndex == length)
542 index = endIndex + separatorLength;
2110 int32 endIndex = Length() - 1; local
2111 while (endIndex >
[all...]
/haiku/src/kits/storage/disk_device/
H A DPartitioningInfo.cpp281 int32 endIndex = index + count; local
282 memmove(fSpaces + index, fSpaces + endIndex,
283 (fCount - endIndex) * sizeof(partitionable_space_data));
/haiku/src/apps/mediaplayer/media_node_framework/
H A DPlaybackManager.cpp716 int32 endIndex = _IndexForFrame(endFrame); local
717 if (startIndex < endIndex)
721 endIndex = _SpeedInfoIndexForFrame(endFrame);
722 if (startIndex < endIndex)
735 int32 endIndex = _IndexForTime(endTime); local
736 if (startIndex < endIndex)
740 endIndex = _SpeedInfoIndexForTime(endTime);
741 if (startIndex < endIndex)
/haiku/src/kits/debugger/debug_info/loading_state_handlers/
H A DDwarfLoadingStateHandler.cpp190 int32 endIndex = debugFileName.FindFirst('('); local
191 if (endIndex < 0)
194 debugFileName.CopyInto(fileName, 0, endIndex);
195 startIndex = endIndex + 1;
196 endIndex = debugFileName.FindFirst('-', startIndex);
197 if (endIndex < 0)
200 debugFileName.CopyInto(packageName, startIndex, endIndex - startIndex);
201 startIndex = endIndex + 1;
202 endIndex = debugFileName.FindFirst(')', startIndex);
203 if (endIndex <
[all...]
/haiku/src/apps/debuganalyzer/gui/table/
H A DTreeTable.cpp992 int32 endIndex = childIndex + count;
993 for (int32 i = childIndex; i < endIndex; i++) {
H A DTable.cpp671 int32 endIndex = rowIndex + count; local
672 for (int32 i = rowIndex; i < endIndex; i++) {
/haiku/src/kits/interface/textview_support/
H A DStyleBuffer.cpp379 int32 endIndex = OffsetToRun(endOffset); local
381 int32 numStyles = endIndex - startIndex + 1;
/haiku/headers/private/shared/
H A DRangeArray.h128 int32 endIndex = index; local
131 while (endIndex < count && RangeAt(endIndex).offset <= endOffset)
132 endIndex++;
138 if (index == endIndex) {
145 endOffset = std::max(endOffset, RangeAt(endIndex - 1).EndOffset());
150 if (index + 1 < endIndex)
151 RemoveRanges(index + 1, endIndex - index - 1);
187 int32 endIndex = index; local
190 while (endIndex < coun
[all...]
/haiku/src/apps/debuganalyzer/gui/
H A DHeaderView.cpp1032 HeaderView::_InvalidateHeaders(int32 firstIndex, int32 endIndex) argument
H A DHeaderView.h217 int32 endIndex);

Completed in 72 milliseconds