Lines Matching refs:it

217             key_translation_map::const_iterator it = m_aTranslations.find( aK );  in translateValue()  local
218 if( it != m_aTranslations.end() ) in translateValue()
220 const translation_map& rMap( it->second ); in translateValue()
498 std::hash_map< OUString, OUString, OUStringHash >::const_iterator it; in getKnownPPDDrivers() local
499 for( it = pAllPPDFiles->begin(); it != pAllPPDFiles->end(); ++it ) in getKnownPPDDrivers()
500 o_rDrivers.push_back( it->first ); in getKnownPPDDrivers()
510 std::hash_map< OUString, OUString, OUStringHash >::const_iterator it; in getPPDFile() local
524 it = pAllPPDFiles->find( aBase ); in getPPDFile()
528 } while( it == pAllPPDFiles->end() && nLastIndex > 0 ); in getPPDFile()
530 if( it == pAllPPDFiles->end() && bRetry ) in getPPDFile()
540 if( it != pAllPPDFiles->end() ) in getPPDFile()
541 aStream.Open( it->second ); in getPPDFile()
624 …for( ::std::list< PPDParser* >::const_iterator it = aAllParsers.begin(); it != aAllParsers.end(); … in getParser()
625 if( (*it)->m_aFile == aFile ) in getParser()
626 return *it; in getParser()
735 for( PPDParser::hash_type::const_iterator it = m_aKeys.begin(); it != m_aKeys.end(); ++it ) in PPDParser() local
737 const PPDKey* pKey = it->second; in PPDParser()
841 for( PPDParser::hash_type::iterator it = m_aKeys.begin(); it != m_aKeys.end(); ++it ) in ~PPDParser() local
842 delete it->second; in ~PPDParser()
859 PPDParser::hash_type::const_iterator it = m_aKeys.find( rKey ); in getKey() local
860 return it != m_aKeys.end() ? it->second : NULL; in getKey()
1708 PPDKey::hash_type::const_iterator it = m_aValues.find( rOption ); in getValue() local
1709 return it != m_aValues.end() ? &it->second : NULL; in getValue()
1731 PPDKey::hash_type::iterator it = m_aValues.find( rOption ); in eraseValue() local
1732 if( it == m_aValues.end() ) in eraseValue()
1737 if( *vit == &(it->second ) ) in eraseValue()
1743 m_aValues.erase( it ); in eraseValue()
1791 hash_type::const_iterator it; in getModifiedKey() local
1792 for( it = m_aCurrentValues.begin(); it != m_aCurrentValues.end() && n--; ++it ) in getModifiedKey()
1794 return it != m_aCurrentValues.end() ? it->first : NULL; in getModifiedKey()
1815 hash_type::const_iterator it; in getValue() local
1816 it = m_aCurrentValues.find( pKey ); in getValue()
1817 if( it != m_aCurrentValues.end() ) in getValue()
1818 return it->second; in getValue()
1854 hash_type::iterator it = m_aCurrentValues.begin(); in setValue() local
1855 while( it != m_aCurrentValues.end() ) in setValue()
1857 if( it->first != pKey && in setValue()
1858 ! checkConstraints( it->first, it->second, false ) ) in setValue()
1862 it->first->getKey().GetStr(), in setValue()
1863 it->second->m_aOption.GetStr(), in setValue()
1867 resetValue( it->first, true ); in setValue()
1868 it = m_aCurrentValues.begin(); in setValue()
1871 ++it; in setValue()
1944 …ist< PPDParser::PPDConstraint >::const_iterator it = rConstraints.begin(); it != rConstraints.end(… in checkConstraints()
1946 const PPDKey* pLeft = it->m_pKey1; in checkConstraints()
1947 const PPDKey* pRight = it->m_pKey2; in checkConstraints()
1952 const PPDValue* pOtherKeyOption = pKey == pLeft ? it->m_pOption2 : it->m_pOption1; in checkConstraints()
1953 const PPDValue* pKeyOption = pKey == pLeft ? it->m_pOption1 : it->m_pOption2; in checkConstraints()
2037 hash_type::const_iterator it; in getStreamableBuffer() local
2038 for( it = m_aCurrentValues.begin(); it != m_aCurrentValues.end(); ++it ) in getStreamableBuffer()
2040 ByteString aCopy( it->first->getKey(), RTL_TEXTENCODING_MS_1252 ); in getStreamableBuffer()
2043 if( it->second ) in getStreamableBuffer()
2045 aCopy = ByteString( it->second->m_aOption, RTL_TEXTENCODING_MS_1252 ); in getStreamableBuffer()
2056 for( it = m_aCurrentValues.begin(); it != m_aCurrentValues.end(); ++it ) in getStreamableBuffer()
2058 ByteString aCopy( it->first->getKey(), RTL_TEXTENCODING_MS_1252 ); in getStreamableBuffer()
2063 if( it->second ) in getStreamableBuffer()
2064 aCopy = ByteString( it->second->m_aOption, RTL_TEXTENCODING_MS_1252 ); in getStreamableBuffer()