Lines Matching refs:nKey

1086     sal_Int64 nKey;  in processConfigItem()  local
1087 if( StringHelper::convertStringToInt( nKey, rKey ) ) in processConfigItem()
1088 implProcessConfigItemInt( rStrm, nKey, rData ); in processConfigItem()
1099 void NameListBase::setName( sal_Int64 nKey, const String& rName ) in setName() argument
1101 implSetName( nKey, rName ); in setName()
1131 TextInputStream& /*rStrm*/, sal_Int64 nKey, const OUString& rData ) in implProcessConfigItemInt() argument
1133 implSetName( nKey, rData ); in implProcessConfigItemInt()
1136 void NameListBase::insertRawName( sal_Int64 nKey, const OUString& rName ) in insertRawName() argument
1138 maMap[ nKey ] = rName; in insertRawName()
1141 const OUString* NameListBase::findRawName( sal_Int64 nKey ) const in findRawName()
1143 const_iterator aIt = maMap.find( nKey ); in findRawName()
1192 void ConstList::implSetName( sal_Int64 nKey, const OUString& rName ) in implSetName() argument
1194 insertRawName( nKey, rName ); in implSetName()
1197 OUString ConstList::implGetName( const Config& /*rCfg*/, sal_Int64 nKey ) const in implGetName()
1199 const OUString* pName = findRawName( nKey ); in implGetName()
1234 sal_Int64 nKey = nStartKey; in setNamesFromVec() local
1235 …tringVector::const_iterator aIt = rNames.begin(), aEnd = rNames.end(); aIt != aEnd; ++aIt, ++nKey ) in setNamesFromVec()
1237 insertRawName( nKey, *aIt ); in setNamesFromVec()
1249 void MultiList::implSetName( sal_Int64 nKey, const OUString& rName ) in implSetName() argument
1253 setNamesFromVec( nKey, aNames ); in implSetName()
1279 void FlagsList::implSetName( sal_Int64 nKey, const OUString& rName ) in implSetName() argument
1281 if( (nKey != 0) && ((nKey & (nKey - 1)) == 0) ) // only a single bit set? in implSetName()
1282 insertRawName( nKey, rName ); in implSetName()
1285 OUString FlagsList::implGetName( const Config& /*rCfg*/, sal_Int64 nKey ) const in implGetName()
1298 bool bFlag = getFlag( nKey, nMask ); in implGetName()
1326 setFlag( nKey, nFound, false ); in implGetName()
1327 if( nKey != 0 ) in implGetName()
1331 StringHelper::appendShortHex( aUnknown, nKey, true ); in implGetName()
1361 void CombiList::implSetName( sal_Int64 nKey, const OUString& rName ) in implSetName() argument
1363 if( (nKey & (nKey - 1)) != 0 ) // more than a single bit set? in implSetName()
1379 ExtItemFormatKey aKey( nKey ); in implSetName()
1390 aItemKeys.insert( ExtItemFormatKey( nKey ) ); in implSetName()
1396 FlagsList::implSetName( nKey, rName ); in implSetName()
1400 OUString CombiList::implGetName( const Config& rCfg, sal_Int64 nKey ) const in implGetName()
1409 if( (nMask != 0) && ((nKey & rMapKey.maFilter.first) == rMapKey.maFilter.second) ) in implGetName()
1413 sal_uInt64 nUFlags = static_cast< sal_uInt64 >( nKey ); in implGetName()
1450 setFlag( nKey, nFound, false ); in implGetName()
1451 StringHelper::appendToken( aName, FlagsList::implGetName( rCfg, nKey ) ); in implGetName()
1475 OUString UnitConverter::implGetName( const Config& rCfg, sal_Int64 nKey ) const in implGetName()
1477 return implGetNameDbl( rCfg, static_cast< double >( nKey ) ); in implGetName()