Lines Matching refs:tmp
92 OUString tmp( aData.getStr(), aData.getLength(), RTL_TEXTENCODING_UTF8); in deleteData() local
93 if (offset > tmp.getLength() || offset < 0 || count < 0) { in deleteData()
98 if ((offset+count) > tmp.getLength()) in deleteData()
99 count = tmp.getLength() - offset; in deleteData()
101 OUString tmp2 = tmp.copy(0, offset); in deleteData()
102 tmp2 += tmp.copy(offset+count, tmp.getLength() - (offset+count)); in deleteData()
163 OUString tmp( aData.getStr(), aData.getLength(), RTL_TEXTENCODING_UTF8); in insertData() local
164 if (offset > tmp.getLength() || offset < 0) { in insertData()
170 OUString tmp2 = tmp.copy(0, offset); in insertData()
172 tmp2 += tmp.copy(offset, tmp.getLength() - offset); in insertData()
198 OUString tmp( aData.getStr(), aData.getLength(), RTL_TEXTENCODING_UTF8); in replaceData() local
199 if (offset > tmp.getLength() || offset < 0 || count < 0){ in replaceData()
204 if ((offset+count) > tmp.getLength()) in replaceData()
205 count = tmp.getLength() - offset; in replaceData()
207 OUString tmp2 = tmp.copy(0, offset); in replaceData()
209 tmp2 += tmp.copy(offset+count, tmp.getLength() - (offset+count)); in replaceData()
253 OUString tmp( aData.getStr(), aData.getLength(), RTL_TEXTENCODING_UTF8); in subStringData() local
254 if (offset > tmp.getLength() || offset < 0 || count < 0) { in subStringData()
259 aStr = tmp.copy(offset, count); in subStringData()