Lines Matching refs:second
529 for(;aIter != aPair.second;++aIter) in getTypeInfoFromType()
533 ::rtl::OUString sDBTypeName = aIter->second->aTypeName; (void)sDBTypeName; in getTypeInfoFromType()
534 sal_Int32 nDBTypePrecision = aIter->second->nPrecision; (void)nDBTypePrecision; in getTypeInfoFromType()
535 sal_Int32 nDBTypeScale = aIter->second->nMaximumScale; (void)nDBTypeScale; in getTypeInfoFromType()
536 sal_Bool bDBAutoIncrement = aIter->second->bAutoIncrement; (void)bDBAutoIncrement; in getTypeInfoFromType()
540 || (aIter->second->aTypeName.equalsIgnoreAsciiCase(_sTypeName)) in getTypeInfoFromType()
544 !aIter->second->aCreateParams.getLength() in getTypeInfoFromType()
548 (aIter->second->nPrecision >= _nPrecision) in getTypeInfoFromType()
549 && (aIter->second->nMaximumScale >= _nScale) in getTypeInfoFromType()
550 && ( (_bAutoIncrement && aIter->second->bAutoIncrement) || !_bAutoIncrement ) in getTypeInfoFromType()
557 if (aIter == aPair.second) in getTypeInfoFromType()
559 for(aIter = aPair.first; aIter != aPair.second; ++aIter) in getTypeInfoFromType()
561 sal_Int32 nPrec = aIter->second->nPrecision; in getTypeInfoFromType()
562 sal_Int32 nScale = aIter->second->nMaximumScale; in getTypeInfoFromType()
564 if ( (aIter->second->aLocalTypeName.equalsIgnoreAsciiCase(_sTypeName)) in getTypeInfoFromType()
567 && ( (_bAutoIncrement && aIter->second->bAutoIncrement) || !_bAutoIncrement ) in getTypeInfoFromType()
572 …+= ::rtl::OString(aIter->second->aTypeName.getStr(), aIter->second->aTypeName.getLength(), gsl_get… in getTypeInfoFromType()
581 if (aIter == aPair.second) in getTypeInfoFromType()
591 for(aIter = aPair.first; aIter != aPair.second; ++aIter) in getTypeInfoFromType()
595 ::rtl::OUString sDBTypeName = aIter->second->aTypeName; in getTypeInfoFromType()
597 sal_Int32 nPrec = aIter->second->nPrecision; in getTypeInfoFromType()
598 sal_Int32 nScale = aIter->second->nMaximumScale; in getTypeInfoFromType()
601 && ( (_bAutoIncrement && aIter->second->bAutoIncrement) || !_bAutoIncrement ) in getTypeInfoFromType()
606 if (aIter == aPair.second) in getTypeInfoFromType()
610 for(aIter = aPair.first; aIter != aPair.second; ++aIter) in getTypeInfoFromType()
614 ::rtl::OUString sDBTypeName = aIter->second->aTypeName; in getTypeInfoFromType()
616 sal_Int32 nScale = aIter->second->nMaximumScale; in getTypeInfoFromType()
618 && (aIter->second->bAutoIncrement == _bAutoIncrement) in getTypeInfoFromType()
622 if ( aIter == aPair.second ) in getTypeInfoFromType()
635 pTypeInfo = aIter->second; in getTypeInfoFromType()
639 pTypeInfo = aPair.first->second; in getTypeInfoFromType()
644 pTypeInfo = aIter->second; in getTypeInfoFromType()
654 if ( aCase( typeInfoLoop->second->getDBName() , _sTypeName ) ) in getTypeInfoFromType()
656 pTypeInfo = typeInfoLoop->second; in getTypeInfoFromType()
1551 if ( aIter->second->nType == DataType::INTEGER ) in queryPrimaryKeyType()
1553 pTypeInfo = aIter->second; // alternative in queryPrimaryKeyType()
1556 else if ( !pTypeInfo.get() && aIter->second->nType == DataType::DOUBLE ) in queryPrimaryKeyType()
1557 pTypeInfo = aIter->second; // alternative in queryPrimaryKeyType()
1558 else if ( !pTypeInfo.get() && aIter->second->nType == DataType::REAL ) in queryPrimaryKeyType()
1559 pTypeInfo = aIter->second; // alternative in queryPrimaryKeyType()
1573 return aIter->second; in queryTypeInfoByType()