Lines Matching refs:bIsRow

74 bool    lcl_CheckRepeatString( const String& rStr, ScDocument* pDoc, bool bIsRow, ScRange* pRange );
75 void lcl_GetRepeatRangeString( const ScRange* pRange, ScDocument* pDoc, bool bIsRow, String& rStr );
700 bool lcl_CheckOne_OOO( const String& rStr, bool bIsRow, SCCOLROW& rVal ) in lcl_CheckOne_OOO() argument
709 sal_Bool bStrOk = ( nLen > 0 ) && ( bIsRow ? ( nLen < 6 ) : ( nLen < 4 ) ); in lcl_CheckOne_OOO()
716 if ( bIsRow ) in lcl_CheckOne_OOO()
742 bool lcl_CheckOne_XL_A1( const String& rStr, bool bIsRow, SCCOLROW& rVal ) in lcl_CheckOne_XL_A1() argument
745 return lcl_CheckOne_OOO(rStr, bIsRow, rVal); in lcl_CheckOne_XL_A1()
748 bool lcl_CheckOne_XL_R1C1( const String& rStr, bool bIsRow, SCCOLROW& rVal ) in lcl_CheckOne_XL_R1C1() argument
755 const sal_Unicode preUpper = bIsRow ? 'R' : 'C'; in lcl_CheckOne_XL_R1C1()
756 const sal_Unicode preLower = bIsRow ? 'r' : 'c'; in lcl_CheckOne_XL_R1C1()
769 if ((bIsRow && nNum > MAXROWCOUNT) || (!bIsRow && nNum > MAXCOLCOUNT)) in lcl_CheckOne_XL_R1C1()
776 …const String& rStr, formula::FormulaGrammar::AddressConvention eConv, bool bIsRow, SCCOLROW& rVal ) in lcl_CheckRepeatOne() argument
781 return lcl_CheckOne_OOO(rStr, bIsRow, rVal); in lcl_CheckRepeatOne()
783 return lcl_CheckOne_XL_A1(rStr, bIsRow, rVal); in lcl_CheckRepeatOne()
785 return lcl_CheckOne_XL_R1C1(rStr, bIsRow, rVal); in lcl_CheckRepeatOne()
794 bool lcl_CheckRepeatString( const String& rStr, ScDocument* pDoc, bool bIsRow, ScRange* pRange ) in lcl_CheckRepeatString() argument
828 bool bRes = lcl_CheckRepeatOne(aBuf, eConv, bIsRow, nVal); in lcl_CheckRepeatString()
834 if (bIsRow) in lcl_CheckRepeatString()
855 bool bRes = lcl_CheckRepeatOne(aBuf, eConv, bIsRow, nVal); in lcl_CheckRepeatString()
861 if (bIsRow) in lcl_CheckRepeatString()
881 void lcl_GetRepeatRangeString( const ScRange* pRange, ScDocument* pDoc, bool bIsRow, String& rStr ) in lcl_GetRepeatRangeString() argument
891 …const sal_uInt16 nFmt = bIsRow ? (SCA_VALID_ROW | SCA_ROW_ABSOLUTE) : (SCA_VALID_COL | SCA_COL_ABS… in lcl_GetRepeatRangeString()
895 if ((bIsRow && rStart.Row() != rEnd.Row()) || (!bIsRow && rStart.Col() != rEnd.Col())) in lcl_GetRepeatRangeString()