Lines Matching refs:aCellsIter
345 ScSolverCellHashMap::iterator aCellsIter; in solve() local
346 for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); ++aCellsIter ) in solve()
348 double fValue = lcl_GetValue( mxDoc, aCellsIter->first ); in solve()
349 … aCellsIter->second.push_back( fValue ); // store as first element, as-is in solve()
358 for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); ++aCellsIter ) in solve()
360 double fChanged = lcl_GetValue( mxDoc, aCellsIter->first ); in solve()
361 double fInitial = aCellsIter->second.front(); in solve()
362 aCellsIter->second.push_back( fChanged - fInitial ); in solve()
367 for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); ++aCellsIter ) in solve()
369 double fInitial = aCellsIter->second.front(); in solve()
370 … double fCoeff = aCellsIter->second.back(); // last appended: coefficient for this variable in solve()
371 double fTwo = lcl_GetValue( mxDoc, aCellsIter->first ); in solve()