Lines Matching refs:aIt

89 …for( PropertyMap::const_iterator aIt = rPropMap.begin(), aEnd = rPropMap.end(); aIt != aEnd; ++aIt  in GenericPropertySet()  local
90 maPropMap[ rPropNames[ aIt->first ] ] = aIt->second; in GenericPropertySet()
106 PropertyNameMap::iterator aIt = maPropMap.find( rPropertyName ); in getPropertyValue() local
107 if( aIt == maPropMap.end() ) in getPropertyValue()
109 return aIt->second; in getPropertyValue()
123 …for( PropertyNameMap::iterator aIt = maPropMap.begin(), aEnd = maPropMap.end(); aIt != aEnd; ++aIt in getProperties() local
125 pProperty->Name = aIt->first; in getProperties()
127 pProperty->Type = aIt->second.getValueType(); in getProperties()
135 PropertyNameMap::iterator aIt = maPropMap.find( rPropertyName ); in getPropertyByName() local
136 if( aIt == maPropMap.end() ) in getPropertyByName()
139 aProperty.Name = aIt->first; in getPropertyByName()
141 aProperty.Type = aIt->second.getValueType(); in getPropertyByName()
168 const_iterator aIt = find( nPropId ); in getProperty() local
169 return (aIt == end()) ? 0 : &aIt->second; in getProperty()
178 for( const_iterator aIt = begin(), aEnd = end(); aIt != aEnd; ++aIt, ++pValues ) in makePropertyValueSequence() local
180 …OSL_ENSURE( (0 <= aIt->first) && (aIt->first < PROP_COUNT), "PropertyMap::makePropertyValueSequenc… in makePropertyValueSequence()
181 pValues->Name = (*mpPropNames)[ aIt->first ]; in makePropertyValueSequence()
182 pValues->Value = aIt->second; in makePropertyValueSequence()
197 for( const_iterator aIt = begin(), aEnd = end(); aIt != aEnd; ++aIt, ++pNames, ++pValues ) in fillSequences() local
199 …OSL_ENSURE( (0 <= aIt->first) && (aIt->first < PROP_COUNT), "PropertyMap::fillSequences - invalid … in fillSequences()
200 *pNames = (*mpPropNames)[ aIt->first ]; in fillSequences()
201 *pValues = aIt->second; in fillSequences()