Lines Matching refs:i

342     sal_Int32 i = 0;  in fillColumns()  local
343 for (; i < nFieldCount; i++) in fillColumns()
459 OSL_ENSURE(i,"No columns in table!"); in fillColumns()
828 for (sal_Size i = 1; aIter != aEnd && nByteOffset <= m_nBufferSize && i < nCount;++aIter, i++) in fetchRow() local
835 nLen = m_aPrecisions[i-1]; in fetchRow()
836 nType = m_aTypes[i-1]; in fetchRow()
852 nLen = m_aRealFieldLengths[i-1]; in fetchRow()
856 nLen = SvDbaseConverter::ConvertPrecisionToDbase(nLen,m_aScales[i-1]); in fetchRow()
868 if ( !(_rRow->get())[i]->isBound() ) in fetchRow()
890 *(_rRow->get())[i] = ::rtl::OUString(aStr); in fetchRow()
892 (_rRow->get())[i]->setNull(); in fetchRow()
906 (_rRow->get())[i]->setNull(); in fetchRow()
912 *(_rRow->get())[i] = aDateTime; in fetchRow()
921 *(_rRow->get())[i] = nValue; in fetchRow()
923 (_rRow->get())[i]->setNull(); in fetchRow()
936 if ( m_aScales[i-1] ) in fetchRow()
937 d = (double)(nValue / pow(10.0,(int)m_aScales[i-1])); in fetchRow()
946 *(_rRow->get())[i] = d; in fetchRow()
948 (_rRow->get())[i]->setNull(); in fetchRow()
967 (_rRow->get())[i]->setNull(); // no value -> we are done in fetchRow()
977 (_rRow->get())[i]->setNull(); in fetchRow()
985 *(_rRow->get())[i] = aDate; in fetchRow()
989 *(_rRow->get())[i] = ORowSetValue(aStr); in fetchRow()
996 (_rRow->get())[i]->setNull(); in fetchRow()
1007 *(_rRow->get())[i] = b; in fetchRow()
1018 if ( !ReadMemo(nBlockNo, (_rRow->get())[i]->get()) ) in fetchRow()
1022 (_rRow->get())[i]->setNull(); in fetchRow()
1027 (_rRow->get())[i]->setTypeKind(nType); in fetchRow()
1207 for(sal_Int32 i=0;i<nCount;++i) in CreateFile() local
1209 xColumns->getByIndex(i) >>= xCol; in CreateFile()
1219 i = nCount; // no more columns need to be checked in CreateFile()
1263 for(sal_Int32 i=0;i<nCount;++i) in CreateFile() local
1265 xColumns->getByIndex(i) >>= xCol; in CreateFile()
1483 sal_Int32 i = _pIndexes->getCount(); in Drop_Static() local
1484 while (i) in Drop_Static()
1486 _pIndexes->dropByIndex(--i); in Drop_Static()
1636 for (sal_uInt16 i = 0; i < m_pColumns->getCount(); i++) in DeleteRow() local
1638 Reference<XPropertySet> xIndex = isUniqueByColumnName(i); in DeleteRow()
1641 ::cppu::extractInterface(xCol,m_pColumns->getByIndex(i)); in DeleteRow()
1687 for(sal_Int32 i=0;i<m_pIndexes->getCount();++i) in isUniqueByColumnName() local
1689 ::cppu::extractInterface(xIndex,m_pIndexes->getByIndex(i)); in isUniqueByColumnName()
1719 sal_uInt16 i; in UpdateBuffer() local
1728 for (i = 0; i < nColumnCount; ++i) in UpdateBuffer()
1730 sal_Int32 nPos = i; in UpdateBuffer()
1733 m_pColumns->getByIndex(i) >>= xCol; in UpdateBuffer()
1750 xIndex = isUniqueByColumnName(i); in UpdateBuffer()
1751 aIndexedCols[i] = xIndex; in UpdateBuffer()
1770 m_pColumns->getByIndex(i) >>= xCol; in UpdateBuffer()
1787 for (i = 0; i < nColumnCount && nByteOffset <= m_nBufferSize ; ++i) in UpdateBuffer()
1790 OSL_ENSURE(i < m_aPrecisions.size(),"Illegal index!"); in UpdateBuffer()
1794 if ( i < m_aPrecisions.size() ) in UpdateBuffer()
1796 nLen = m_aPrecisions[i]; in UpdateBuffer()
1797 nType = m_aTypes[i]; in UpdateBuffer()
1798 nScale = m_aScales[i]; in UpdateBuffer()
1802 m_pColumns->getByIndex(i) >>= xCol; in UpdateBuffer()
1822 nLen = m_aRealFieldLengths[i]; in UpdateBuffer()
1832 sal_Int32 nPos = i; in UpdateBuffer()
1835 m_pColumns->getByIndex(i) >>= xCol; in UpdateBuffer()
1862 if (aIndexedCols[i].is()) in UpdateBuffer()
1864 Reference<XUnoTunnel> xTunnel(aIndexedCols[i],UNO_QUERY); in UpdateBuffer()
1948 m_pColumns->getByIndex(i) >>= xCol; in UpdateBuffer()
1953 if ( m_aScales[i] ) in UpdateBuffer()
1954 nValue = (sal_Int64)(d * pow(10.0,(int)m_aScales[i])); in UpdateBuffer()
1982 m_pColumns->getByIndex(i) >>= xCol; in UpdateBuffer()
2051 m_pColumns->getByIndex(i) >>= xCol; in UpdateBuffer()
2169 for (int i = 4; i > 0; nWriteSize >>= 8) in WriteMemo() local
2170 nHeader[--i] = (sal_uInt8) (nWriteSize % 256); in WriteMemo()
2176 for (int i = 0; i < 4; nWriteSize >>= 8) in WriteMemo() local
2177 nHeader[i++] = (sal_uInt8) (nWriteSize % 256); in WriteMemo()
2265 sal_Int32 i=0; in alterColumn() local
2266 for(;i < index;++i) in alterColumn()
2269 m_pColumns->getByIndex(i) >>= xProp; in alterColumn()
2279 ++i; // now insert our new column in alterColumn()
2282 for(;i < m_pColumns->getCount();++i) in alterColumn()
2285 m_pColumns->getByIndex(i) >>= xProp; in alterColumn()
2434 for(sal_Int32 i=0;i < m_pColumns->getCount();++i) in addColumn() local
2437 m_pColumns->getByIndex(i) >>= xProp; in addColumn()
2507 for(sal_Int32 i=0;i < m_pColumns->getCount();++i) in dropColumn() local
2509 if(_nPos != i) in dropColumn()
2512 m_pColumns->getByIndex(i) >>= xProp; in dropColumn()
2760 sal_uInt16 i = 0; in ReadMemo() local
2761 while (aBuf[i] != cEOF && ++i < 512) in ReadMemo()
2763 bReady = aBuf[i] == cEOF; in ReadMemo()
2765 aBuf[i] = 0; in ReadMemo()