Lines Matching refs:_nIndex

946     void ParameterManager::externalParameterVisited( sal_Int32 _nIndex )  in externalParameterVisited()  argument
948 if ( m_aParametersVisited.size() < (size_t)_nIndex ) in externalParameterVisited()
950 m_aParametersVisited.reserve( _nIndex ); in externalParameterVisited()
951 for ( sal_Int32 i = m_aParametersVisited.size(); i < _nIndex; ++i ) in externalParameterVisited()
954 m_aParametersVisited[ _nIndex - 1 ] = true; in externalParameterVisited()
963 externalParameterVisited( _nIndex ) \
966 void ParameterManager::setNull( sal_Int32 _nIndex, sal_Int32 sqlType ) in setNull() argument
968 VISIT_PARAMETER( setNull( _nIndex, sqlType ) ); in setNull()
972 …void ParameterManager::setObjectNull( sal_Int32 _nIndex, sal_Int32 sqlType, const ::rtl::OUString&… in setObjectNull() argument
974 VISIT_PARAMETER( setObjectNull( _nIndex, sqlType, typeName ) ); in setObjectNull()
978 void ParameterManager::setBoolean( sal_Int32 _nIndex, sal_Bool x ) in setBoolean() argument
980 VISIT_PARAMETER( setBoolean( _nIndex, x ) ); in setBoolean()
984 void ParameterManager::setByte( sal_Int32 _nIndex, sal_Int8 x ) in setByte() argument
986 VISIT_PARAMETER( setByte( _nIndex, x ) ); in setByte()
990 void ParameterManager::setShort( sal_Int32 _nIndex, sal_Int16 x ) in setShort() argument
992 VISIT_PARAMETER( setShort( _nIndex, x ) ); in setShort()
996 void ParameterManager::setInt( sal_Int32 _nIndex, sal_Int32 x ) in setInt() argument
998 VISIT_PARAMETER( setInt( _nIndex, x ) ); in setInt()
1002 void ParameterManager::setLong( sal_Int32 _nIndex, sal_Int64 x ) in setLong() argument
1004 VISIT_PARAMETER( setLong( _nIndex, x ) ); in setLong()
1008 void ParameterManager::setFloat( sal_Int32 _nIndex, float x ) in setFloat() argument
1010 VISIT_PARAMETER( setFloat( _nIndex, x ) ); in setFloat()
1014 void ParameterManager::setDouble( sal_Int32 _nIndex, double x ) in setDouble() argument
1016 VISIT_PARAMETER( setDouble( _nIndex, x ) ); in setDouble()
1020 void ParameterManager::setString( sal_Int32 _nIndex, const ::rtl::OUString& x ) in setString() argument
1022 VISIT_PARAMETER( setString( _nIndex, x ) ); in setString()
1026 …void ParameterManager::setBytes( sal_Int32 _nIndex, const ::com::sun::star::uno::Sequence< sal_Int… in setBytes() argument
1028 VISIT_PARAMETER( setBytes( _nIndex, x ) ); in setBytes()
1032 void ParameterManager::setDate( sal_Int32 _nIndex, const ::com::sun::star::util::Date& x ) in setDate() argument
1034 VISIT_PARAMETER( setDate( _nIndex, x ) ); in setDate()
1038 void ParameterManager::setTime( sal_Int32 _nIndex, const ::com::sun::star::util::Time& x ) in setTime() argument
1040 VISIT_PARAMETER( setTime( _nIndex, x ) ); in setTime()
1044 …void ParameterManager::setTimestamp( sal_Int32 _nIndex, const ::com::sun::star::util::DateTime& x ) in setTimestamp() argument
1046 VISIT_PARAMETER( setTimestamp( _nIndex, x ) ); in setTimestamp()
1050 …void ParameterManager::setBinaryStream( sal_Int32 _nIndex, const ::com::sun::star::uno::Reference<… in setBinaryStream() argument
1052 VISIT_PARAMETER( setBinaryStream( _nIndex, x, length ) ); in setBinaryStream()
1056 …void ParameterManager::setCharacterStream( sal_Int32 _nIndex, const ::com::sun::star::uno::Referen… in setCharacterStream() argument
1058 VISIT_PARAMETER( setCharacterStream( _nIndex, x, length ) ); in setCharacterStream()
1062 void ParameterManager::setObject( sal_Int32 _nIndex, const ::com::sun::star::uno::Any& x ) in setObject() argument
1064 VISIT_PARAMETER( setObject( _nIndex, x ) ); in setObject()
1068 …void ParameterManager::setObjectWithInfo( sal_Int32 _nIndex, const ::com::sun::star::uno::Any& x, … in setObjectWithInfo() argument
1070 VISIT_PARAMETER( setObjectWithInfo( _nIndex, x, targetSqlType, scale ) ); in setObjectWithInfo()
1074 …void ParameterManager::setRef( sal_Int32 _nIndex, const ::com::sun::star::uno::Reference< ::com::s… in setRef() argument
1076 VISIT_PARAMETER( setRef( _nIndex, x ) ); in setRef()
1080 …void ParameterManager::setBlob( sal_Int32 _nIndex, const ::com::sun::star::uno::Reference< ::com::… in setBlob() argument
1082 VISIT_PARAMETER( setBlob( _nIndex, x ) ); in setBlob()
1086 …void ParameterManager::setClob( sal_Int32 _nIndex, const ::com::sun::star::uno::Reference< ::com::… in setClob() argument
1088 VISIT_PARAMETER( setClob( _nIndex, x ) ); in setClob()
1092 …void ParameterManager::setArray( sal_Int32 _nIndex, const ::com::sun::star::uno::Reference< ::com:… in setArray() argument
1094 VISIT_PARAMETER( setArray( _nIndex, x ) ); in setArray()