Home
last modified time | relevance | path

Searched refs:rowStart (Results 1 – 25 of 711) sorted by relevance

12345678910>>...29

/dports/editors/calligra/calligra-3.2.1/sheets/
H A DPointStorage.h228 m_cols.remove(rowStart + col); in insertColumns()
229 m_data.remove(rowStart + col); in insertColumns()
234 m_cols[rowStart + col] += number; in insertColumns()
256 m_cols.remove(rowStart + col); in removeColumns()
257 m_data.remove(rowStart + col); in removeColumns()
385 m_cols.remove(rowStart + col); in insertShiftRight()
386 m_data.remove(rowStart + col); in insertShiftRight()
548 m_cols.remove(rowStart + col); in insertShiftDown()
549 m_data.remove(rowStart + col); in insertShiftDown()
747 const int rowStart = m_rows.value(row); in dump() local
[all …]
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/src/
H A Dbitmap_ex.cpp50 p = rowStart; in wxPyCopyBitmapFromBuffer()
80 p = rowStart; in wxPyCopyBitmapFromBuffer()
102 byte* rowStart = data; in wxPyCopyBitmapFromBuffer() local
150 type::Iterator rowStart
184 rowStart = p; in wxPyCopyBitmapToBuffer()
191 p = rowStart; in wxPyCopyBitmapToBuffer()
201 rowStart = p; in wxPyCopyBitmapToBuffer()
208 p = rowStart; in wxPyCopyBitmapToBuffer()
222 rowStart = p; in wxPyCopyBitmapToBuffer()
231 p = rowStart; in wxPyCopyBitmapToBuffer()
[all …]
/dports/emulators/mess/mame-mame0226/scripts/build/
H A Dpng2bdc.py248 rowStart = 0
249 while rowStart < height:
251 for i in range(rowStart, height):
252 if pixelIsSet(bitmap[rowStart][0]):
254 rowStart += 1
255 if rowStart >= height:
259 rowEnd = rowStart + 1
267 baseline = rowStart
268 for i in range(rowStart, rowEnd+1):
348 rowStart = rowEnd + 1
[all …]
/dports/emulators/mame/mame-mame0226/scripts/build/
H A Dpng2bdc.py248 rowStart = 0
249 while rowStart < height:
251 for i in range(rowStart, height):
252 if pixelIsSet(bitmap[rowStart][0]):
254 rowStart += 1
255 if rowStart >= height:
259 rowEnd = rowStart + 1
267 baseline = rowStart
268 for i in range(rowStart, rowEnd+1):
348 rowStart = rowEnd + 1
[all …]
/dports/deskutils/kalendar/kalendar-0.4.0/src/
H A Dmultidayincidencemodel.cpp64 const auto rowEnd = rowStart.addDays(mPeriodLength > 1 ? mPeriodLength : 0); in sortedIncidencesFromSourceModel()
74 if (end < rowStart || start > rowEnd) { in sortedIncidencesFromSourceModel()
128 QVariantList MultiDayIncidenceModel::layoutLines(const QDate &rowStart) const in layoutLines()
130 auto getStart = [&rowStart](const QDate &start) { in layoutLines()
131 return qMax(rowStart.daysTo(start), 0ll); in layoutLines()
134 QList<QModelIndex> sorted = sortedIncidencesFromSourceModel(rowStart); in layoutLines()
146 ? rowStart in layoutLines()
217 ? rowStart in layoutLines()
252 return rowStart.startOfDay(); in data()
254 return layoutLines(rowStart); in data()
[all …]
H A Dhourlyincidencemodel.cpp58 QList<QModelIndex> HourlyIncidenceModel::sortedIncidencesFromSourceModel(const QDateTime &rowStart)… in sortedIncidencesFromSourceModel()
61 const auto rowEnd = rowStart.date().endOfDay(); in sortedIncidencesFromSourceModel()
71 if (end < rowStart || start > rowEnd) { in sortedIncidencesFromSourceModel()
125 QVariantList HourlyIncidenceModel::layoutLines(const QDateTime &rowStart) const in layoutLines()
127 QList<QModelIndex> sorted = sortedIncidencesFromSourceModel(rowStart); in layoutLines()
128 const auto rowEnd = rowStart.date().endOfDay(); in layoutLines()
186 : rowStart; in layoutLines()
227 : rowStart; in layoutLines()
311 const auto rowStart = mSourceModel->start().addDays(idx.row()).startOfDay(); in data() local
314 return rowStart; in data()
[all …]
/dports/games/scorched3d/scorched/src/common/image/
H A DImageLuminanceFactory.cpp56 …ILE *file, ImageRec &image, unsigned char *buf, int y, int z, unsigned int *rowStart, int *rowSize) in imageGetRow() argument
62 fseek(file, (long) rowStart[y + z * image.ysize], SEEK_SET); in imageGetRow()
122 unsigned int *rowStart = (unsigned int *) malloc(x); in loadFromFile() local
125 if (rowStart && rowSize) in loadFromFile()
128 fread(rowStart, 1, x, file); in loadFromFile()
133 convertUint(rowStart, x / (int) sizeof(unsigned)); in loadFromFile()
140 imageGetRow(file, image, lptr, y, 0, rowStart, rowSize); in loadFromFile()
144 free(rowStart); in loadFromFile()
/dports/games/tuxracer/tuxracer-0.61/src/
H A Dimage.c46 unsigned int *rowStart; member
54 unsigned int *rowStart, *rowSize, ulTmp; in ImageOpen() local
97 image->rowStart = (unsigned int *)malloc(x); in ImageOpen()
99 if (image->rowStart == NULL || image->rowSize == NULL) in ImageOpen()
106 fread(image->rowStart, 1, x, image->file); in ImageOpen()
111 rowStart = image->rowStart; in ImageOpen()
115 ulTmp = *rowStart; in ImageOpen()
116 *rowStart++ = SWAP_LONG_BYTES(ulTmp); in ImageOpen()
142 fseek(image->file, image->rowStart[y+z*image->sizeY], SEEK_SET); in ImageGetRow()
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php454 $rowStart = null;
459 if ($rowStart === null) {
460 $rowStart = $row;
465 if ($rowStart == $rowEnd) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
471 $rowStart = $row;
476 if ($rowStart !== null) {
477 if ($rowStart == $rowEnd) {
478 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/phpoffice/PhpSpreadsheet/Cell/
H A DCoordinate.php456 $rowStart = null;
461 if ($rowStart === null) {
462 $rowStart = $row;
467 if ($rowStart == $rowEnd) {
468 $ranges[] = $hashedValue->col . $rowStart;
470 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
473 $rowStart = $row;
478 if ($rowStart !== null) {
479 if ($rowStart == $rowEnd) {
480 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/finance/prestashop/prestashop/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php454 $rowStart = null;
459 if ($rowStart === null) {
460 $rowStart = $row;
465 if ($rowStart == $rowEnd) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
471 $rowStart = $row;
476 if ($rowStart !== null) {
477 if ($rowStart == $rowEnd) {
478 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/www/moodle310/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php454 $rowStart = null;
459 if ($rowStart === null) {
460 $rowStart = $row;
465 if ($rowStart == $rowEnd) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
471 $rowStart = $row;
476 if ($rowStart !== null) {
477 if ($rowStart == $rowEnd) {
478 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/www/moodle39/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php454 $rowStart = null;
459 if ($rowStart === null) {
460 $rowStart = $row;
465 if ($rowStart == $rowEnd) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
471 $rowStart = $row;
476 if ($rowStart !== null) {
477 if ($rowStart == $rowEnd) {
478 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/math/cbc/Cbc-releases-2.10.5/Cbc/src/
H A DCbcBranchToFixLots.cpp172 const CoinBigIndex *rowStart = matrixByRow_.getVectorStarts(); in createCbcBranch() local
193 for (CoinBigIndex j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in createCbcBranch()
210 for (CoinBigIndex j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in createCbcBranch()
257 const CoinBigIndex *rowStart = matrixByRow_.getVectorStarts(); in createCbcBranch() local
266 for (CoinBigIndex j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in createCbcBranch()
286 for (CoinBigIndex j = rowStart[kRow]; j < rowStart[kRow] + rowLength[kRow]; j++) { in createCbcBranch()
420 const CoinBigIndex *rowStart = matrixByRow_.getVectorStarts(); in shallWe() local
444 for (CoinBigIndex j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in shallWe()
464 for (CoinBigIndex j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in shallWe()
513 const CoinBigIndex *rowStart = matrixByRow_.getVectorStarts(); in infeasibility() local
[all …]
/dports/math/cbc/Cbc-releases-2.10.5/Cbc/examples/
H A DCbcBranchFollow2.cpp45 const CoinBigIndex *rowStart = matrixByRow_.getVectorStarts(); in CbcFollowOn2() local
54 for (int j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in CbcFollowOn2()
130 const CoinBigIndex *rowStart = matrixByRow_.getVectorStarts(); in gutsOfFollowOn2() local
147 for (int j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in gutsOfFollowOn2()
200 for (j = rowStart[i]; j < rowStart[i] + rowLength[i]; j++) { in gutsOfFollowOn2()
339 const CoinBigIndex *rowStart = matrixByRow_.getVectorStarts(); in createBranch() local
403 for (j=rowStart[i];j<rowStart[i]+rowLength[i];j++) { in createBranch()
416 for (int j=rowStart[k];j<rowStart[k]+rowLength[k];j++) { in createBranch()
456 for (j = rowStart[whichRow]; j < rowStart[whichRow] + rowLength[whichRow]; j++) { in createBranch()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_basics/layout/
H A Djuce_GridItem.cpp77 void GridItem::setArea (Property rowStart, Property columnStart, Property rowEnd, Property columnEn… in setArea() argument
81 row.start = rowStart; in setArea()
85 void GridItem::setArea (Property rowStart, Property columnStart) in setArea() argument
88 row.start = rowStart; in setArea()
96 GridItem GridItem::withArea (Property rowStart, Property columnStart, Property rowEnd, Property col… in withArea() argument
99 gi.setArea (rowStart, columnStart, rowEnd, columnEnd); in withArea()
103 GridItem GridItem::withArea (Property rowStart, Property columnStart) const noexcept in withArea() argument
106 gi.setArea (rowStart, columnStart); in withArea()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_basics/layout/
H A Djuce_GridItem.cpp77 void GridItem::setArea (Property rowStart, Property columnStart, Property rowEnd, Property columnEn… in setArea() argument
81 row.start = rowStart; in setArea()
85 void GridItem::setArea (Property rowStart, Property columnStart) in setArea() argument
88 row.start = rowStart; in setArea()
96 GridItem GridItem::withArea (Property rowStart, Property columnStart, Property rowEnd, Property col… in withArea() argument
99 gi.setArea (rowStart, columnStart, rowEnd, columnEnd); in withArea()
103 GridItem GridItem::withArea (Property rowStart, Property columnStart) const noexcept in withArea() argument
106 gi.setArea (rowStart, columnStart); in withArea()
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php494 $rowStart = null;
499 if ($rowStart === null) {
500 $rowStart = $row;
505 if ($rowStart == $rowEnd) {
506 $ranges[] = $hashedValue->col . $rowStart;
508 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
511 $rowStart = $row;
516 if ($rowStart !== null) {
517 if ($rowStart == $rowEnd) {
518 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php473 $rowStart = null;
478 if ($rowStart === null) {
479 $rowStart = $row;
484 if ($rowStart == $rowEnd) {
485 $ranges[] = $hashedValue->col . $rowStart;
487 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
490 $rowStart = $row;
495 if ($rowStart !== null) {
496 if ($rowStart == $rowEnd) {
497 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/www/moodle311/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php473 $rowStart = null;
478 if ($rowStart === null) {
479 $rowStart = $row;
484 if ($rowStart == $rowEnd) {
485 $ranges[] = $hashedValue->col . $rowStart;
487 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
490 $rowStart = $row;
495 if ($rowStart !== null) {
496 if ($rowStart == $rowEnd) {
497 $ranges[] = $hashedValue->col . $rowStart;
[all …]
/dports/science/elmerfem/elmerfem-release-9.0/post/src/glaux_mingw/src/
H A Dtkimage.c65 unsigned long *rowStart; member
74 unsigned long *rowStart, *rowSize, ulTmp; in RawImageOpenAW() local
126 raw->rowStart = (unsigned long *)malloc(x); in RawImageOpenAW()
128 if (raw->rowStart == NULL || raw->rowSize == NULL) { in RawImageOpenAW()
135 ReadFile(raw->file, (LPVOID) raw->rowStart, x, &dwBytesRead, in RawImageOpenAW()
141 rowStart = raw->rowStart; in RawImageOpenAW()
144 ulTmp = *rowStart; in RawImageOpenAW()
145 *rowStart++ = SWAP_LONG_BYTES(ulTmp); in RawImageOpenAW()
173 SetFilePointer(raw->file, raw->rowStart[y+z*raw->sizeY], NULL, FILE_BEGIN); in RawImageGetRow()
/dports/games/aquaria/Aquaria-OSE-v1.002-22-g84366ad/Aquaria/
H A DAutoMap.cpp318 int rowStart = -1; in onRender() local
325 if (rowStart == -1) in onRender()
327 rowStart = x; in onRender()
332 if (rowStart != -1) in onRender()
334 glVertex3f((rowStart-t.x), (y-t.y),0); in onRender()
336 rowStart = -1; in onRender()
340 if (rowStart != -1) in onRender()
342 glVertex3f((rowStart-t.x), (y-t.y),0); in onRender()
/dports/graphics/xpaint/xpaint-2.9.10.3/rw/
H A DreadWriteSGI.c43 unsigned int *rowStart; member
80 if (image->rowStart) free(image->rowStart); in ImageSGIClose()
123 image->rowStart = (unsigned int*)malloc(x); in ImageSGIOpen()
131 fread(image->rowStart, 1, x, image->file); in ImageSGIOpen()
134 ConvertLong(image->rowStart, x/(int)sizeof(int)); in ImageSGIOpen()
138 image->rowStart = NULL; in ImageSGIOpen()
290 image->rowStart = (unsigned int *)malloc(y); in ImageSGICreate()
292 if (image->rowStart == NULL || image->rowSize == NULL) { in ImageSGICreate()
346 image->rowStart[y] = image->rleEnd; in SGIPutRow()
415 ConvertLong(o->rowStart, x); in WriteSGI()
[all …]
/dports/lang/squeak/Squeak-4.10.2.2614-src/unix/src/vm/intplugins/StarSqueakPlugin/
H A DStarSqueakPlugin.c87 sqInt rowStart; in primitiveDiffuseFromToWidthHeightDelta() local
146 rowStart = y2 * width; in primitiveDiffuseFromToWidthHeightDelta()
148 sum += src[rowStart + x2]; in primitiveDiffuseFromToWidthHeightDelta()
198 sqInt rowStart; in primitiveMapFromToWidthHeightPatchSizeRgbFlagsShift() local
261 for (rowStart = offset; rowStart <= (offset + ((patchSize - 1) * w)); rowStart += w) { in primitiveMapFromToWidthHeightPatchSizeRgbFlagsShift()
262 for (dstIndex = rowStart; dstIndex <= ((rowStart + patchSize) - 1); dstIndex += 1) { in primitiveMapFromToWidthHeightPatchSizeRgbFlagsShift()
/dports/textproc/apertium/apertium-3.6.1/apertium/
H A Dtmx_book_to_matrix.cc174 int rowStart = alignMatrix.rowStart(huPos); in sentenceListsToAlignMatrixIdentity() local
176 for ( enPos=rowStart; enPos<rowEnd; ++enPos ) in sentenceListsToAlignMatrixIdentity()
237 int rowStart = alignMatrix.rowStart(huPos); in sentenceListsToAlignMatrixTranslation() local
239 for ( enPos=rowStart; enPos<rowEnd; ++enPos ) in sentenceListsToAlignMatrixTranslation()
285 int rowStart = alignMatrix.rowStart(huPos); in sentenceListsToAlignMatrixIBMModelOne() local
287 for ( enPos=rowStart; enPos<rowEnd; ++enPos ) in sentenceListsToAlignMatrixIBMModelOne()

12345678910>>...29