Home
last modified time | relevance | path

Searched refs:x (Results 126 – 150 of 1170) sorted by relevance

12345678910>>...47

/trunk/main/vcl/unx/generic/gdi/
H A Dsalgdi.cxx82 pFirst_[i].x = (short)p[i].mnX; in SalPolyLine()
419 if( rPoints[nPoints-1].x != rPoints[0].x || rPoints[nPoints-1].y != rPoints[0].y ) in DrawLines()
420 drawLine( rPoints[nPoints-1].x, rPoints[nPoints-1].y, rPoints[0].x, rPoints[0].y ); in DrawLines()
893 Points[ 0 ].x == Points[ 1 ].x && in drawPolygon()
895 Points[ 2 ].x == Points[ 3 ].x && in drawPolygon()
896 Points[ 0 ].x == Points[ 4 ].x && Points[ 0 ].y == Points[ 4 ].y in drawPolygon()
903 if( Points[i].x < 0 ) in drawPolygon()
913 if( Points[i].x < 0 ) in drawPolygon()
914 Points[i].x = 0; in drawPolygon()
1168 rTrap.left.p1.x = XDoubleToFixed( fXL1 ); in drawFilledTrapezoids()
[all …]
/trunk/test/testcommon/source/org/openoffice/test/vcl/
H A DTester.java72 public static void click(int x, int y) { in click() argument
73 robot.mouseMove(x, y); in click()
80 robot.mouseMove(x, y); in doubleClick()
93 public static void rightClick(int x, int y) { in rightClick() argument
94 robot.mouseMove(x, y); in rightClick()
103 int x = fromX; in drag() local
114 while (x != toX || y != toY) { in drag()
115 x += sx; in drag()
118 if( ((x - toX) * dx) > 0) in drag()
119 x = toX; in drag()
[all …]
/trunk/main/tools/inc/tools/
H A Derrcode.hxx88 #define ERRCODE_TOERRID(x) (x & ~ERRCODE_DYNAMIC_MASK) argument
89 #define ERRCODE_TOERROR(x) \ argument
90 ((x & ERRCODE_WARNING_MASK) ? 0 : (x & ERRCODE_ERROR_MASK))
96 inline sal_uIntPtr ERRCODE_TOERRID( sal_uIntPtr x ) in ERRCODE_TOERRID() argument
98 return x & ~ERRCODE_DYNAMIC_MASK; in ERRCODE_TOERRID()
101 inline sal_uIntPtr ERRCODE_TOERROR( sal_uIntPtr x ) in ERRCODE_TOERROR() argument
103 return ((x & ERRCODE_WARNING_MASK) ? 0 : (x & ERRCODE_ERROR_MASK)); in ERRCODE_TOERROR()
/trunk/main/sal/typesconfig/
H A Dtypesconfig.c192 case t_char: { char x = *(char*)p; return dummy(&x); } in GetAtAddress() local
193 case t_short: { short x = *(short*)p; return dummy(&x); } in GetAtAddress() local
194 case t_int: { int x = *(int*)p; return dummy(&x); } in GetAtAddress() local
195 case t_long: { long x = *(long*)p; return dummy(&x); } in GetAtAddress() local
196 case t_double: { double x = *(double*)p; return dummy(&x); } in GetAtAddress() local
/trunk/main/vcl/source/glyphs/
H A Dgraphite_adaptors.cxx57 inline float from_hinted(const int x) { in from_hinted() argument
58 return static_cast<float>(x + 32) / 64.0; in from_hinted()
255 #define fix26_6(x) (x >> 6) + (x & 32 ? (x > 0 ? 1 : 0) : (x < 0 ? -1 : 0)) argument
271 advances.x = metric.GetDelta().X(); in getGlyphMetrics()
294 advances.x = advances.y = 0; in getGlyphMetrics()
302 advances.x = advances.y = 0; in getGlyphMetrics()
319 advances.x = fix26_6(gm.horiAdvance); in getGlyphMetrics()
H A Dgcach_rbmp.cxx53 for( int x = xmax; --x >= 0; p2 += dx ) in ImplRotate8_90() local
69 for( int x = xmax; --x >= 0; ) in ImplRotate8_180() local
98 for( int x = xmax; --x >= 0; p2 += dx ) in ImplRotate1_90() local
141 for( int x = xmax; --x >= 0; ) in ImplRotate1_180() local
151 if( (nInp >>= 1) <= 1 && ((y != 0) || (x != 0)) ) in ImplRotate1_180()
/trunk/main/offapi/com/sun/star/graphic/
H A DMediaProperties.idl101 <li>image/x-cmu-raster</li>
102 <li>image/x-emf</li>
103 <li>image/x-eps</li>
104 <li>image/x-met</li>
105 <li>image/x-pict</li>
106 <li>image/x-portable-bitmap</li>
107 <li>image/x-portable-pixmap</li>
108 <li>image/x-wmf</li>
109 <li>image/x-svm</li>
110 <li>image/x-xpixmap</li>
[all …]
/trunk/main/mysqlc/source/
H A Dmysqlc_preparedstatement.cxx300 ((sql::PreparedStatement *)cppStatement)->setBoolean(parameter, x); in setBoolean()
311 void SAL_CALL OPreparedStatement::setByte(sal_Int32 parameter, sal_Int8 x) in setByte() argument
320 ((sql::PreparedStatement *)cppStatement)->setInt(parameter, x); in setByte()
423 void SAL_CALL OPreparedStatement::setDouble(sal_Int32 parameter, double x) in setDouble() argument
432 ((sql::PreparedStatement *)cppStatement)->setDouble(parameter, x); in setDouble()
443 void SAL_CALL OPreparedStatement::setFloat(sal_Int32 parameter, float x) in setFloat() argument
452 ((sql::PreparedStatement *)cppStatement)->setDouble(parameter, x); in setFloat()
463 void SAL_CALL OPreparedStatement::setInt(sal_Int32 parameter, sal_Int32 x) in setInt() argument
472 ((sql::PreparedStatement *)cppStatement)->setInt(parameter, x); in setInt()
781 ((sql::PreparedStatement *)cppStatement)->setInt(parameter, x); in setShort()
[all …]
/trunk/main/connectivity/source/inc/java/sql/
H A DResultSet.hxx180 …virtual void SAL_CALL updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::sun::star::s…
181 …virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
182 …virtual void SAL_CALL updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::sun::star::sd…
183 …virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
184 …virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
185 …virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::…
186 …virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc…
187 …virtual void SAL_CALL updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(::com:…
189 …virtual void SAL_CALL updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x ) t…
190 …virtual void SAL_CALL updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::Time& x ) t…
[all …]
/trunk/main/canvas/source/cairo/
H A Dcairo_quartz_cairo.cxx83 QuartzSurface::QuartzSurface( NSView* pView, int x, int y, int width, int height ) : in QuartzSurface() argument
87 …as::cairo::Surface(NSView*, x:%d, y:%d, w:%d, h:%d): New Surface for window", x, y, width, height); in QuartzSurface()
104 cairo_surface_set_device_offset( mpSurface.get(), x, y ); in QuartzSurface()
117 QuartzSurface::QuartzSurface( CGContextRef rContext, int x, int y, int width, int height ) : in QuartzSurface() argument
121 …airo::Surface(CGContext:%p, x:%d, y:%d, w:%d, h:%d): New Surface.", rContext, x, y, width, height); in QuartzSurface()
131 cairo_surface_set_device_offset( mpSurface.get(), x, y ); in QuartzSurface()
291 int x, int y, int width, int height ) in createSurface() argument
300 surf = SurfaceSharedPtr(new QuartzSurface(pSysData->pView, x, y, width, height)); in createSurface()
307 … surf = SurfaceSharedPtr(new QuartzSurface(aSysData.rCGContext, x, y, width, height)); in createSurface()
/trunk/main/cppuhelper/source/
H A Dfactory.cxx51 #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) argument
524 Reference<XInterface > x; in dispose() local
528 x = xTheInstance; in dispose()
532 Reference<XComponent > xComp( x, UNO_QUERY ); in dispose()
747 if (x.is()) in createInstanceEveryTime()
752 xModuleFactory.set( x, UNO_QUERY ); in createInstanceEveryTime()
753 xModuleFactoryDepr.set( x, UNO_QUERY ); in createInstanceEveryTime()
776 if (x.is()) in createInstanceWithArguments()
781 xModuleFactory.set( x, UNO_QUERY ); in createInstanceWithArguments()
809 if (x.is()) in createInstanceWithArgumentsAndContext()
[all …]
/trunk/main/offapi/com/sun/star/chart2/
H A DXRegressionCurveCalculator.idl45 the <it>x</it>- and <it>y</it>-values given.
48 All x-values that represent the measurement points on
59 /** calculates the value of the regression curve for <it>x</it>.
61 @param x
67 If <it>x</it> is element of the domain of the regression
71 If <it>x</it> is not part of the domain of the regression
74 double getCurveValue( [in] double x )
95 x-direction
128 formula in a form <pre>"f(x) = ..."</pre>, where the
130 you might get <pre>"f(x) = 0.341 x + 1.45"</pre>.
/trunk/main/sdext/source/pdfimport/tree/
H A Dwritertreevisiting.cxx115 double rel_x = rElem.x, rel_y = rElem.y; in fillFrameProps()
138 rel_x -= pAnchor->x; in fillFrameProps()
564 line_left = pDraw->x; in visit()
613 if( pGeo->x < line_left ) in visit()
614 line_left = pGeo->x; in visit()
622 line_left = pGeo->x; in visit()
789 if( pCur->x + pCur->w + pNext->h*0.15 < pNext->x ) in optimizeTextElements()
956 double p_x = elem.Parent->x; in visit()
978 (pPage && fabs( elem.x+elem.w/2 - (pPage->x + pPage->w/2) ) < delta) ) in visit()
1086 if( (*it)->x < elem.LeftMargin ) in visit()
[all …]
/trunk/main/connectivity/source/inc/ado/
H A DAResultSet.hxx93 void updateValue(sal_Int32 columnIndex,const OLEVariant& x);
199 …virtual void SAL_CALL updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::sun::star::s…
200 …virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
201 …virtual void SAL_CALL updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::sun::star::sd…
202 …virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
203 …virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
204 …virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::…
205 …virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc…
206 …virtual void SAL_CALL updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(::com:…
208 …CALL updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x ) throw(::com::sun::…
[all …]
/trunk/main/desktop/test/deployment/version/
H A Dreadme.txt50 - If version y of extension e is to be installed and version x < y of
53 will replace x with y.
55 - If version y of extension e is to be installed and version x >= y of
60 - If version y of extension e is to be installed and any version x of
63 will replace x with y.
65 - If version y of extension e is to be installed and any version x of
70 will query with a dialog whether to replace x with y. The dialog will have
71 "OK" (replace) preselected if x < y, and "Cancel" otherwise.
73 - If replacing an installed version x of an extension e with a version y fails
75 user does not agree, version x is left installed afterwards.
/trunk/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/
H A DSResultSet.cxx582 void SAL_CALL OResultSet::updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(SQLException, Ru… in updateBoolean() argument
589 void SAL_CALL OResultSet::updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(SQLException, Runti… in updateByte() argument
597 void SAL_CALL OResultSet::updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(SQLException, Run… in updateShort() argument
604 void SAL_CALL OResultSet::updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(SQLException, Runti… in updateInt() argument
611 void SAL_CALL OResultSet::updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(SQLException, Runt… in updateLong() argument
618 void SAL_CALL OResultSet::updateFloat( sal_Int32 columnIndex, float x ) throw(SQLException, Runtime… in updateFloat() argument
626 void SAL_CALL OResultSet::updateDouble( sal_Int32 columnIndex, double x ) throw(SQLException, Runti… in updateDouble() argument
647 void SAL_CALL OResultSet::updateDate( sal_Int32 columnIndex, const Date& x ) throw(SQLException, Ru… in updateDate() argument
655 void SAL_CALL OResultSet::updateTime( sal_Int32 columnIndex, const Time& x ) throw(SQLException, Ru… in updateTime() argument
663 void SAL_CALL OResultSet::updateTimestamp( sal_Int32 columnIndex, const DateTime& x ) throw(SQLExce… in updateTimestamp() argument
[all …]
H A DSResultSet.hxx177 …virtual void SAL_CALL updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::sun::star::s…
178 …virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
179 …virtual void SAL_CALL updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::sun::star::sd…
180 …virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
181 …virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
182 …virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::…
183 …virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc…
184 …virtual void SAL_CALL updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(::com:…
186 …CALL updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x ) throw(::com::sun::…
187 …CALL updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::Time& x ) throw(::com::sun::…
[all …]
/trunk/main/connectivity/source/drivers/macab/
H A DMacabResultSet.hxx188 …virtual void SAL_CALL updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::sun::star::s…
189 …virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
190 …virtual void SAL_CALL updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::sun::star::sd…
191 …virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
192 …virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
193 …virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::…
194 …virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc…
195 …virtual void SAL_CALL updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(::com:…
197 …virtual void SAL_CALL updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x ) t…
198 …virtual void SAL_CALL updateTime( sal_Int32 columnIndex, const ::com::sun::star::util::Time& x ) t…
[all …]
/trunk/main/canvas/source/vcl/
H A Dcanvashelper.cxx994 for( int x=0; x<nWidth; ++x ) in getData() local
996 pRes[ nCurrPos++ ] = pReadAccess->GetColor( y, x ).GetRed(); in getData()
997 pRes[ nCurrPos++ ] = pReadAccess->GetColor( y, x ).GetGreen(); in getData()
998 pRes[ nCurrPos++ ] = pReadAccess->GetColor( y, x ).GetBlue(); in getData()
1063 int x, y, nCurrPos(0); in setData() local
1072 for( x=0; x<nWidth; ++x ) in setData()
1088 for( x=0; x<nWidth; ++x ) in setData()
1103 for( x=0; x<nWidth; ++x ) in setData()
1116 for( x=0; x<nWidth; ++x ) in setData()
1118 pWriteAccess->SetPixel( y, x, BitmapColor( data[ nCurrPos ], in setData()
/trunk/main/dbaccess/source/core/inc/
H A DDatabaseDataProvider.hxx138 …virtual void SAL_CALL setBoolean(sal_Int32 parameterIndex, sal_Bool x) throw(::com::sun::star::sdb…
139 …virtual void SAL_CALL setByte(sal_Int32 parameterIndex, sal_Int8 x) throw(::com::sun::star::sdbc::…
140 …virtual void SAL_CALL setShort(sal_Int32 parameterIndex, sal_Int16 x) throw(::com::sun::star::sdbc…
141 …virtual void SAL_CALL setInt(sal_Int32 parameterIndex, sal_Int32 x) throw(::com::sun::star::sdbc::…
142 …virtual void SAL_CALL setLong(sal_Int32 parameterIndex, sal_Int64 x) throw(::com::sun::star::sdbc:…
143 …virtual void SAL_CALL setFloat(sal_Int32 parameterIndex, float x) throw(::com::sun::star::sdbc::SQ…
144 …virtual void SAL_CALL setDouble(sal_Int32 parameterIndex, double x) throw(::com::sun::star::sdbc::…
145 …virtual void SAL_CALL setString(sal_Int32 parameterIndex, const ::rtl::OUString& x) throw(::com::s…
147 …virtual void SAL_CALL setDate(sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x) thr…
148 …virtual void SAL_CALL setTime(sal_Int32 parameterIndex, const ::com::sun::star::util::Time& x) thr…
[all …]
/trunk/main/cppuhelper/test/
H A Dtestidlclass.cxx108 Reference< XIdlClass > x = ::cppu::createStandardClass( in testidlclass() local
118 x = ::cppu::createStandardClass( in testidlclass()
130 x = ::cppu::createStandardClass( in testidlclass()
144 x = ::cppu::createStandardClass( in testidlclass()
159 x = ::cppu::createStandardClass( in testidlclass()
174 x = ::cppu::createStandardClass( in testidlclass()
192 x = ::cppu::createStandardClass( in testidlclass()
208 x = ::cppu::createStandardClass( in testidlclass()
/trunk/main/extensions/source/scanner/
H A Dgrid.cxx190 Point GridWindow::transform( double x, double y ) in transform() argument
194 aRet.X() = (long)( ( x - m_fMinX ) * in transform()
280 double x = m_pXValues[ i ]; in computeNew() local
281 m_pNewYValues[ i ] = interpolate( x, nodex, nodey, nSorted ); in computeNew()
299 double x, in interpolate() argument
313 sum *= x - pNodeX[ n ]; in interpolate()
580 double x, y; in IMPL_LINK() local
581 transform( m_aHandles[i].maPos, x, y ); in IMPL_LINK()
583 double delta = std::fabs( x-m_pXValues[0] ); in IMPL_LINK()
586 if( delta > std::fabs( x - m_pXValues[ n ] ) ) in IMPL_LINK()
[all …]
/trunk/main/sysui/desktop/solaris/
H A Dmailcap33 /^application\/x-star/d
51 application/x-starwriter; %PREFIX -view %s
55 application/x-starmath; %PREFIX -view %s
62 application/x-starcalc; %PREFIX -view %s
64 application/x-starchart; %PREFIX -view %s
68 application/x-msexcel; %PREFIX -view %s
74 application/x-starimpress; %PREFIX -view %s
78 application/x-mspowerpoint; %PREFIX -view %s
84 application/x-stardraw; %PREFIX -view %s
88 application/x-wordperfect; %PREFIX -view %s
/trunk/main/connectivity/source/inc/file/
H A DFResultSet.hxx178 …void updateValue(sal_Int32 columnIndex,const ORowSetValue& x ) throw(::com::sun::star::sdbc::SQLEx…
273 …virtual void SAL_CALL updateBoolean( sal_Int32 columnIndex, sal_Bool x ) throw(::com::sun::star::s…
274 …virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
275 …virtual void SAL_CALL updateShort( sal_Int32 columnIndex, sal_Int16 x ) throw(::com::sun::star::sd…
276 …virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
277 …virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
278 …virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::…
279 …virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc…
280 …virtual void SAL_CALL updateString( sal_Int32 columnIndex, const ::rtl::OUString& x ) throw(::com:…
282 …CALL updateDate( sal_Int32 columnIndex, const ::com::sun::star::util::Date& x ) throw(::com::sun::…
[all …]
/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DPane.java42 private byte[] x = new byte[2]; field in Pane
81 int xTwips = EndianConverter.readShort(x)/11; in getSplitPoint()
94 return (new Point(EndianConverter.readShort(x), in getFreezePoint()
114 x = EndianConverter.writeShort(xPxl); in setSplitPoint()
117 x = EndianConverter.writeShort((short) p.getX()); in setSplitPoint()
189 int numOfBytesRead = input.read(x); in read()
196 Debug.log(Debug.TRACE, "\tx : "+ EndianConverter.readShort(x) + in read()
208 output.write(x); in write()

Completed in 166 milliseconds

12345678910>>...47