Lines Matching refs:maSentence

42     maSentence = ((const SwGrammarMarkUp&)rCopy).maSentence;  in CopyFrom()
50 if( !maSentence.size() ) in MoveGrammar()
52 std::vector< xub_StrLen >::iterator pIter = maSentence.begin(); in MoveGrammar()
53 while( pIter != maSentence.end() && *pIter < nPos ) in MoveGrammar()
56 while( pIter != maSentence.end() ) in MoveGrammar()
69 if( !maSentence.size() ) in SplitGrammarList()
71 std::vector< xub_StrLen >::iterator pIter = maSentence.begin(); in SplitGrammarList()
72 while( pIter != maSentence.end() && *pIter < nSplitPos ) in SplitGrammarList()
74 if( pIter != maSentence.begin() ) in SplitGrammarList()
80 pNew->maSentence.insert( pNew->maSentence.begin(), maSentence.begin(), pIter ); in SplitGrammarList()
81 maSentence.erase( maSentence.begin(), pIter ); in SplitGrammarList()
91 if( !pNext->maSentence.size() ) in JoinGrammarList()
93 std::vector< xub_StrLen >::iterator pIter = pNext->maSentence.begin(); in JoinGrammarList()
94 while( pIter != pNext->maSentence.end() ) in JoinGrammarList()
99 maSentence.insert( maSentence.end(), pNext->maSentence.begin(), pNext->maSentence.end() ); in JoinGrammarList()
107 maSentence.clear(); in ClearGrammarList()
110 std::vector< xub_StrLen >::iterator pIter = maSentence.begin(); in ClearGrammarList()
112 while( pIter != maSentence.end() && *pIter < GetBeginInv() ) in ClearGrammarList()
118 while( pLast != maSentence.end() && *pLast <= nSentenceEnd ) in ClearGrammarList()
120 maSentence.erase( pIter, pLast ); in ClearGrammarList()
128 std::vector< xub_StrLen >::iterator pIter = maSentence.begin(); in setSentence()
129 while( pIter != maSentence.end() && *pIter < nStart ) in setSentence()
131 if( pIter == maSentence.end() || *pIter > nStart ) in setSentence()
132 maSentence.insert( pIter, nStart ); in setSentence()
137 if( !maSentence.size() ) in getSentenceStart()
139 std::vector< xub_StrLen >::iterator pIter = maSentence.begin(); in getSentenceStart()
140 while( pIter != maSentence.end() && *pIter < nPos ) in getSentenceStart()
142 if( pIter != maSentence.begin() ) in getSentenceStart()
145 if( pIter != maSentence.end() && *pIter < nPos ) in getSentenceStart()
152 if( !maSentence.size() ) in getSentenceEnd()
154 std::vector< xub_StrLen >::iterator pIter = maSentence.begin(); in getSentenceEnd()
155 while( pIter != maSentence.end() && *pIter <= nPos ) in getSentenceEnd()
158 if( pIter != maSentence.end() ) in getSentenceEnd()