Lines Matching refs:in

8  * "License"); you may not use this file except in compliance
13 * Unless required by applicable law or agreed to in writing,
53 contains the base routines for iteration in Unicode string. Iterates over
62 /** Traverses specified number of characters/cells in Text from
69 If you want to traverse in the opposite direction use
72 long nextCharacters( [in] string aText, [in] long nStartPos,
73 [in] ::com::sun::star::lang::Locale aLocale,
74 [in] short nCharacterIteratorMode,
75 [in] long nCount, [out] long nDone );
78 /** Traverses specified number of characters/cells in Text from
85 If you want to traverse in the opposite direction use
88 long previousCharacters( [in] string aText, [in] long nStartPos,
89 [in] ::com::sun::star::lang::Locale aLocale,
90 [in] short nCharacterIteratorMode,
91 [in] long nCount, [out] long nDone );
94 /** Traverses one word in Text from <em>nStartPos</em> forwards.
104 Boundary nextWord( [in] string aText, [in] long nStartPos,
105 [in] ::com::sun::star::lang::Locale aLocale,
106 [in] short nWordType);
109 /** Traverses one word in Text from <em>nStartPos</em> backwards.
118 wordbreak dictionaries, the method will return -1 in
120 Asian character (i.e. the space character) in
130 This is fixed in later versions. </p>
140 Boundary previousWord( [in] string aText, [in] long nStartPos,
141 [in] ::com::sun::star::lang::Locale aLocale,
142 [in] short nWordType);
162 Boundary getWordBoundary( [in] string aText, [in] long nPos,
163 [in] ::com::sun::star::lang::Locale aLocale,
164 [in] short nWordType,
165 [in] boolean bPreferForward );
178 short getWordType( [in] string aText, [in] long nPos,
179 [in] ::com::sun::star::lang::Locale aLocale);
191 boolean isBeginWord( [in] string aText, [in] long nPos,
192 [in] ::com::sun::star::lang::Locale aLocale,
193 [in] short nWordType);
198 boolean isEndWord( [in] string aText, [in] long nPos,
199 [in] ::com::sun::star::lang::Locale aLocale,
200 [in] short nWordType);
203 /** Traverses in Text from <em>nStartPos</em> to the start of a
209 long beginOfSentence( [in] string aText, [in] long nStartPos,
210 [in] ::com::sun::star::lang::Locale aLocale );
213 /** Traverses in Text from <em>nStartPos</em> to the end of a
219 long endOfSentence( [in] string aText, [in] long nStartPos,
220 [in] ::com::sun::star::lang::Locale aLocale );
223 /** Calculate the line break position in the Text from the specified
229 <em>nMinBreakPos</em>, break position in
244 LineBreakResults getLineBreak( [in] string aText, [in] long nStartPos,
245 [in] ::com::sun::star::lang::Locale aLocale,
246 [in] long nMinBreakPos,
247 [in] LineBreakHyphenationOptions aHyphOptions,
248 [in] LineBreakUserOptions aUserOptions );
251 /** Traverses in Text from <em>nStartPos</em> to the beginning of
260 long beginOfScript( [in] string aText, [in] long nStartPos,
261 [in] short nScriptType );
264 /** Traverses in Text from <em>nStartPos</em> to the end of the
273 long endOfScript( [in] string aText, [in] long nStartPos,
274 [in] short nScriptType );
277 /** Traverses in Text from <em>nStartPos</em> to the next start of
286 long nextScript( [in] string aText, [in] long nStartPos,
287 [in] short nScriptType );
290 /** Traverses in Text from <em>nStartPos</em> to the previous start
299 long previousScript( [in] string aText, [in] long nStartPos,
300 [in] short nScriptType );
308 short getScriptType( [in] string aText, [in] long nPos);
311 /** Traverses in Text from <em>nStartPos</em> to the beginning of
320 long beginOfCharBlock( [in] string aText, [in] long nStartPos,
321 [in] ::com::sun::star::lang::Locale aLocale,
322 [in] short nCharType );
325 /** Traverses in Text from <em>nStartPos</em> to the end of the
334 long endOfCharBlock( [in] string aText, [in] long nStartPos,
335 [in] ::com::sun::star::lang::Locale aLocale,
336 [in] short nCharType );
339 /** Traverses in Text from <em>nStartPos</em> to the next start of
348 long nextCharBlock( [in] string aText, [in] long nStartPos,
349 [in] ::com::sun::star::lang::Locale aLocale,
350 [in] short nCharType );
353 /** Traverses in Text from <em>nStartPos</em> to the previous start
362 long previousCharBlock ( [in] string aText, [in] long nStartPos,
363 [in] ::com::sun::star::lang::Locale aLocale,
364 [in] short nCharType );