Lines Matching refs:aIter

103     StringVector::const_iterator aIter = m_aDsnPrefixes.begin();  in cutPrefix()  local
105 for(;aIter != aEnd;++aIter) in cutPrefix()
107 WildCard aWildCard(*aIter); in cutPrefix()
108 if ( sOldPattern.Len() < aIter->Len() && aWildCard.Matches(_sURL) ) in cutPrefix()
110 if ( aIter->Len() < sURL.Len() ) in cutPrefix()
111 sRet = sURL.Copy(sURL.Match(*aIter)); in cutPrefix()
113 sRet = sURL.Copy(aIter->Match(sURL)); in cutPrefix()
114 sOldPattern = *aIter; in cutPrefix()
127 StringVector::const_iterator aIter = m_aDsnPrefixes.begin(); in getPrefix() local
129 for(;aIter != aEnd;++aIter) in getPrefix()
131 WildCard aWildCard(*aIter); in getPrefix()
132 if ( sOldPattern.Len() < aIter->Len() && aWildCard.Matches(sURL) ) in getPrefix()
134 if ( aIter->Len() < sURL.Len() ) in getPrefix()
135 sRet = aIter->Copy(0,sURL.Match(*aIter)); in getPrefix()
137 sRet = sURL.Copy(0,aIter->Match(sURL)); in getPrefix()
139 sOldPattern = *aIter; in getPrefix()
159 StringVector::const_iterator aIter = m_aDsnPrefixes.begin(); in isConnectionUrlRequired() local
161 for(;aIter != aEnd;++aIter) in isConnectionUrlRequired()
163 WildCard aWildCard(*aIter); in isConnectionUrlRequired()
164 if ( sOldPattern.Len() < aIter->Len() && aWildCard.Matches(sURL) ) in isConnectionUrlRequired()
166 sRet = *aIter; in isConnectionUrlRequired()
167 sOldPattern = *aIter; in isConnectionUrlRequired()
518 StringVector::const_iterator aIter = m_aDsnPrefixes.begin(); in getType() local
520 for(;aIter != aEnd;++aIter) in getType()
522 WildCard aWildCard(*aIter); in getType()
523 if ( sOldPattern.getLength() < aIter->Len() && aWildCard.Matches(_sURL) ) in getType()
525 sOldPattern = *aIter; in getType()
536 StringVector::const_iterator aIter = m_aDsnPrefixes.begin(); in getIndexOf() local
538 for(sal_Int32 i = 0;aIter != aEnd;++aIter,++i) in getIndexOf()
540 WildCard aWildCard(*aIter); in getIndexOf()
541 if ( sOldPattern.Len() < aIter->Len() && aWildCard.Matches(sURL) ) in getIndexOf()
544 sOldPattern = *aIter; in getIndexOf()