Lines Matching refs:aOne

1046                 sal_Int32 aOne = 0;  in CompareImpl()  local
1050 aOne = xRowOne->getInt( nColumn ); in CompareImpl()
1054 if ( aOne < aTwo ) in CompareImpl()
1056 else if ( aOne == aTwo ) in CompareImpl()
1065 sal_Int64 aOne = 0; in CompareImpl() local
1069 aOne = xRowOne->getLong( nColumn ); in CompareImpl()
1073 if ( aOne < aTwo ) in CompareImpl()
1075 else if ( aOne == aTwo ) in CompareImpl()
1086 OUString aOne, aTwo; in CompareImpl() local
1089 aOne = xRowOne->getString( nColumn ); in CompareImpl()
1095 aOne = aOne.toAsciiLowerCase(); in CompareImpl()
1099 nCompare = aOne.compareTo( aTwo ); in CompareImpl()
1104 Date aOne, aTwo; in CompareImpl() local
1108 aOne = xRowOne->getDate( nColumn ); in CompareImpl()
1112 nTmp = (sal_Int32) aTwo.Year - (sal_Int32) aOne.Year; in CompareImpl()
1114 nTmp = (sal_Int32) aTwo.Month - (sal_Int32) aOne.Month; in CompareImpl()
1116 nTmp = (sal_Int32) aTwo.Day - (sal_Int32) aOne.Day; in CompareImpl()
1130 Time aOne, aTwo; in CompareImpl() local
1134 aOne = xRowOne->getTime( nColumn ); in CompareImpl()
1138 nTmp = (sal_Int32) aTwo.Hours - (sal_Int32) aOne.Hours; in CompareImpl()
1140 nTmp = (sal_Int32) aTwo.Minutes - (sal_Int32) aOne.Minutes; in CompareImpl()
1142 nTmp = (sal_Int32) aTwo.Seconds - (sal_Int32) aOne.Seconds; in CompareImpl()
1145 - (sal_Int32) aOne.HundredthSeconds; in CompareImpl()
1159 DateTime aOne, aTwo; in CompareImpl() local
1163 aOne = xRowOne->getTimestamp( nColumn ); in CompareImpl()
1167 nTmp = (sal_Int32) aTwo.Year - (sal_Int32) aOne.Year; in CompareImpl()
1169 nTmp = (sal_Int32) aTwo.Month - (sal_Int32) aOne.Month; in CompareImpl()
1171 nTmp = (sal_Int32) aTwo.Day - (sal_Int32) aOne.Day; in CompareImpl()
1173 nTmp = (sal_Int32) aTwo.Hours - (sal_Int32) aOne.Hours; in CompareImpl()
1175 nTmp = (sal_Int32) aTwo.Minutes - (sal_Int32) aOne.Minutes; in CompareImpl()
1177 nTmp = (sal_Int32) aTwo.Seconds - (sal_Int32) aOne.Seconds; in CompareImpl()
1180 - (sal_Int32) aOne.HundredthSeconds; in CompareImpl()
1194 float aOne = 0; in CompareImpl() local
1198 aOne = xRowOne->getFloat( nColumn ); in CompareImpl()
1202 if ( aOne < aTwo ) in CompareImpl()
1204 else if ( aOne == aTwo ) in CompareImpl()
1214 double aOne = 0; in CompareImpl() local
1218 aOne = xRowOne->getDouble( nColumn ); in CompareImpl()
1222 if ( aOne < aTwo ) in CompareImpl()
1224 else if ( aOne == aTwo ) in CompareImpl()
1258 Any aOne, aTwo; in CompareImpl() local
1266 aOne = xRowOne->getObject( pInfo->mnColumn, NULL ); in CompareImpl()
1270 nCompare = pInfo->mxCompareFunction->compare( aOne, aTwo ); in CompareImpl()