Lines Matching refs:nRes

1261         short nRes = sal_True;  in ScAnd()  local
1271 nRes &= ( PopDouble() != 0.0 ); in ScAnd()
1287 nRes &= ( GetCellValue( aAdr, pCell ) != 0.0 ); in ScAnd()
1308 nRes &= ( fVal != 0.0 ); in ScAnd()
1327 nRes = sal_False; in ScAnd()
1330 nRes &= (fVal != 0.0); in ScAnd()
1344 PushInt( nRes ); in ScAnd()
1359 short nRes = sal_False; in ScOr() local
1369 nRes |= ( PopDouble() != 0.0 ); in ScOr()
1385 nRes |= ( GetCellValue( aAdr, pCell ) != 0.0 ); in ScOr()
1406 nRes |= ( fVal != 0.0 ); in ScOr()
1426 nRes = sal_False; in ScOr()
1429 nRes |= (fVal != 0.0); in ScOr()
1443 PushInt( nRes ); in ScOr()
1457 short nRes = 0; in ScXor() local
1467 nRes ^= ( PopDouble() != 0.0 ); in ScXor()
1483 nRes ^= ( GetCellValue( aAdr, pCell ) != 0.0 ); in ScXor()
1506 nRes ^= ( fVal != 0.0 ); in ScXor()
1526 nRes = 0; in ScXor()
1529 nRes ^= (fVal != 0.0); in ScXor()
1543 PushInt( nRes ); in ScXor()
1894 short nRes = 0; in ScIsEmpty() local
1902 nRes = 1; in ScIsEmpty()
1917 nRes = 1; in ScIsEmpty()
1926 nRes = pMat->IsEmpty( 0 ); in ScIsEmpty()
1933 nRes = pMat->IsEmpty( nC, nR); in ScIsEmpty()
1942 PushInt( nRes ); in ScIsEmpty()
1950 short nRes = 0; in IsString() local
1955 nRes = 1; in IsString()
1970 nRes = 1; in IsString()
1973 nRes = !((ScFormulaCell*)pCell)->IsValue() && in IsString()
1988 nRes = pMat->IsString(0) && !pMat->IsEmpty(0); in IsString()
1995 nRes = pMat->IsString( nC, nR) && !pMat->IsEmpty( nC, nR); in IsString()
2003 return nRes; in IsString()
2024 short nRes = 0; in ScIsLogical() local
2039 nRes = ( pFormatter->GetType(nFormat) in ScIsLogical()
2052 nRes = ( nCurFmtType == NUMBERFORMAT_LOGICAL ); in ScIsLogical()
2056 PushInt( nRes ); in ScIsLogical()
2362 short nRes = 0; in ScIsRef() local
2370 nRes = 1; in ScIsRef()
2378 nRes = 1; in ScIsRef()
2385 nRes = !static_cast<ScToken*>(x.get())->GetRefList()->empty(); in ScIsRef()
2392 PushInt( nRes ); in ScIsRef()
2400 short nRes = 0; in ScIsValue() local
2405 nRes = 1; in ScIsValue()
2419 nRes = 1; in ScIsValue()
2422 nRes = ((ScFormulaCell*)pCell)->IsValue() && in ScIsValue()
2439 nRes = pMat->IsValue( 0 ); in ScIsValue()
2448 nRes = pMat->IsValue( nC, nR); in ScIsValue()
2456 PushInt( nRes ); in ScIsValue()
2464 short nRes = 0; in ScIsFormula() local
2473 nRes = (GetCellType( GetCell( aAdr ) ) == CELLTYPE_FORMULA); in ScIsFormula()
2480 PushInt( nRes ); in ScIsFormula()
2520 short nRes = 0; in ScIsNV() local
2529 nRes = 1; in ScIsNV()
2534 nRes = (nErr == NOTAVAILABLE); in ScIsNV()
2544 nRes = (pMat->GetErrorIfNotString( 0 ) == NOTAVAILABLE); in ScIsNV()
2551 nRes = (pMat->GetErrorIfNotString( nC, nR) == NOTAVAILABLE); in ScIsNV()
2558 nRes = 1; in ScIsNV()
2561 PushInt( nRes ); in ScIsNV()
2569 short nRes = 0; in ScIsErr() local
2578 nRes = 1; in ScIsErr()
2583 nRes = (nErr && nErr != NOTAVAILABLE); in ScIsErr()
2591 nRes = ((nGlobalError && nGlobalError != NOTAVAILABLE) || !pMat); in ScIsErr()
2595 nRes = (nErr && nErr != NOTAVAILABLE); in ScIsErr()
2605 nRes = (nErr && nErr != NOTAVAILABLE); in ScIsErr()
2613 nRes = 1; in ScIsErr()
2616 PushInt( nRes ); in ScIsErr()
2624 short nRes = 0; in ScIsError() local
2633 nRes = 1; in ScIsError()
2637 nRes = 1; in ScIsError()
2641 nRes = (GetCellErrCode( pCell ) != 0); in ScIsError()
2649 nRes = 1; in ScIsError()
2651 nRes = (pMat->GetErrorIfNotString( 0 ) != 0); in ScIsError()
2658 nRes = (pMat->GetErrorIfNotString( nC, nR) != 0); in ScIsError()
2665 nRes = 1; in ScIsError()
2668 PushInt( nRes ); in ScIsError()
2676 short nRes = 0; in IsEven() local
2696 nRes = 1; in IsEven()
2702 nRes = 1; in IsEven()
2714 nRes = 1; in IsEven()
2724 nRes = pMat->IsValue( 0 ); in IsEven()
2725 if ( nRes ) in IsEven()
2735 nRes = pMat->IsValue( nC, nR); in IsEven()
2736 if ( nRes ) in IsEven()
2747 if ( !nRes ) in IsEven()
2750 nRes = ( fmod( ::rtl::math::approxFloor( fabs( fVal ) ), 2.0 ) < 0.5 ); in IsEven()
2751 return nRes; in IsEven()
6284 sal_Int32 nRes = in CalculateLookup() local
6286 if (nRes <= 0) in CalculateLookup()