Lines Matching refs:rText
70 sal_Bool HasEntry( const OUString &rText ) const;
81 void Prepend( const OUString &rText );
85 void Remove( const OUString &rText );
90 sal_Bool ProposalList::HasEntry( const OUString &rText ) const in HasEntry()
96 if (aVec[i] == rText) in HasEntry()
102 void ProposalList::Prepend( const OUString &rText ) in Prepend() argument
104 if (!HasEntry( rText )) in Prepend()
105 aVec.insert( aVec.begin(), rText ); in Prepend()
108 void ProposalList::Append( const OUString &rText ) in Append() argument
110 if (!HasEntry( rText )) in Append()
111 aVec.push_back( rText ); in Append()
119 const OUString &rText = rNew[i]; in Append() local
120 if (!HasEntry( rText )) in Append()
121 Append( rText ); in Append()
131 const OUString &rText = pNew[i]; in Append() local
132 if (!HasEntry( rText )) in Append()
133 Append( rText ); in Append()
160 const OUString &rText = aVec[i]; in GetSequence() local
162 if (nIdx < nCount && rText.getLength() > 0) in GetSequence()
163 pRes[ nIdx++ ] = rText; in GetSequence()
168 void ProposalList::Remove( const OUString &rText ) in Remove() argument
174 if (rEntry == rText) in Remove()