Home
last modified time | relevance | path

Searched refs:mRows (Results 1 – 25 of 241) sorted by relevance

12345678910

/dports/graphics/reactphysics3d/reactphysics3d-0.8.0/include/reactphysics3d/mathematics/
H A DMatrix3x3.h227 return (mRows[0][0]*(mRows[1][1]*mRows[2][2]-mRows[2][1]*mRows[1][2]) - in getDeterminant()
228 mRows[0][1]*(mRows[1][0]*mRows[2][2]-mRows[2][0]*mRows[1][2]) + in getDeterminant()
229 mRows[0][2]*(mRows[1][0]*mRows[2][1]-mRows[2][0]*mRows[1][1])); in getDeterminant()
357 mRows[0][0] += matrix.mRows[0][0]; mRows[0][1] += matrix.mRows[0][1];
358 mRows[0][2] += matrix.mRows[0][2]; mRows[1][0] += matrix.mRows[1][0];
359 mRows[1][1] += matrix.mRows[1][1]; mRows[1][2] += matrix.mRows[1][2];
360 mRows[2][0] += matrix.mRows[2][0]; mRows[2][1] += matrix.mRows[2][1];
367 mRows[0][0] -= matrix.mRows[0][0]; mRows[0][1] -= matrix.mRows[0][1];
368 mRows[0][2] -= matrix.mRows[0][2]; mRows[1][0] -= matrix.mRows[1][0];
369 mRows[1][1] -= matrix.mRows[1][1]; mRows[1][2] -= matrix.mRows[1][2];
[all …]
H A DMatrix2x2.h181 mRows[0][0] = a1; mRows[0][1] = a2; in setAllValues()
182 mRows[1][0] = b1; mRows[1][1] = b2; in setAllValues()
215 return mRows[0][0] * mRows[1][1] - mRows[1][0] * mRows[0][1]; in getDeterminant()
222 return (mRows[0][0] + mRows[1][1]); in getTrace()
227 mRows[0][0] = 1.0; mRows[0][1] = 0.0; in setToIdentity()
302 return (mRows[0][0] == matrix.mRows[0][0] && mRows[0][1] == matrix.mRows[0][1] &&
303 mRows[1][0] == matrix.mRows[1][0] && mRows[1][1] == matrix.mRows[1][1]);
313 mRows[0][0] += matrix.mRows[0][0]; mRows[0][1] += matrix.mRows[0][1];
314 mRows[1][0] += matrix.mRows[1][0]; mRows[1][1] += matrix.mRows[1][1];
320 mRows[0][0] -= matrix.mRows[0][0]; mRows[0][1] -= matrix.mRows[0][1];
[all …]
/dports/graphics/reactphysics3d/reactphysics3d-0.8.0/src/mathematics/
H A DMatrix3x3.cpp37 setAllValues(matrix.mRows[0][0], matrix.mRows[0][1], matrix.mRows[0][2], in operator =()
38 matrix.mRows[1][0], matrix.mRows[1][1], matrix.mRows[1][2], in operator =()
55 Matrix3x3 tempMatrix((mRows[1][1]*mRows[2][2]-mRows[2][1]*mRows[1][2]), in getInverse()
56 -(mRows[0][1]*mRows[2][2]-mRows[2][1]*mRows[0][2]), in getInverse()
57 (mRows[0][1]*mRows[1][2]-mRows[0][2]*mRows[1][1]), in getInverse()
58 -(mRows[1][0]*mRows[2][2]-mRows[2][0]*mRows[1][2]), in getInverse()
59 (mRows[0][0]*mRows[2][2]-mRows[2][0]*mRows[0][2]), in getInverse()
60 -(mRows[0][0]*mRows[1][2]-mRows[1][0]*mRows[0][2]), in getInverse()
61 (mRows[1][0]*mRows[2][1]-mRows[2][0]*mRows[1][1]), in getInverse()
62 -(mRows[0][0]*mRows[2][1]-mRows[2][0]*mRows[0][1]), in getInverse()
[all …]
H A DMatrix2x2.cpp36 setAllValues(matrix.mRows[0][0], matrix.mRows[0][1], in operator =()
37 matrix.mRows[1][0], matrix.mRows[1][1]); in operator =()
53 Matrix2x2 tempMatrix(mRows[1][1], -mRows[0][1], -mRows[1][0], mRows[0][0]); in getInverse()
/dports/devel/fifechan/fifechan-0.1.5/src/
H A Dtext.cpp118 mRows.clear(); in setContent()
139 if (mRows.empty()) in getContent()
196 mRows.insert(mRows.begin() + position, row); in insertRow()
204 mRows.erase(mRows.begin() + row); in eraseRow()
212 return mRows[row]; in getRow()
219 if (mRows.empty()) in insert()
230 mRows.insert(mRows.begin() + mCaretRow + 1, in insert()
261 mRows[mCaretRow - 1] += mRows[mCaretRow]; in remove()
262 mRows.erase(mRows.begin() + mCaretRow); in remove()
291 mRows[mCaretRow] += mRows[mCaretRow + 1]; in remove()
[all …]
/dports/games/openmw/openmw-openmw-0.47.0/apps/opencs/model/tools/
H A Dreportmodel.cpp27 return static_cast<int>(mRows.size()); in rowCount()
55 CSMWorld::UniversalId id = mRows.at (index.row()).mId; in data()
133 mRows.erase (mRows.begin()+row, mRows.begin()+row+count); in removeRows()
143 beginInsertRows (QModelIndex(), static_cast<int>(mRows.size()), static_cast<int>(mRows.size())); in add()
145 mRows.push_back (message); in add()
152 CSMDoc::Message& line = mRows.at (index); in flagAsReplaced()
167 return mRows.at (row).mId; in getUniversalId()
172 return mRows.at (row).mHint; in getHint()
177 if (!mRows.empty()) in clear()
180 mRows.clear(); in clear()
[all …]
/dports/devel/open-beagle/beagle-3.0.3/PACC/Math/
H A DMatrix.cpp53 outMatrix.setRowsCols(mRows, mCols); in add()
64 PACC_AssertM(mRows == inMatrix.mRows && mCols == inMatrix.mCols, "add() matrix mismatch!"); in add()
84 const unsigned int lR = mRows-i-1; in computeBackSubLU()
112 outValues.resize(mRows); in computeEigens()
113 outVectors.resize(mRows, mCols); in computeEigens()
116 Vector lE(mRows); in computeEigens()
266 outMatrix.setIdentity(mRows); in invert()
267 Matrix lB(mRows, 1); in invert()
434 PACC_AssertM(mRows == inMatrix.mRows && mCols == inMatrix.mCols, "subtract() matrix mismatch!"); in subtract()
453 const unsigned int n=mRows; in tql2()
[all …]
H A DMatrix.hpp69 Matrix(const string& inName="") : mRows(0), mCols(0), mPrec(15), mName(inName) {} in Matrix()
73 : vector<double>(inRows*inCols, 0), mRows(inRows), mCols(inCols), mPrec(15), mName(inName) {} in Matrix()
77 …: vector<double>(inRows*inCols, inValue), mRows(inRows), mCols(inCols), mPrec(15), mName(inName) {} in Matrix()
80 virtual ~Matrix() {mRows = mCols = 0;} in ~Matrix()
87 mRows = inMatrix.mRows; mCols = inMatrix.mCols; in operator =()
95 PACC_AssertM(inRow < mRows && inCol < mCols, "invalid matrix indices!"); in operator ()()
101 PACC_AssertM(inRow < mRows && inCol < mCols, "invalid matrix indices!"); in operator ()()
144 inline unsigned int getRows(void) const {return mRows;} in getRows()
213 unsigned int mRows; //!< Number of rows. member in PACC::Matrix
238 mRows = inRows; mCols = inCols; in setRowsCols()
[all …]
H A DVector.hpp80 PACC_AssertM(inRow < mRows, "invalid vector index!"); in operator []()
87 PACC_AssertM(inRow < mRows, "invalid vector index!"); in operator []()
176 PACC_AssertM(mRows == inVector.mRows, "operator*() vector mismatch for inner product!"); in operator *()
178 for(unsigned int i = 0; i < mRows; ++i) lResult += (*this)[i] * inVector[i]; in operator *()
186 for(unsigned int i = 0; i < mRows; ++i) lResult += fabs((*this)[i]); in computeL1Norm()
194 for(unsigned int i = 0; i < mRows; ++i) lResult += (*this)[i]*(*this)[i]; in computeL2Norm()
202 for(unsigned int i = 0; i < mRows; ++i) lResult += (*this)[i]*(*this)[i]; in computeL2Norm2()
210 for(unsigned int i = 0; i < mRows; ++i) if(lResult < fabs((*this)[i])) lResult = (*this)[i]; in computeLinfNorm()
241 return mRows; in size()
/dports/www/firefox-legacy/firefox-52.8.0esr/layout/xul/tree/
H A DnsTreeContentView.cpp134 *aRowCount = mRows.Length(); in NS_IMPL_CYCLE_COLLECTION()
174 Row* row = mRows[aIndex].get(); in GetRowProperties()
197 Row* row = mRows[aRow].get(); in GetCellProperties()
368 Row* row = mRows[aRow].get(); in GetImageSrc()
391 Row* row = mRows[aRow].get(); in GetProgressMode()
420 Row* row = mRows[aRow].get(); in GetCellValue()
444 Row* row = mRows[aRow].get(); in GetCellText()
590 Row* row = mRows[aRow].get(); in IsEditable()
615 Row* row = mRows[aRow].get(); in IsSelectable()
638 Row* row = mRows[aRow].get(); in SetCellValue()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/xul/templates/
H A DnsXULTreeBuilder.cpp218 nsTreeRows mRows; member in nsXULTreeBuilder
305 int32_t count = mRows.Count(); in Uninit()
306 mRows.Clear(); in Uninit()
339 if (iter == mRows.Last()) in GetIndexOfResource()
411 SortSubtree(mRows.GetRoot()); in Sort()
412 mRows.InvalidateCachedRow(); in Sort()
429 *aRowCount = mRows.Count(); in GetRowCount()
1032 mRows.FindByResource(aResource) != mRows.Last()) in HasGeneratedContent()
1062 if (iter == mRows.Last()) in GetInsertionLocations()
1093 if (iter == mRows.Last()) in ReplaceMatch()
[all …]
H A DnsTreeRows.cpp223 delete mRows[i].mSubtree; in Clear()
225 delete[] mRows; in Clear()
227 mRows = nullptr; in Clear()
241 newRows[i] = mRows[i]; in InsertRowAt()
243 delete[] mRows; in InsertRowAt()
245 mRows = newRows; in InsertRowAt()
250 mRows[i + 1] = mRows[i]; in InsertRowAt()
252 mRows[aIndex].mMatch = aMatch; in InsertRowAt()
256 mRows[aIndex].mSubtree = nullptr; in InsertRowAt()
316 delete mRows[aIndex].mSubtree; in RemoveRowAt()
[all …]
/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/disjunctive/
H A DOsiLinear2MatrVec.cpp76 mRows = 0, in OsiSI2MatrVec() local
122 if (*rub != 0.) r.insert (mRows, *rub); in OsiSI2MatrVec()
123 mRows++; in OsiSI2MatrVec()
133 mRows++; in OsiSI2MatrVec()
153 mRows++; in OsiSI2MatrVec()
161 if (*cub != 0.) r.insert (mRows, *cub); in OsiSI2MatrVec()
162 mRows++; in OsiSI2MatrVec()
168 mSt -= mRows; in OsiSI2MatrVec()
169 mLe -= mRows; in OsiSI2MatrVec()
178 for (int i=0, j=0; i<mRows; i++) { in OsiSI2MatrVec()
[all …]
/dports/misc/actiona/actiona-3.10.1/gui/
H A Dscriptmodelundocommands.cpp35 mRows(rows), in ChangeEnabledCommand()
38 for(int row: mRows) in ChangeEnabledCommand()
52 for(int row: mRows) in redo()
88 mRows(rows), in ChangeColorCommand()
91 for(int row: mRows) in ChangeColorCommand()
307 mRows(rows), in RemoveActionCommand()
417 mRows(rows), in MoveActionOneRowCommand()
428 std::sort(mRows.begin(), mRows.end(), qLess<int>()); in redo()
430 std::sort(mRows.begin(), mRows.end(), qGreater<int>()); in redo()
438 std::sort(mRows.begin(), mRows.end(), qLess<int>()); in undo()
[all …]
/dports/sysutils/plasma5-ksysguard/ksysguard-5.22.0/gui/
H A DWorkSheetSettings.cpp84 mRows = new QSpinBox( group ); in WorkSheetSettings()
85 mRows->setValue( 3 ); in WorkSheetSettings()
86 mRows->setMaximum( 42 ); in WorkSheetSettings()
87 mRows->setMinimum( 1 ); in WorkSheetSettings()
88 groupLayout->addWidget( mRows, row_num, 1 ); in WorkSheetSettings()
89 label->setBuddy( mRows ); in WorkSheetSettings()
100 mRows->setWhatsThis( i18n( "Enter the number of rows the sheet should have." ) ); in WorkSheetSettings()
132 mRows->setValue( rows ); in setRows()
137 return mRows->value(); in rows()
/dports/www/firefox-esr/firefox-91.8.0/dom/html/
H A DHTMLTableElement.cpp141 mRows.Clear(); in EnsureInitialized()
166 mBodyStart = mRows.Length(); in EnsureInitialized()
182 mRows.Clear(); in CleanUp()
211 return mRows.Length(); in NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE()
229 for (auto& node : mRows) { in GetFirstNamedElement()
244 for (auto& node : mRows) { in GetSupportedNames()
478 mRows.RemoveElementsBy( in ContentRemoved()
509 if (mRows) { in ~HTMLTableElement()
525 if (tmp->mRows) {
546 if (!mRows) { in NS_IMPL_CYCLE_COLLECTION_UNLINK()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/dom/html/
H A DHTMLTableElement.cpp141 mRows.Clear(); in EnsureInitialized()
166 mBodyStart = mRows.Length(); in EnsureInitialized()
182 mRows.Clear(); in CleanUp()
211 return mRows.Length(); in NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE()
229 for (auto& node : mRows) { in GetFirstNamedElement()
244 for (auto& node : mRows) { in GetSupportedNames()
478 mRows.RemoveElementsBy( in ContentRemoved()
509 if (mRows) { in ~HTMLTableElement()
525 if (tmp->mRows) {
546 if (!mRows) { in NS_IMPL_CYCLE_COLLECTION_UNLINK()
[all …]
/dports/www/firefox/firefox-99.0/dom/html/
H A DHTMLTableElement.cpp142 mRows.Clear(); in EnsureInitialized()
167 mBodyStart = mRows.Length(); in EnsureInitialized()
183 mRows.Clear(); in CleanUp()
212 return mRows.Length(); in NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE()
230 for (auto& node : mRows) { in GetFirstNamedElement()
245 for (auto& node : mRows) { in GetSupportedNames()
479 mRows.RemoveElementsBy( in ContentRemoved()
510 if (mRows) { in ~HTMLTableElement()
526 if (tmp->mRows) {
547 if (!mRows) { in NS_IMPL_CYCLE_COLLECTION_UNLINK()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/dom/html/
H A DHTMLTableElement.cpp141 mRows.Clear(); in EnsureInitialized()
166 mBodyStart = mRows.Length(); in EnsureInitialized()
182 mRows.Clear(); in CleanUp()
211 return mRows.Length(); in NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE()
229 for (auto& node : mRows) { in GetFirstNamedElement()
244 for (auto& node : mRows) { in GetSupportedNames()
478 mRows.RemoveElementsBy( in ContentRemoved()
509 if (mRows) { in ~HTMLTableElement()
525 if (tmp->mRows) {
546 if (!mRows) { in NS_IMPL_CYCLE_COLLECTION_UNLINK()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/layout/xul/tree/
H A DnsTreeContentView.cpp121 *aRowCount = mRows.Length(); in GetRowCount()
165 Row* row = mRows[aRow].get(); in GetRowProperties()
193 Row* row = mRows[aRow].get(); in GetCellProperties()
253 return mRows[aRow]->IsOpen(); in IsContainerOpen()
269 return mRows[aRow]->IsEmpty(); in IsContainerEmpty()
399 Row* row = mRows[aRow].get(); in GetLevel()
421 Row* row = mRows[aRow].get(); in GetImageSrc()
448 Row* row = mRows[aRow].get(); in GetCellValue()
475 Row* row = mRows[aRow].get(); in GetCellText()
541 Row* row = mRows[aRow].get(); in ToggleOpenState()
[all …]
/dports/www/firefox/firefox-99.0/layout/xul/tree/
H A DnsTreeContentView.cpp121 *aRowCount = mRows.Length(); in GetRowCount()
165 Row* row = mRows[aRow].get(); in GetRowProperties()
193 Row* row = mRows[aRow].get(); in GetCellProperties()
253 return mRows[aRow]->IsOpen(); in IsContainerOpen()
269 return mRows[aRow]->IsEmpty(); in IsContainerEmpty()
399 Row* row = mRows[aRow].get(); in GetLevel()
421 Row* row = mRows[aRow].get(); in GetImageSrc()
448 Row* row = mRows[aRow].get(); in GetCellValue()
475 Row* row = mRows[aRow].get(); in GetCellText()
541 Row* row = mRows[aRow].get(); in ToggleOpenState()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/layout/xul/tree/
H A DnsTreeContentView.cpp121 *aRowCount = mRows.Length(); in GetRowCount()
165 Row* row = mRows[aRow].get(); in GetRowProperties()
193 Row* row = mRows[aRow].get(); in GetCellProperties()
253 return mRows[aRow]->IsOpen(); in IsContainerOpen()
269 return mRows[aRow]->IsEmpty(); in IsContainerEmpty()
399 Row* row = mRows[aRow].get(); in GetLevel()
421 Row* row = mRows[aRow].get(); in GetImageSrc()
448 Row* row = mRows[aRow].get(); in GetCellValue()
475 Row* row = mRows[aRow].get(); in GetCellText()
541 Row* row = mRows[aRow].get(); in ToggleOpenState()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/layout/xul/tree/
H A DnsTreeContentView.cpp121 *aRowCount = mRows.Length(); in GetRowCount()
165 Row* row = mRows[aRow].get(); in GetRowProperties()
193 Row* row = mRows[aRow].get(); in GetCellProperties()
253 return mRows[aRow]->IsOpen(); in IsContainerOpen()
269 return mRows[aRow]->IsEmpty(); in IsContainerEmpty()
399 Row* row = mRows[aRow].get(); in GetLevel()
421 Row* row = mRows[aRow].get(); in GetImageSrc()
448 Row* row = mRows[aRow].get(); in GetCellValue()
475 Row* row = mRows[aRow].get(); in GetCellText()
541 Row* row = mRows[aRow].get(); in ToggleOpenState()
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/core/
H A Dqgsqueryresultmodel.cpp35 mRows.reserve( mQueryResult.rowCount() ); in QgsQueryResultModel()
41 beginInsertRows( QModelIndex(), mRows.count( ), mRows.count( ) + rows.count() - 1 ); in rowsReady()
42 mRows.append( rows ); in rowsReady()
51 return mQueryResult.rowCount() < 0 || mRows.length() < mQueryResult.rowCount(); in canFetchMore()
100 return mRows.count(); in rowCount()
113 index.row() >= mRows.count( ) ) in data()
120 const QList<QVariant> result = mRows.at( index.row() ); in data()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/html/
H A DHTMLTableElement.cpp141 mRows.Clear(); in EnsureInitialized()
166 mBodyStart = mRows.Length(); in EnsureInitialized()
182 mRows.Clear(); in CleanUp()
211 return mRows.Length(); in NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE()
229 for (auto& node : mRows) { in GetFirstNamedElement()
244 for (auto& node : mRows) { in GetSupportedNames()
478 mRows.RemoveElementsBy( in ContentRemoved()
508 if (mRows) { in ~HTMLTableElement()
524 if (tmp->mRows) {
545 if (!mRows) { in NS_IMPL_CYCLE_COLLECTION_UNLINK()
[all …]

12345678910