Home
last modified time | relevance | path

Searched refs:nConversionType (Results 1 – 8 of 8) sorted by relevance

/trunk/main/i18npool/source/textconversion/
H A Dtextconversion_zh.cxx224 const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions) in getConversions() argument
229 …result.Candidates[0] = getConversion( aText, nStartPos, nLength, rLocale, nConversionType, nConver… in getConversions()
238 const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions) in getConversion() argument
241 ( nConversionType == TextConversionType::TO_SCHINESE || in getConversion()
242 nConversionType == TextConversionType::TO_TCHINESE) ) { in getConversion()
245 sal_Bool toSChinese = nConversionType == TextConversionType::TO_SCHINESE; in getConversion()
261 …const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions, Sequence<sal_Int32… in getConversionWithOffset() argument
264 ( nConversionType == TextConversionType::TO_SCHINESE || in getConversionWithOffset()
265 nConversionType == TextConversionType::TO_TCHINESE) ) { in getConversionWithOffset()
268 sal_Bool toSChinese = nConversionType == TextConversionType::TO_SCHINESE; in getConversionWithOffset()
H A Dtextconversion_ko.cxx204 const Locale& aLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions) in getConversions() argument
211 if (nConversionType == TextConversionType::TO_HANGUL || in getConversions()
212 nConversionType == TextConversionType::TO_HANJA) { in getConversions()
222 sal_Bool toHanja = (nConversionType == TextConversionType::TO_HANJA); in getConversions()
233 if (nConversionType == TextConversionType::TO_HANJA) { in getConversions()
293 const Locale& aLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions) in getConversion() argument
308 …result = getConversions(aText, start, length + nStartPos - start, aLocale, nConversionType, nConve… in getConversion()
326 …const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions, Sequence<sal_Int32… in getConversionWithOffset() argument
329 return getConversion(aText, nStartPos, nLength, rLocale, nConversionType, nConversionOptions); in getConversionWithOffset()
H A DtextconversionImpl.cxx38 const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions) in getConversions() argument
45 …return xTC->getConversions(aText, nStartPos, nLength, rLocale, nConversionType, nConversionOptions… in getConversions()
50 const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions) in getConversion() argument
57 …return xTC->getConversion(aText, nStartPos, nLength, rLocale, nConversionType, nConversionOptions); in getConversion()
62 …const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions, Sequence< sal_Int3… in getConversionWithOffset() argument
69 …return xTC->getConversionWithOffset(aText, nStartPos, nLength, rLocale, nConversionType, nConversi… in getConversionWithOffset()
/trunk/main/linguistic/source/
H A Dconvdicxml.cxx76 static const OUString ConversionTypeToText( sal_Int16 nConversionType ) in ConversionTypeToText() argument
79 if (nConversionType == ConversionDictionaryType::HANGUL_HANJA) in ConversionTypeToText()
81 else if (nConversionType == ConversionDictionaryType::SCHINESE_TCHINESE) in ConversionTypeToText()
129 sal_Int16 nConversionType; member in ConvDicXMLDictionaryContext_Impl
137 nConversionType = -1; in ConvDicXMLDictionaryContext_Impl()
145 sal_Int16 GetConversionType() const { return nConversionType; } in GetConversionType()
248 nConversionType = GetConversionTypeFromText( aValue ); in StartElement()
251 GetConvDicImport().SetConversionType( nConversionType ); in StartElement()
357 OUString aConvType( ConversionTypeToText( rDic.nConversionType ) ); in exportDoc()
H A Dconvdicxml.hxx89 sal_Int16 nConversionType; // conversion type the dictionary is used for member in ConvDicXMLImport
100 nConversionType = -1; in ConvDicXMLImport()
120 sal_Int16 GetConversionType() const { return nConversionType; } in GetConversionType()
124 void SetConversionType( sal_Int16 nType ) { nConversionType = nType; } in SetConversionType()
H A Dconvdic.hxx104 sal_Int16 nConversionType; member in ConvDic
124 sal_Int16 nConversionType,
H A Dconvdic.cxx212 nConversionType = nConvType; in ConvDic()
416 return nConversionType; in getConversionType()
/trunk/main/editeng/source/misc/
H A Dhangulhanja.cxx367 sal_Int16 nConversionType = -1; in implGetConversionType() local
369nConversionType = HHC::eHangulToHanja == ( m_eCurrentConversionDirection && !bSwitchDirection ) ? … in implGetConversionType()
371nConversionType = LANGUAGE_CHINESE_SIMPLIFIED == m_nTargetLang ? TO_SCHINESE : TO_TCHINESE; in implGetConversionType()
372 DBG_ASSERT( nConversionType != -1, "unexpected conversion type" ); in implGetConversionType()
373 return nConversionType; in implGetConversionType()