Lines Matching refs:pSearchItem

82     pSearchItem = new SvxSearchItem( SCITEM_SEARCHDATA );  in ScCellSearchObj()
84 pSearchItem->SetWordOnly(sal_False); in ScCellSearchObj()
85 pSearchItem->SetExact(sal_False); in ScCellSearchObj()
86 pSearchItem->SetMatchFullHalfWidthForms(sal_False); in ScCellSearchObj()
87 pSearchItem->SetUseAsianOptions(sal_False); // or all asian bits would have to be handled in ScCellSearchObj()
88 pSearchItem->SetBackward(sal_False); in ScCellSearchObj()
89 pSearchItem->SetSelection(sal_False); in ScCellSearchObj()
90 pSearchItem->SetRegExp(sal_False); in ScCellSearchObj()
91 pSearchItem->SetPattern(sal_False); in ScCellSearchObj()
92 pSearchItem->SetLevenshtein(sal_False); in ScCellSearchObj()
93 pSearchItem->SetLEVRelaxed(sal_False); in ScCellSearchObj()
94 pSearchItem->SetLEVOther(2); in ScCellSearchObj()
95 pSearchItem->SetLEVShorter(2); in ScCellSearchObj()
96 pSearchItem->SetLEVLonger(2); in ScCellSearchObj()
98 pSearchItem->SetRowDirection(sal_False); in ScCellSearchObj()
99 pSearchItem->SetCellType(SVX_SEARCHIN_FORMULA); in ScCellSearchObj()
106 delete pSearchItem; in ~ScCellSearchObj()
114 return pSearchItem->GetSearchString(); in getSearchString()
121 pSearchItem->SetSearchString( aString ); in setSearchString()
129 return pSearchItem->GetReplaceString(); in getReplaceString()
136 pSearchItem->SetReplaceString( aReplaceString ); in setReplaceString()
159 …if (aString.EqualsAscii( SC_UNO_SRCHBACK )) pSearchItem->SetBackward( ScUnoHelpFunctions::GetB… in setPropertyValue()
160 …else if (aString.EqualsAscii( SC_UNO_SRCHBYROW )) pSearchItem->SetRowDirection( ScUnoHelpFunction… in setPropertyValue()
161 …else if (aString.EqualsAscii( SC_UNO_SRCHCASE )) pSearchItem->SetExact( ScUnoHelpFunctions::GetB… in setPropertyValue()
162 …else if (aString.EqualsAscii( SC_UNO_SRCHREGEXP )) pSearchItem->SetRegExp( ScUnoHelpFunctions::Get… in setPropertyValue()
163 …else if (aString.EqualsAscii( SC_UNO_SRCHSIM )) pSearchItem->SetLevenshtein( ScUnoHelpFunctions… in setPropertyValue()
164 …else if (aString.EqualsAscii( SC_UNO_SRCHSIMREL )) pSearchItem->SetLEVRelaxed( ScUnoHelpFunctions:… in setPropertyValue()
165 …else if (aString.EqualsAscii( SC_UNO_SRCHSTYLES )) pSearchItem->SetPattern( ScUnoHelpFunctions::Ge… in setPropertyValue()
166 …else if (aString.EqualsAscii( SC_UNO_SRCHWORDS )) pSearchItem->SetWordOnly( ScUnoHelpFunctions::G… in setPropertyValue()
167 …else if (aString.EqualsAscii( SC_UNO_SRCHSIMADD )) pSearchItem->SetLEVLonger( ScUnoHelpFunctions::… in setPropertyValue()
168 …else if (aString.EqualsAscii( SC_UNO_SRCHSIMEX )) pSearchItem->SetLEVOther( ScUnoHelpFunctions::G… in setPropertyValue()
169 …else if (aString.EqualsAscii( SC_UNO_SRCHSIMREM )) pSearchItem->SetLEVShorter( ScUnoHelpFunctions:… in setPropertyValue()
170 …else if (aString.EqualsAscii( SC_UNO_SRCHTYPE )) pSearchItem->SetCellType( ScUnoHelpFunctions::G… in setPropertyValue()
181 …sAscii( SC_UNO_SRCHBACK )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->GetBackward() … in getPropertyValue()
182 …alsAscii( SC_UNO_SRCHBYROW )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->GetRowDirectio… in getPropertyValue()
183 …qualsAscii( SC_UNO_SRCHCASE )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->GetExact() ); in getPropertyValue()
184 …ualsAscii( SC_UNO_SRCHREGEXP )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->GetRegExp() ); in getPropertyValue()
185 …alsAscii( SC_UNO_SRCHSIM )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->IsLevenshtein(… in getPropertyValue()
186 …alsAscii( SC_UNO_SRCHSIMREL )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->IsLEVRelaxed()… in getPropertyValue()
187 …alsAscii( SC_UNO_SRCHSTYLES )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->GetPattern() ); in getPropertyValue()
188 …alsAscii( SC_UNO_SRCHWORDS )) ScUnoHelpFunctions::SetBoolInAny( aRet, pSearchItem->GetWordOnly() … in getPropertyValue()
189 …else if (aString.EqualsAscii( SC_UNO_SRCHSIMADD )) aRet <<= (sal_Int16) pSearchItem->GetLEVLonger(… in getPropertyValue()
190 else if (aString.EqualsAscii( SC_UNO_SRCHSIMEX )) aRet <<= (sal_Int16) pSearchItem->GetLEVOther(); in getPropertyValue()
191 …else if (aString.EqualsAscii( SC_UNO_SRCHSIMREM )) aRet <<= (sal_Int16) pSearchItem->GetLEVShorter… in getPropertyValue()
192 else if (aString.EqualsAscii( SC_UNO_SRCHTYPE )) aRet <<= (sal_Int16) pSearchItem->GetCellType(); in getPropertyValue()