Lines Matching refs:aCellsIter
348 ScSolverCellHashMap::iterator aCellsIter; in solve() local
349 for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); ++aCellsIter ) in solve()
351 double fValue = lcl_GetValue( mxDoc, aCellsIter->first ); in solve()
352 … aCellsIter->second.push_back( fValue ); // store as first element, as-is in solve()
361 for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); ++aCellsIter ) in solve()
363 double fChanged = lcl_GetValue( mxDoc, aCellsIter->first ); in solve()
364 double fInitial = aCellsIter->second.front(); in solve()
365 aCellsIter->second.push_back( fChanged - fInitial ); in solve()
370 for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); ++aCellsIter ) in solve()
372 double fInitial = aCellsIter->second.front(); in solve()
373 … double fCoeff = aCellsIter->second.back(); // last appended: coefficient for this variable in solve()
374 double fTwo = lcl_GetValue( mxDoc, aCellsIter->first ); in solve()