Lines Matching refs:nCode
163 sal_Int16 nCode = KeyIdentifierMap[i].Code; in KeyMapping() local
165 m_lIdentifierHash[sIdentifier] = nCode ; in KeyMapping()
166 m_lCodeHash [nCode] = sIdentifier; in KeyMapping()
187 sal_uInt16 nCode = 0; in mapIdentifierToCode() local
188 if (!KeyMapping::impl_st_interpretIdentifierAsPureKeyCode(sIdentifier, nCode)) in mapIdentifierToCode()
194 return (sal_uInt16)nCode; in mapIdentifierToCode()
198 ::rtl::OUString KeyMapping::mapCodeToIdentifier(sal_uInt16 nCode) in mapCodeToIdentifier() argument
200 Code2IdentifierHash::const_iterator pIt = m_lCodeHash.find(nCode); in mapCodeToIdentifier()
205 return ::rtl::OUString::valueOf((sal_Int32)nCode); in mapCodeToIdentifier()
212 sal_Int32 nCode = sIdentifier.toInt32(); in impl_st_interpretIdentifierAsPureKeyCode() local
213 if (nCode > 0) in impl_st_interpretIdentifierAsPureKeyCode()
215 rCode = (sal_uInt16)nCode; in impl_st_interpretIdentifierAsPureKeyCode()