Lines Matching refs:aTwo

1047 				sal_Int32 aTwo = 0;  in CompareImpl()  local
1052 aTwo = xRowTwo->getInt( nColumn ); in CompareImpl()
1054 if ( aOne < aTwo ) in CompareImpl()
1056 else if ( aOne == aTwo ) in CompareImpl()
1066 sal_Int64 aTwo = 0; in CompareImpl() local
1071 aTwo = xRowTwo->getLong( nColumn ); in CompareImpl()
1073 if ( aOne < aTwo ) in CompareImpl()
1075 else if ( aOne == aTwo ) in CompareImpl()
1086 OUString aOne, aTwo; in CompareImpl() local
1091 aTwo = xRowTwo->getString( nColumn ); in CompareImpl()
1096 aTwo = aTwo.toAsciiLowerCase(); in CompareImpl()
1099 nCompare = aOne.compareTo( aTwo ); in CompareImpl()
1104 Date aOne, aTwo; in CompareImpl() local
1110 aTwo = xRowTwo->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
1136 aTwo = xRowTwo->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()
1144 nTmp = (sal_Int32) aTwo.HundredthSeconds in CompareImpl()
1159 DateTime aOne, aTwo; in CompareImpl() local
1165 aTwo = xRowTwo->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()
1179 nTmp = (sal_Int32) aTwo.HundredthSeconds in CompareImpl()
1195 float aTwo = 0; in CompareImpl() local
1200 aTwo = xRowTwo->getFloat( nColumn ); in CompareImpl()
1202 if ( aOne < aTwo ) in CompareImpl()
1204 else if ( aOne == aTwo ) in CompareImpl()
1215 double aTwo = 0; in CompareImpl() local
1220 aTwo = xRowTwo->getDouble( nColumn ); in CompareImpl()
1222 if ( aOne < aTwo ) in CompareImpl()
1224 else if ( aOne == aTwo ) in CompareImpl()
1258 Any aOne, aTwo; in CompareImpl() local
1268 aTwo = xRowTwo->getObject( pInfo->mnColumn, NULL ); in CompareImpl()
1270 nCompare = pInfo->mxCompareFunction->compare( aOne, aTwo ); in CompareImpl()