/aoo42x/main/oox/inc/oox/export/ |
H A D | utils.hxx | 27 #define S(x) String( RTL_CONSTASCII_USTRINGPARAM( x ) ) argument 28 #define US(x) OUString( RTL_CONSTASCII_USTRINGPARAM( x )) argument 29 #define I32S(x) OString::valueOf( (sal_Int32) x ).getStr() argument 30 #define I64S(x) OString::valueOf( (sal_Int64) x ).getStr() argument 31 #define H32S(x) OString::valueOf( (sal_Int32) x, 16 ).getStr() argument 32 #define H64S(x) OString::valueOf( (sal_Int64) x, 16 ).getStr() argument 33 #define IS(x) OString::valueOf( x ).getStr() argument 34 #define USS(x) OUStringToOString( x, RTL_TEXTENCODING_UTF8 ).getStr() argument 35 #define ST(x) ByteString( x, RTL_TEXTENCODING_UTF8 ).GetBuffer() argument 39 # define DBG(x) x argument [all …]
|
/aoo42x/main/svx/source/form/ |
H A D | sdbdatacolumn.cxx | 201 void DataColumn::updateBoolean(sal_Bool x) throw( SQLException, RuntimeException ) in updateBoolean() 206 void DataColumn::updateByte(sal_Int8 x) throw( SQLException, RuntimeException ) in updateByte() 211 void DataColumn::updateShort(sal_Int16 x) throw( SQLException, RuntimeException ) in updateShort() 216 void DataColumn::updateInt(sal_Int32 x) throw( SQLException, RuntimeException ) in updateInt() 221 void DataColumn::updateLong(sal_Int64 x) throw( SQLException, RuntimeException ) in updateLong() 226 void DataColumn::updateFloat(float x) throw( SQLException, RuntimeException ) in updateFloat() 231 void DataColumn::updateDouble(double x) throw( SQLException, RuntimeException ) in updateDouble() 236 void DataColumn::updateString(const ::rtl::OUString& x) throw( SQLException, RuntimeException ) in updateString() 241 void DataColumn::updateBytes(const Sequence< sal_Int8 >& x) throw( SQLException, RuntimeException ) in updateBytes() 246 …void DataColumn::updateDate(const com::sun::star::util::Date& x) throw( SQLException, RuntimeExcep… in updateDate() [all …]
|
/aoo42x/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ |
H A D | JavaSQLPreparedStatement.java | 157 public synchronized void setArray(int index, XArray x) throws SQLException { in setArray() 179 public synchronized void setBlob(int index, XBlob x) throws SQLException { in setBlob() 197 public synchronized void setByte(int index, byte x) throws SQLException { in setByte() 235 public synchronized void setClob(int index, XClob x) throws SQLException { in setClob() 242 public synchronized void setDate(int index, Date x) throws SQLException { in setDate() 265 public synchronized void setFloat(int index, float x) throws SQLException { in setFloat() 276 public synchronized void setInt(int index, int x) throws SQLException { in setInt() 287 public synchronized void setLong(int index, long x) throws SQLException { in setLong() 309 public void setObject(int index, Object x) throws SQLException { in setObject() 357 public void setRef(int index, XRef x) throws SQLException { in setRef() [all …]
|
H A D | JavaSQLResultSet.java | 771 public void updateByte(int columnIndex, byte x) throws SQLException { in updateByte() 780 public void updateShort(int columnIndex, short x) throws SQLException { in updateShort() 789 public void updateInt(int columnIndex, int x) throws SQLException { in updateInt() 798 public void updateLong(int columnIndex, long x) throws SQLException { in updateLong() 807 public void updateFloat(int columnIndex, float x) throws SQLException { in updateFloat() 816 public void updateDouble(int columnIndex, double x) throws SQLException { in updateDouble() 825 public void updateString(int columnIndex, String x) throws SQLException { in updateString() 834 public void updateBytes(int columnIndex, byte[] x) throws SQLException { in updateBytes() 843 public void updateDate(int columnIndex, Date x) throws SQLException { in updateDate() 852 public void updateTime(int columnIndex, Time x) throws SQLException { in updateTime() [all …]
|
/aoo42x/main/shell/inc/internal/ |
H A D | dbgmacros.hxx | 31 #define PRE_CONDITION(x, msg) DbgAssert(x, msg) argument 33 #define POST_CONDITION(x, msg) DbgAssert(x, msg) argument 35 #define ENSURE(x ,msg) DbgAssert(x, msg) argument 39 #define PRE_CONDITION(x, msg) ((void)0) argument 41 #define POST_CONDITION(x, msg) ((void)0) argument 43 #define ENSURE(x, msg) ((void)0) argument
|
/aoo42x/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/ |
H A D | SPreparedStatement.cxx | 135 void SAL_CALL OPreparedStatement::setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) t… in setString() 163 void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLExcep… in setBoolean() 170 void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLExceptio… in setByte() 204 void SAL_CALL OPreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLExceptio… in setDouble() 213 void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException,… in setFloat() 221 void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLExceptio… in setInt() 245 void SAL_CALL OPreparedStatement::setClob( sal_Int32 parameterIndex, const Reference< XClob >& x ) … in setClob() argument 253 void SAL_CALL OPreparedStatement::setBlob( sal_Int32 parameterIndex, const Reference< XBlob >& x ) … in setBlob() argument 269 void SAL_CALL OPreparedStatement::setRef( sal_Int32 parameterIndex, const Reference< XRef >& x ) th… in setRef() 293 void SAL_CALL OPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLExce… in setObject() [all …]
|
H A D | SResultSet.cxx | 582 void SAL_CALL OResultSet::updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(SQLException, Ru… in updateBoolean() 589 void SAL_CALL OResultSet::updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(SQLException, Runti… in updateByte() 597 void SAL_CALL OResultSet::updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(SQLException, Run… in updateShort() 604 void SAL_CALL OResultSet::updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(SQLException, Runti… in updateInt() 611 void SAL_CALL OResultSet::updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(SQLException, Runt… in updateLong() 618 void SAL_CALL OResultSet::updateFloat( sal_Int32 columnIndex, float x ) throw(SQLException, Runtime… in updateFloat() 626 void SAL_CALL OResultSet::updateDouble( sal_Int32 columnIndex, double x ) throw(SQLException, Runti… in updateDouble() 647 void SAL_CALL OResultSet::updateDate( sal_Int32 columnIndex, const Date& x ) throw(SQLException, Ru… in updateDate() 655 void SAL_CALL OResultSet::updateTime( sal_Int32 columnIndex, const Time& x ) throw(SQLException, Ru… in updateTime() 663 void SAL_CALL OResultSet::updateTimestamp( sal_Int32 columnIndex, const DateTime& x ) throw(SQLExce… in updateTimestamp() [all …]
|
/aoo42x/main/dbaccess/source/core/api/ |
H A D | preparedstatement.cxx | 282 void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLExcep… in setBoolean() 291 void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLExceptio… in setByte() 300 void SAL_CALL OPreparedStatement::setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(SQLExcept… in setShort() 309 void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLExceptio… in setInt() 318 void SAL_CALL OPreparedStatement::setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(SQLExcepti… in setLong() 327 void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException,… in setFloat() 336 void SAL_CALL OPreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLExceptio… in setDouble() 345 void SAL_CALL OPreparedStatement::setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) t… in setString() 408 void SAL_CALL OPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLExce… in setObject() 426 void SAL_CALL OPreparedStatement::setRef( sal_Int32 parameterIndex, const Reference< XRef >& x ) th… in setRef() [all …]
|
H A D | datacolumn.cxx | 339 void ODataColumn::updateBoolean(sal_Bool x) throw( SQLException, RuntimeException ) in updateBoolean() 348 void ODataColumn::updateByte(sal_Int8 x) throw( SQLException, RuntimeException ) in updateByte() 357 void ODataColumn::updateShort(sal_Int16 x) throw( SQLException, RuntimeException ) in updateShort() 366 void ODataColumn::updateInt(sal_Int32 x) throw( SQLException, RuntimeException ) in updateInt() 375 void ODataColumn::updateLong(sal_Int64 x) throw( SQLException, RuntimeException ) in updateLong() 384 void ODataColumn::updateFloat(float x) throw( SQLException, RuntimeException ) in updateFloat() 393 void ODataColumn::updateDouble(double x) throw( SQLException, RuntimeException ) in updateDouble() 402 void ODataColumn::updateString(const rtl::OUString& x) throw( SQLException, RuntimeException ) in updateString() 411 void ODataColumn::updateBytes(const Sequence< sal_Int8 >& x) throw( SQLException, RuntimeException ) in updateBytes() 420 void ODataColumn::updateDate(const com::sun::star::util::Date& x) throw( SQLException, RuntimeExcep… in updateDate() [all …]
|
/aoo42x/main/cppu/qa/ |
H A D | test_reference.cxx | 107 …try { Reference< Interface1 > x( xNull, UNO_SET_THROW ); (void)x; } catch( const RuntimeException&… in TEST_F() local 111 …try { Reference< Interface1 > x( xFoo, UNO_SET_THROW ); (void)x; } catch( const RuntimeException& … in TEST_F() local 116 …try { Reference< Interface1 > x( xNull.get(), UNO_SET_THROW ); (void)x; } catch( const RuntimeExce… in TEST_F() local 120 …try { Reference< Interface1 > x( xFoo.get(), UNO_SET_THROW ); (void)x; } catch( const RuntimeExcep… in TEST_F() local 123 Reference< Interface1 > x; in TEST_F() local
|
/aoo42x/main/connectivity/source/drivers/ado/ |
H A D | APreparedStatement.cxx | 41 #define CHECK_RETURN(x) \ argument 326 void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLExcep… in setBoolean() 332 void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLExceptio… in setByte() 338 void SAL_CALL OPreparedStatement::setDate( sal_Int32 parameterIndex, const Date& x ) throw(SQLExcep… in setDate() 345 void SAL_CALL OPreparedStatement::setTime( sal_Int32 parameterIndex, const Time& x ) throw(SQLExcep… in setTime() 357 void SAL_CALL OPreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLExceptio… in setDouble() 363 void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException,… in setFloat() 369 void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLExceptio… in setInt() 375 void SAL_CALL OPreparedStatement::setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(SQLExcepti… in setLong() 434 void SAL_CALL OPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLExce… in setObject() [all …]
|
H A D | AResultSet.cxx | 49 #define CHECK_RETURN(x) \ argument 702 void OResultSet::updateValue(sal_Int32 columnIndex,const OLEVariant& x) in updateValue() 713 OLEVariant x; in updateNull() local 719 void SAL_CALL OResultSet::updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(SQLException, Ru… in updateBoolean() 724 void SAL_CALL OResultSet::updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(SQLException, Runti… in updateByte() 730 void SAL_CALL OResultSet::updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(SQLException, Run… in updateShort() 735 void SAL_CALL OResultSet::updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(SQLException, Runti… in updateInt() 740 void SAL_CALL OResultSet::updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(SQLException, Runt… in updateLong() 745 void SAL_CALL OResultSet::updateFloat( sal_Int32 columnIndex, float x ) throw(SQLException, Runtime… in updateFloat() 751 void SAL_CALL OResultSet::updateDouble( sal_Int32 columnIndex, double x ) throw(SQLException, Runti… in updateDouble() [all …]
|
/aoo42x/main/connectivity/source/drivers/odbcbase/ |
H A D | OPreparedStatement.cxx | 300 void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLExcep… in setBoolean() 363 void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLExceptio… in setByte() 371 DATE_STRUCT x = OTools::DateToOdbcDate(aData); in setDate() local 379 TIME_STRUCT x = OTools::TimeToOdbcTime(aVal); in setTime() local 386 TIMESTAMP_STRUCT x = OTools::DateTimeToTimestamp(aVal); in setTimestamp() local 391 void SAL_CALL OPreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLExceptio… in setDouble() 398 void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException,… in setFloat() 404 void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLExceptio… in setInt() 410 void SAL_CALL OPreparedStatement::setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(SQLExcepti… in setLong() 495 void OPreparedStatement::setDecimal( sal_Int32 parameterIndex, const ::rtl::OUString& x ) in setDecimal() [all …]
|
/aoo42x/main/desktop/source/deployment/inc/ |
H A D | dp_misc.h | 39 #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) argument 40 #define ARLEN(x) (sizeof (x) / sizeof *(x)) argument 56 inline void try_dispose( ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> const… in try_dispose()
|
/aoo42x/main/connectivity/source/commontools/ |
H A D | parameters.cxx | 978 void ParameterManager::setBoolean( sal_Int32 _nIndex, sal_Bool x ) in setBoolean() 984 void ParameterManager::setByte( sal_Int32 _nIndex, sal_Int8 x ) in setByte() 990 void ParameterManager::setShort( sal_Int32 _nIndex, sal_Int16 x ) in setShort() 996 void ParameterManager::setInt( sal_Int32 _nIndex, sal_Int32 x ) in setInt() 1002 void ParameterManager::setLong( sal_Int32 _nIndex, sal_Int64 x ) in setLong() 1008 void ParameterManager::setFloat( sal_Int32 _nIndex, float x ) in setFloat() 1014 void ParameterManager::setDouble( sal_Int32 _nIndex, double x ) in setDouble() 1020 void ParameterManager::setString( sal_Int32 _nIndex, const ::rtl::OUString& x ) in setString() 1032 void ParameterManager::setDate( sal_Int32 _nIndex, const ::com::sun::star::util::Date& x ) in setDate() 1038 void ParameterManager::setTime( sal_Int32 _nIndex, const ::com::sun::star::util::Time& x ) in setTime() [all …]
|
/aoo42x/main/connectivity/source/drivers/file/ |
H A D | FPreparedStatement.cxx | 202 void SAL_CALL OPreparedStatement::setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) t… in setString() 229 void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLExcep… in setBoolean() 235 void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLExceptio… in setByte() 262 void SAL_CALL OPreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(SQLExceptio… in setDouble() 270 void SAL_CALL OPreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(SQLException,… in setFloat() 277 void SAL_CALL OPreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(SQLExceptio… in setInt() 332 void SAL_CALL OPreparedStatement::setObjectWithInfo( sal_Int32 parameterIndex, const Any& x, sal_In… in setObjectWithInfo() 355 void SAL_CALL OPreparedStatement::setObject( sal_Int32 parameterIndex, const Any& x ) throw(SQLExce… in setObject() 370 void SAL_CALL OPreparedStatement::setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(SQLExcept… in setShort() 377 void SAL_CALL OPreparedStatement::setBytes( sal_Int32 parameterIndex, const Sequence< sal_Int8 >& x… in setBytes() [all …]
|
/aoo42x/main/cli_ure/source/native/ |
H A D | native_share.h | 33 #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) argument 55 inline ::System::Object * to_cli( in to_cli() 81 ::com::sun::star::uno::Reference< T > * pRet, ::System::Object * x ) in to_uno()
|
/aoo42x/main/sal/qa/inc/ |
H A D | valueequal.hxx | 29 bool is_equal(T x, T y, sal_Int16 _nPrec) in is_equal() 151 bool is_float_equal(float x, float y) in is_float_equal() 155 bool is_double_equal(double x, double y) in is_double_equal()
|
/aoo42x/main/chart2/source/tools/ |
H A D | RegressionCalculationHelper.hxx | 78 inline bool operator()( double x, double y ) in operator ()() 89 inline bool operator()( double x, double y ) in operator ()() 101 inline bool operator()( double x, double y ) in operator ()() 113 inline bool operator()( double x, double y ) in operator ()()
|
/aoo42x/main/connectivity/source/drivers/jdbc/ |
H A D | PreparedStatement.cxx | 120 void SAL_CALL java_sql_PreparedStatement::setString( sal_Int32 parameterIndex, const ::rtl::OUStrin… in setString() 163 void SAL_CALL java_sql_PreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(… in setBoolean() 176 void SAL_CALL java_sql_PreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::c… in setByte() 189 void SAL_CALL java_sql_PreparedStatement::setDate( sal_Int32 parameterIndex, const ::com::sun::star… in setDate() 204 void SAL_CALL java_sql_PreparedStatement::setTime( sal_Int32 parameterIndex, const ::com::sun::star… in setTime() 231 void SAL_CALL java_sql_PreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(::c… in setDouble() 244 void SAL_CALL java_sql_PreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(::com… in setFloat() 257 void SAL_CALL java_sql_PreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::c… in setInt() 270 void SAL_CALL java_sql_PreparedStatement::setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::… in setLong() 392 void SAL_CALL java_sql_PreparedStatement::setObject( sal_Int32 parameterIndex, const ::com::sun::st… in setObject() [all …]
|
/aoo42x/main/odk/examples/DevelopersGuide/Components/CppComponent/ |
H A D | service1_impl.cxx | 107 Reference< XInterface > x( in queryInterface() local 114 Reference< XInterface > x( in queryInterface() local 121 Reference< lang::XServiceInfo > x( in queryInterface() local 128 Reference< ::my_module::XSomething > x( in queryInterface() local
|
/aoo42x/main/embedserv/source/inprocserv/ |
H A D | smartpointer.hxx | 30 #define WRITEDEBUGINFOINTERN( x ) WriteDebugInfo( (DWORD)this, x, sizeof( x ) ) argument 31 #define WRITEDEBUGINFO( x ) WRITEDEBUGINFOINTERN( x ":" MY_STRING_LINE "\n" ) argument 32 #define TO_STRING( x ) #x argument 33 #define MACRO_VALUE_TO_STRING( x ) TO_STRING( x ) argument 36 #define WRITEDEBUGINFO( x ) void() argument
|
/aoo42x/main/stoc/source/tdmanager/ |
H A D | tdmgr_common.hxx | 31 #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) argument 32 #define ARLEN(x) (sizeof (x) / sizeof *(x)) argument
|
/aoo42x/main/sw/inc/ |
H A D | dbgoutsw.hxx | 60 #define DBG_OUT(x) printf("%s\n", dbg_out(x)) argument 61 #define DBG_OUT_LN(x) printf("%s(%d): %s\n", __FILE__, __LINE__, dbg_out(x)) argument 62 #define DBG_OUT_FN_LN(x) printf("%s: %s\n", __FUNCTION__, dbg_out(x)) argument
|
/aoo42x/main/cppu/inc/uno/ |
H A D | lbnames.h | 30 #define CPPU_STRINGIFY_EX( x ) #x argument 31 #define CPPU_STRINGIFY( x ) CPPU_STRINGIFY_EX( x ) argument
|