Lines Matching refs:rTxt
40 sal_Int32 GetNumControlChars( const OUString &rTxt ) in GetNumControlChars() argument
43 sal_Int32 nLen = rTxt.getLength(); in GetNumControlChars()
46 if (IsControlChar( rTxt[i] )) in GetNumControlChars()
53 sal_Bool RemoveHyphens( OUString &rTxt ) in RemoveHyphens() argument
56 if (HasHyphens( rTxt )) in RemoveHyphens()
58 String aTmp( rTxt ); in RemoveHyphens()
61 rTxt = aTmp; in RemoveHyphens()
68 sal_Bool RemoveControlChars( OUString &rTxt ) in RemoveControlChars() argument
71 sal_Int32 nCtrlChars = GetNumControlChars( rTxt ); in RemoveControlChars()
74 sal_Int32 nLen = rTxt.getLength(); in RemoveControlChars()
81 sal_Unicode cChar = rTxt[i]; in RemoveControlChars()
89 rTxt = aBuf.makeStringAndClear(); in RemoveControlChars()
99 sal_Bool ReplaceControlChars( rtl::OUString &rTxt, sal_Char /*aRplcChar*/ ) in ReplaceControlChars() argument
106 sal_Int32 nCtrlChars = GetNumControlChars( rTxt ); in ReplaceControlChars()
109 sal_Int32 nLen = rTxt.getLength(); in ReplaceControlChars()
114 sal_Unicode cChar = rTxt[i]; in ReplaceControlChars()
124 rTxt = aBuf.makeStringAndClear(); in ReplaceControlChars()