Home
last modified time | relevance | path

Searched refs:x (Results 51 – 75 of 1170) sorted by relevance

12345678910>>...47

/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLResultSet.java764 jdbcResultSet.updateBoolean(columnIndex, x); in updateBoolean()
773 jdbcResultSet.updateByte(columnIndex, x); in updateByte()
782 jdbcResultSet.updateShort(columnIndex, x); in updateShort()
791 jdbcResultSet.updateInt(columnIndex, x); in updateInt()
800 jdbcResultSet.updateLong(columnIndex, x); in updateLong()
809 jdbcResultSet.updateFloat(columnIndex, x); in updateFloat()
818 jdbcResultSet.updateDouble(columnIndex, x); in updateDouble()
827 jdbcResultSet.updateString(columnIndex, x); in updateString()
836 jdbcResultSet.updateBytes(columnIndex, x); in updateBytes()
905 if (AnyConverter.isDouble(x)) { in updateNumericObject()
[all …]
/trunk/test/testcommon/source/org/openoffice/test/common/
H A DGraphicsUtil.java192 for (int x = 0; x < dst.getWidth(); x++) { in findRectangle()
194 dst.setRGB(x, y, 0xFFFFFFFF); in findRectangle()
202 for (int x = 0; x < src.getWidth(); x++) { in findRectangle()
204 int rgbSrc = src.getRGB(x, y); in findRectangle()
207 sx = x; in findRectangle()
210 ex = x; in findRectangle()
235 for (int x = 0; x < src.getWidth(); x++) { in detect()
237 int rgbSrc = src.getRGB(x, y); in detect()
239 int rgbDst = dst.getRGB(x, y); in detect()
366 for (int x = 0; x < expected.getWidth(); ++x) { in imageEquals()
[all …]
/trunk/main/sal/rtl/source/
H A Dcipher.c990 x >>= 8; in __rtl_cipherBF()
992 x >>= 8; in __rtl_cipherBF()
994 x >>= 8; in __rtl_cipherBF()
1173 for (x = 0; x < CIPHER_CBLOCK_ARCFOUR; x++) in rtl_cipherARCFOUR_init_Impl()
1174 S[x] = x; in rtl_cipherARCFOUR_init_Impl()
1185 for (x = 0, y = 0; x < CIPHER_CBLOCK_ARCFOUR; x++) in rtl_cipherARCFOUR_init_Impl()
1187 y = (y + S[x] + K[x]) % CIPHER_CBLOCK_ARCFOUR; in rtl_cipherARCFOUR_init_Impl()
1188 t = S[x], S[x] = S[y], S[y] = t; /* swap S[x] and S[y] */ in rtl_cipherARCFOUR_init_Impl()
1222 x = ctx->m_X; in rtl_cipherARCFOUR_update_Impl()
1224 x = (x + 1 ) % CIPHER_CBLOCK_ARCFOUR; in rtl_cipherARCFOUR_update_Impl()
[all …]
/trunk/main/toolkit/test/accessibility/
H A DCanvasShape.java132 maPosition.x * nScaleFactor + nXOffset, in paint()
155 for (int x=0; x<=2; x++) in paint()
159 maShape.x + x/2.0 * maShape.width-3, in paint()
167 for (int x=0; x<=2; x++) in paint()
171 maShape.x + x/2.0 * maShape.width-2, in paint()
207 (float)maShape.x+5, in paintName()
216 (float)maShape.x+5, in paintDescription()
240 double x = maShape.x + aRect.X; in paintText() local
243 g.drawString(sText.substring(i, i+1), (float)x, (float)y); in paintText()
267 public boolean contains (int x, int y) in contains() argument
[all …]
/trunk/main/extensions/test/stm/
H A Ddatatest.cxx181 XInputStreamRef rPipeInput( x , USR_QUERY ); in test()
182 XOutputStreamRef rPipeOutput( x , USR_QUERY ); in test()
746 XInputStreamRef rPipeInput( x , USR_QUERY ); in test()
747 XOutputStreamRef rPipeOutput( x , USR_QUERY ); in test()
750 XInputStreamRef markableInput( x , USR_QUERY ); in test()
751 XActiveDataSinkRef markableSink( x , USR_QUERY ); in test()
754 XOutputStreamRef markableOutput( x , USR_QUERY ); in test()
890 XPersistObjectRef persistRef( x , USR_QUERY ); in testObject()
914 XPersistObjectRef persistRef( x , USR_QUERY ); in testObject()
968 XPersistObjectRef persistRef( x , USR_QUERY ); in testObject()
[all …]
/trunk/main/cui/source/dialogs/
H A Dcolorpicker.cxx474 for( sal_Int32 x = 0; x < nWidth; x++ ) in UpdateBitmap() local
519 x = nWidth; in UpdateBitmap()
520 while( x-- ) in UpdateBitmap()
531 x = nWidth; in UpdateBitmap()
543 x = nWidth; in UpdateBitmap()
555 x = nWidth; in UpdateBitmap()
567 x = nWidth; in UpdateBitmap()
579 x = nWidth; in UpdateBitmap()
759 mdX = x; in SetValues()
1014 int x = aSize.Width(); in Paint() local
[all …]
/trunk/main/offapi/com/sun/star/graphic/
H A DGraphicDescriptor.idl66 <li>image/x-pcx</li>
75 <li>image/x-targa</li>
77 <li>image/x-eps</li>
78 <li>image/x-dxf</li>
79 <li>image/x-met</li>
80 <li>image/x-pict</li>
81 <li>image/x-sgf</li>
82 <li>image/x-svm</li>
83 <li>image/x-wmf</li>
84 <li>image/x-sgv</li>
[all …]
/trunk/main/pyuno/source/module/
H A Duno.py253 for x in modnames:
254 if x in d:
255 mod = d[x]
261 for x in fromlist:
262 if x not in d:
263 if x.startswith( "typeOf" ):
265 d[x] = pyuno.getTypeByName( name + "." + x[6:len(x)] )
267 raise ImportError( "type " + name + "." + x[6:len(x)] +" is unknown" )
271 d[x] = pyuno.getClass( name + "." + x )
275 d[x] = Enum( name , x )
[all …]
/trunk/main/bean/qa/complex/bean/
H A DScreenComparer.java47 public ScreenComparer(int x, int y, int width, int height) in ScreenComparer() argument
49 this(new Rectangle(x, y, width, height)); in ScreenComparer()
121 for (int x = 0; x < w; x++) in compare()
127 if (x < w1 && y < h1) in compare()
129 pixel1 = m_img1.getRGB(x, y); in compare()
136 if (x < w2 && y < h2) in compare()
138 pixel2 = m_img2.getRGB(x, y); in compare()
147 m_imgDiff.setRGB(x, y, m_diffColor); in compare()
151 m_imgDiff.setRGB(x, y, pixel1); in compare()
188 for (int x = 0; x < w1; x++) in compare()
[all …]
/trunk/main/connectivity/inc/connectivity/
H A Dparameters.hxx230 void setBoolean ( sal_Int32 _nIndex, sal_Bool x);
231 void setByte ( sal_Int32 _nIndex, sal_Int8 x);
232 void setShort ( sal_Int32 _nIndex, sal_Int16 x);
233 void setInt ( sal_Int32 _nIndex, sal_Int32 x);
234 void setLong ( sal_Int32 _nIndex, sal_Int64 x);
235 void setFloat ( sal_Int32 _nIndex, float x);
236 void setDouble ( sal_Int32 _nIndex, double x);
237 void setString ( sal_Int32 _nIndex, const ::rtl::OUString& x);
239 void setDate ( sal_Int32 _nIndex, const ::com::sun::star::util::Date& x);
240 void setTime ( sal_Int32 _nIndex, const ::com::sun::star::util::Time& x);
[all …]
/trunk/main/connectivity/source/drivers/macab/
H A DMacabPreparedStatement.hxx84 …virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(::com::sun::star::s…
85 …virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
86 …virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(::com::sun::star::sd…
87 …virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
88 …virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
89 …virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::…
90 …virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ) throw(::com::sun::star::sdbc…
91 …virtual void SAL_CALL setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(::com:…
93 …virtual void SAL_CALL setDate( sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x ) t…
94 …virtual void SAL_CALL setTime( sal_Int32 parameterIndex, const ::com::sun::star::util::Time& x ) t…
[all …]
/trunk/main/sdext/source/pdfimport/tree/
H A Dgenericelements.cxx73 x = pMergeFrom->x; in updateGeometryWith()
80 if( pMergeFrom->x < x ) in updateGeometryWith()
82 w += x - pMergeFrom->x; in updateGeometryWith()
83 x = pMergeFrom->x; in updateGeometryWith()
85 if( pMergeFrom->x+pMergeFrom->w > x+w ) in updateGeometryWith()
86 w = pMergeFrom->w+pMergeFrom->x - x; in updateGeometryWith()
104 x, y, w, h ); in emitStructure()
158 x = aRange.getMinX(); in updateGeometry()
320 if( (*it)->x >= pLink->x && (*it)->x + (*it)->w <= pLink->x + pLink->w && in resolveHyperlink()
434 pEle->x + pEle->w*0.9 <= r_x ) in resolveUnderlines()
[all …]
/trunk/main/connectivity/source/inc/odbc/
H A DOPreparedStatement.hxx84 …nt32 ParameterIndex,const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream>& x,
98 void setDecimal( sal_Int32 parameterIndex, const ::rtl::OUString& x );
129 …virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(::com::sun::star::s…
130 …virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
131 …virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(::com::sun::star::sd…
132 …virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
133 …virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
134 …virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::…
135 …virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ) throw(::com::sun::star::sdbc…
136 …virtual void SAL_CALL setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(::com:…
[all …]
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/canvas/
H A DCanvasShape.java164 maPosition.x, in paint()
188 for (int x=0; x<=2; x++) in paint()
192 maShape.x + x/2.0 * maShape.width-3, in paint()
200 for (int x=0; x<=2; x++) in paint()
204 maShape.x + x/2.0 * maShape.width-2, in paint()
240 (float)maShape.x+5, in paintName()
249 (float)maShape.x+5, in paintDescription()
274 double x = maShape.x + aRect.X; in paintText() local
277 g.drawString (sText.substring(i, i+1), (float)x, (float)y); in paintText()
289 public boolean Contains (int x, int y) in Contains() argument
[all …]
/trunk/main/dbaccess/source/ui/browser/
H A Dformadapter.cxx521 xIface->updateByte(columnIndex, x); in updateByte()
535 xIface->updateInt(columnIndex, x); in updateInt()
542 xIface->updateLong(columnIndex, x); in updateLong()
577 xIface->updateDate(columnIndex, x); in updateDate()
584 xIface->updateTime(columnIndex, x); in updateTime()
907 xIface->setByte(parameterIndex, x); in setByte()
921 xIface->setInt(parameterIndex, x); in setInt()
928 xIface->setLong(parameterIndex, x); in setLong()
963 xIface->setDate(parameterIndex, x); in setDate()
970 xIface->setTime(parameterIndex, x); in setTime()
[all …]
/trunk/main/dbaccess/source/core/api/
H A DRowSet.cxx730 updateValue(columnIndex,x); in updateBoolean()
735 updateValue(columnIndex,x); in updateByte()
740 updateValue(columnIndex,x); in updateShort()
745 updateValue(columnIndex,x); in updateInt()
750 updateValue(columnIndex,x); in updateLong()
755 updateValue(columnIndex,x); in updateFloat()
807 if(x.is()) in updateBinaryStream()
833 Any aNewValue = x; in updateObject()
847 if ( x >>= nValue ) in updateObject()
2623 x->closeInput(); in setBinaryStream()
[all …]
H A DRowSet.hxx219 void setParameter(sal_Int32 parameterIndex, const connectivity::ORowSetValue& x);
223 void updateValue(sal_Int32 columnIndex,const connectivity::ORowSetValue& x);
329 …virtual void SAL_CALL updateByte( sal_Int32 columnIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
331 …virtual void SAL_CALL updateInt( sal_Int32 columnIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
332 …virtual void SAL_CALL updateLong( sal_Int32 columnIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
333 …virtual void SAL_CALL updateFloat( sal_Int32 columnIndex, float x ) throw(::com::sun::star::sdbc::…
334 …virtual void SAL_CALL updateDouble( sal_Int32 columnIndex, double x ) throw(::com::sun::star::sdbc…
379 …virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
381 …virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
383 …virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::…
[all …]
/trunk/main/connectivity/source/inc/file/
H A DFPreparedStatement.hxx65 void setParameter(sal_Int32 parameterIndex, const ORowSetValue& x);
101 …virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(::com::sun::star::s…
102 …virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
103 …virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(::com::sun::star::sd…
104 …virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
105 …virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
106 …virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::…
107 …virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ) throw(::com::sun::star::sdbc…
108 …virtual void SAL_CALL setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(::com:…
110 …virtual void SAL_CALL setDate( sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x ) t…
[all …]
/trunk/main/io/test/stm/
H A Ddatatest.cxx181 Reference < XInterface > x = m_rFactory->createInstance( in test() local
188 x = m_rFactory->createInstance( in test()
195 x = m_rFactory->createInstance( in test()
756 Reference <XInputStream > rPipeInput( x , UNO_QUERY ); in test()
759 x = m_rFactory->createInstance( in test()
765 x = m_rFactory->createInstance( OUString( in test()
779 x = m_rFactory->createInstance( in test()
785 x = m_rFactory->createInstance( in test()
927 Reference < XInterface > x = * new MyPersistObject( in testObject() local
930 Reference< XPersistObject > persistRef( x , UNO_QUERY ); in testObject()
[all …]
/trunk/main/vcl/source/glyphs/
H A Dgcach_ftyp.cxx108 int x, a; in InitGammaTable() local
109 for( x = 0; x < 256; x++) in InitGammaTable()
1551 for( sal_uLong x=0; x < rRawBitmap.mnScanlineSize; x++ ) in GetGlyphBitmap1() local
1554 p[x] |= (p[x] >> 1) | nLastByte; in GetGlyphBitmap1()
1687 for( x = 0; x < rBitmapFT.width; ++x ) in GetGlyphBitmap8()
1698 for( x = 0; x < rBitmapFT.width; ++x, nSrc+=nSrc ) in GetGlyphBitmap8()
1716 for( sal_uLong x=0; x < rRawBitmap.mnWidth; x++ ) in GetGlyphBitmap8() local
1719 p[x] |= p[x] | nLastByte; in GetGlyphBitmap8()
1731 for( sal_uLong x=0; x < rRawBitmap.mnWidth; x++ ) in GetGlyphBitmap8() local
1733 p[x] = aGammaTable[ p[x] ]; in GetGlyphBitmap8()
[all …]
/trunk/main/connectivity/source/inc/ado/
H A DAPreparedStatement.hxx85 …virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(::com::sun::star::s…
86 …virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
87 …virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(::com::sun::star::sd…
88 …virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
89 …virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
90 …virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::…
91 …virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ) throw(::com::sun::star::sdbc…
92 …virtual void SAL_CALL setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(::com:…
94 …virtual void SAL_CALL setDate( sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x ) t…
95 …virtual void SAL_CALL setTime( sal_Int32 parameterIndex, const ::com::sun::star::util::Time& x ) t…
[all …]
/trunk/main/connectivity/source/inc/java/sql/
H A DPreparedStatement.hxx74 …virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(::com::sun::star::s…
75 …virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
76 …virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(::com::sun::star::sd…
77 …virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
78 …virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
79 …virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::…
80 …virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ) throw(::com::sun::star::sdbc…
81 …virtual void SAL_CALL setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(::com:…
83 …virtual void SAL_CALL setDate( sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x ) t…
84 …virtual void SAL_CALL setTime( sal_Int32 parameterIndex, const ::com::sun::star::util::Time& x ) t…
[all …]
/trunk/main/dbaccess/source/core/inc/
H A Dpreparedstatement.hxx104 …virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(::com::sun::star::s…
105 …virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc…
106 …virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(::com::sun::star::sd…
107 …virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc…
108 …virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::com::sun::star::sdb…
109 …virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::…
110 …virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ) throw(::com::sun::star::sdbc…
111 …virtual void SAL_CALL setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ) throw(::com:…
113 …virtual void SAL_CALL setDate( sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x ) t…
114 …virtual void SAL_CALL setTime( sal_Int32 parameterIndex, const ::com::sun::star::util::Time& x ) t…
[all …]
/trunk/main/chart2/source/tools/
H A DRegressionCalculationHelper.hxx78 inline bool operator()( double x, double y ) in operator ()() argument
79 { return ! ( ::rtl::math::isNan( x ) || in operator ()()
81 ::rtl::math::isInf( x ) || in operator ()()
90 { return ! ( ::rtl::math::isNan( x ) || in operator ()()
92 ::rtl::math::isInf( x ) || in operator ()()
94 x <= 0.0 ); in operator ()()
102 { return ! ( ::rtl::math::isNan( x ) || in operator ()()
104 ::rtl::math::isInf( x ) || in operator ()()
114 { return ! ( ::rtl::math::isNan( x ) || in operator ()()
116 ::rtl::math::isInf( x ) || in operator ()()
[all …]
/trunk/main/i18npool/source/isolang/
H A Dlcid.awk112 if ($2 ~ /^0x/)
135 ($hex ~ /^0x/) { $hex = substr( $hex, 3) }
158 for (x in newlang)
160 printf( "xxxxxxx LANGUAGE_%-26s 0x%s%s\n", newlang[x], x, comment[x])
161 n = split(newlang[x],arr,/[^A-Za-z0-9]/)
183 for (x in lang)
185 if (!(x in all))
186 print "// not in input file: " x " " lang[x]
189 for (x in filtered)
190 print "// filtered: " x " " filtered[x]

Completed in 131 milliseconds

12345678910>>...47