Lines Matching refs:nRes

1155         short nRes = sal_True;  in ScAnd()  local
1165 nRes &= ( PopDouble() != 0.0 ); in ScAnd()
1181 nRes &= ( GetCellValue( aAdr, pCell ) != 0.0 ); in ScAnd()
1202 nRes &= ( fVal != 0.0 ); in ScAnd()
1221 nRes = sal_False; in ScAnd()
1224 nRes &= (fVal != 0.0); in ScAnd()
1238 PushInt( nRes ); in ScAnd()
1253 short nRes = sal_False; in ScOr() local
1263 nRes |= ( PopDouble() != 0.0 ); in ScOr()
1279 nRes |= ( GetCellValue( aAdr, pCell ) != 0.0 ); in ScOr()
1300 nRes |= ( fVal != 0.0 ); in ScOr()
1320 nRes = sal_False; in ScOr()
1323 nRes |= (fVal != 0.0); in ScOr()
1337 PushInt( nRes ); in ScOr()
1351 short nRes = 0; in ScXor() local
1361 nRes ^= ( PopDouble() != 0.0 ); in ScXor()
1377 nRes ^= ( GetCellValue( aAdr, pCell ) != 0.0 ); in ScXor()
1400 nRes ^= ( fVal != 0.0 ); in ScXor()
1420 nRes = 0; in ScXor()
1423 nRes ^= (fVal != 0.0); in ScXor()
1437 PushInt( nRes ); in ScXor()
1757 short nRes = 0; in ScIsEmpty() local
1765 nRes = 1; in ScIsEmpty()
1780 nRes = 1; in ScIsEmpty()
1789 nRes = pMat->IsEmpty( 0 ); in ScIsEmpty()
1796 nRes = pMat->IsEmpty( nC, nR); in ScIsEmpty()
1805 PushInt( nRes ); in ScIsEmpty()
1813 short nRes = 0; in IsString() local
1818 nRes = 1; in IsString()
1833 nRes = 1; in IsString()
1836 nRes = !((ScFormulaCell*)pCell)->IsValue() && in IsString()
1851 nRes = pMat->IsString(0) && !pMat->IsEmpty(0); in IsString()
1858 nRes = pMat->IsString( nC, nR) && !pMat->IsEmpty( nC, nR); in IsString()
1866 return nRes; in IsString()
1887 short nRes = 0; in ScIsLogical() local
1902 nRes = ( pFormatter->GetType(nFormat) in ScIsLogical()
1915 nRes = ( nCurFmtType == NUMBERFORMAT_LOGICAL ); in ScIsLogical()
1919 PushInt( nRes ); in ScIsLogical()
2225 short nRes = 0; in ScIsRef() local
2233 nRes = 1; in ScIsRef()
2241 nRes = 1; in ScIsRef()
2248 nRes = !static_cast<ScToken*>(x.get())->GetRefList()->empty(); in ScIsRef()
2255 PushInt( nRes ); in ScIsRef()
2263 short nRes = 0; in ScIsValue() local
2268 nRes = 1; in ScIsValue()
2282 nRes = 1; in ScIsValue()
2285 nRes = ((ScFormulaCell*)pCell)->IsValue() && in ScIsValue()
2302 nRes = pMat->IsValue( 0 ); in ScIsValue()
2311 nRes = pMat->IsValue( nC, nR); in ScIsValue()
2319 PushInt( nRes ); in ScIsValue()
2327 short nRes = 0; in ScIsFormula() local
2336 nRes = (GetCellType( GetCell( aAdr ) ) == CELLTYPE_FORMULA); in ScIsFormula()
2343 PushInt( nRes ); in ScIsFormula()
2383 short nRes = 0; in ScIsNV() local
2392 nRes = 1; in ScIsNV()
2397 nRes = (nErr == NOTAVAILABLE); in ScIsNV()
2407 nRes = (pMat->GetErrorIfNotString( 0 ) == NOTAVAILABLE); in ScIsNV()
2414 nRes = (pMat->GetErrorIfNotString( nC, nR) == NOTAVAILABLE); in ScIsNV()
2421 nRes = 1; in ScIsNV()
2424 PushInt( nRes ); in ScIsNV()
2432 short nRes = 0; in ScIsErr() local
2441 nRes = 1; in ScIsErr()
2446 nRes = (nErr && nErr != NOTAVAILABLE); in ScIsErr()
2454 nRes = ((nGlobalError && nGlobalError != NOTAVAILABLE) || !pMat); in ScIsErr()
2458 nRes = (nErr && nErr != NOTAVAILABLE); in ScIsErr()
2468 nRes = (nErr && nErr != NOTAVAILABLE); in ScIsErr()
2476 nRes = 1; in ScIsErr()
2479 PushInt( nRes ); in ScIsErr()
2487 short nRes = 0; in ScIsError() local
2496 nRes = 1; in ScIsError()
2500 nRes = 1; in ScIsError()
2504 nRes = (GetCellErrCode( pCell ) != 0); in ScIsError()
2512 nRes = 1; in ScIsError()
2514 nRes = (pMat->GetErrorIfNotString( 0 ) != 0); in ScIsError()
2521 nRes = (pMat->GetErrorIfNotString( nC, nR) != 0); in ScIsError()
2528 nRes = 1; in ScIsError()
2531 PushInt( nRes ); in ScIsError()
2539 short nRes = 0; in IsEven() local
2559 nRes = 1; in IsEven()
2565 nRes = 1; in IsEven()
2577 nRes = 1; in IsEven()
2587 nRes = pMat->IsValue( 0 ); in IsEven()
2588 if ( nRes ) in IsEven()
2598 nRes = pMat->IsValue( nC, nR); in IsEven()
2599 if ( nRes ) in IsEven()
2610 if ( !nRes ) in IsEven()
2613 nRes = ( fmod( ::rtl::math::approxFloor( fabs( fVal ) ), 2.0 ) < 0.5 ); in IsEven()
2614 return nRes; in IsEven()
6147 sal_Int32 nRes = in CalculateLookup() local
6149 if (nRes <= 0) in CalculateLookup()