Lines Matching refs:aWord

206             String aWord, Locale aLocale,  in hyphenate()  argument
211 if (IsEqual( aLocale, new Locale() ) || aWord.length() == 0) in hyphenate()
232 if (aWord.length() >= nHyphMinWordLen) in hyphenate()
234 String aHyphenatedWord = aWord; in hyphenate()
242 if (bIsGermanPreReform && aWord.equals( "Schiffahrt" )) in hyphenate()
251 else if (!bIsGermanPreReform && aWord.equals( "Schifffahrt" )) in hyphenate()
258 int nLast = aWord.length() - 1 - nHyphMinTrailing; in hyphenate()
260 if ( aWord.equals( "waterfall" ) ) in hyphenate()
267 else if ( aWord.equals( "driving" ) ) in hyphenate()
277 !(nHyphenationPos >= aWord.length() - nHyphMinTrailing)) in hyphenate()
279 xRes = new XHyphenatedWord_impl(aWord, aLocale, in hyphenate()
287 String aWord, Locale aLocale, in queryAlternativeSpelling() argument
292 if (IsEqual( aLocale, new Locale() ) || aWord.length() == 0) in queryAlternativeSpelling()
320 if (aWord.equals( "Schiffahrt" ) && in queryAlternativeSpelling()
323 xRes = new XHyphenatedWord_impl(aWord, aLocale, in queryAlternativeSpelling()
336 String aWord, Locale aLocale, in createPossibleHyphens() argument
341 if (IsEqual( aLocale, new Locale() ) || aWord.length() == 0) in createPossibleHyphens()
366 if (bIsGermanPreReform && aWord.equals( "Schiffahrt" )) in createPossibleHyphens()
369 xRes = new XPossibleHyphens_impl(aWord, aLocale, in createPossibleHyphens()
372 else if (!bIsGermanPreReform && aWord.equals( "Schifffahrt" )) in createPossibleHyphens()
375 xRes = new XPossibleHyphens_impl(aWord, aLocale, in createPossibleHyphens()
381 if ( aWord.equals( "waterfall" ) ) in createPossibleHyphens()
385 xRes = new XPossibleHyphens_impl(aWord, aLocale, in createPossibleHyphens()
388 else if ( aWord.equals( "driving" ) ) in createPossibleHyphens()
392 xRes = new XPossibleHyphens_impl(aWord, aLocale, in createPossibleHyphens()