Home
last modified time | relevance | path

Searched refs:y (Results 126 – 150 of 646) sorted by relevance

12345678910>>...26

/trunk/main/vcl/test/
H A Dcanvasbitmaptest.cxx502 for( sal_Int32 y=0; y<nHeight; ++y ) in getData() local
505 pOut[ y*nScanlineLen + x ] = sal_Int8(x); in getData()
510 for( sal_Int32 y=0; y<nHeight; ++y ) in getData() local
514 pOut[ y*nScanlineLen + 4*x ] = sal_Int8(rect.X1); in getData()
515 pOut[ y*nScanlineLen + 4*x + 1 ] = sal_Int8(rect.Y2); in getData()
516 pOut[ y*nScanlineLen + 4*x + 2 ] = sal_Int8(x); in getData()
517 pOut[ y*nScanlineLen + 4*x + 3 ] = sal_Int8(rect.Y1); in getData()
/trunk/main/sal/osl/os2/
H A Dsocket.c126 #define FAMILY_FROM_NATIVE(y) osl_AddrFamilyFromNative(y) argument
160 #define PROTOCOL_FROM_NATIVE(y) osl_ProtocolFromNative(y) argument
195 #define TYPE_FROM_NATIVE(y) osl_SocketTypeFromNative(y) argument
243 #define OPTION_FROM_NATIVE(y) osl_SocketOptionFromNative(y) argument
274 #define OPTION_LEVEL_FROM_NATIVE(y) osl_SocketOptionLevelFromNative(y) argument
308 #define MSG_FLAG_FROM_NATIVE(y) osl_SocketMsgFlagFromNative(y) argument
341 #define DIRECTION_FROM_NATIVE(y) osl_SocketDirectionFromNative(y) argument
414 #define ERROR_FROM_NATIVE(y) osl_SocketErrorFromNative(y) argument
/trunk/main/vcl/aqua/source/dtrans/
H A DDropTarget.cxx84 rPoint.y = bounds.size.height - rPoint.y; in CocoaToVCL()
89 rRect.origin.y = bounds.size.height - (rRect.origin.y + rRect.size.height); in CocoaToVCL()
247 sal_Int32 posY = static_cast<sal_Int32>(dragLocation.y); in draggingEntered()
289 sal_Int32 posY = static_cast<sal_Int32>(dragLocation.y); in draggingUpdated()
358 sal_Int32 posY = static_cast<sal_Int32>(dragLocation.y); in performDragOperation()
/trunk/main/bridges/source/cpp_uno/cc50_solaris_intel/
H A Dhash.cxx46 sal_uInt32 f1( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f1() argument
48 return z ^ ( x & ( y ^ z ) ); in f1()
51 sal_uInt32 f2( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f2() argument
53 return x ^ y ^ z; in f2()
56 sal_uInt32 f3( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f3() argument
58 return ( x & y ) + ( z & ( x ^ y ) ); in f3()
/trunk/main/bridges/source/cpp_uno/cc50_solaris_sparc/
H A Dhash.cxx47 sal_uInt32 f1( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f1() argument
49 return z ^ ( x & ( y ^ z ) ); in f1()
52 sal_uInt32 f2( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f2() argument
54 return x ^ y ^ z; in f2()
57 sal_uInt32 f3( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f3() argument
59 return ( x & y ) + ( z & ( x ^ y ) ); in f3()
/trunk/main/basegfx/source/polygon/
H A Db2dpolypolygonrasterconverter.cxx524 for( sal_Int32 y(0); y <= nScanlines; ++y ) in rasterConvert() local
528 ::std::for_each( maScanlines[y].begin(), in rasterConvert()
529 maScanlines[y].end(), in rasterConvert()
558 nMinY + y, in rasterConvert()
563 const sal_Int32 nCurrY( nMinY + y ); in rasterConvert()
/trunk/main/svtools/source/filter/
H A Dsgvtext.cxx442 …ers.x=(short)ChgValue(Atr0.ShdVers.x,0,30000,FlgVal,NumVal); AktAtr.ShdVers.y=AktAtr.ShdVers.x; } … in ProcessOne()
444 … case EscSYDst: { AktAtr.ShdVers.y=(short)ChgValue(Atr0.ShdVers.y,0,30000,FlgVal,NumVal); } break; in ProcessOne()
1023 rOut.DrawText( Point( Pos.x, Pos.y ), s ); in DrawChar()
1087 ySize=Pos2.y-Pos1.y; in Draw()
1092 …FitYMul=sal::static_int_cast< sal_uInt16 >(abs(Pos2.y-Pos1.y)); FitYDiv=FitSize.y; if (FitYDiv==0)… in Draw()
1096 ySize=Pos2.y-Pos1.y; in Draw()
1135 yp1=long(Pos1.y)+yPos; in Draw()
1139 Pos.y=short(yp1); in Draw()
1141 if (DrehWink!=0) RotatePoint(Pos,Pos1.x,Pos1.y,sn,cs); in Draw()
/trunk/main/filter/source/graphicfilter/expm/
H A Dexpm.cxx199 for ( sal_uLong y = 0; y < mnHeight; y++ ) in ImplWriteBody() local
201 ImplCallback( (sal_uInt16)( ( 100 * y ) / mnHeight ) ); // processing output in percent in ImplWriteBody()
205 ImplWritePixel( mpAcc->GetPixelIndex( y, x ) ); in ImplWriteBody()
/trunk/main/basebmp/test/
H A Dtools.cxx39 for( sal_Int32 y=0; y<rSize.getY(); ++y ) in countPixel() local
41 if( rDevice->getPixel( basegfx::B2IPoint(x,y) ) == checkColor ) in countPixel()
/trunk/main/vcl/unx/generic/gdi/
H A Dsalgdi2.cxx272 if( int(nY + nDY) <= int(aRect.y) || nY >= int(aRect.y + aRect.height) ) in Clip()
284 if( nY < aRect.y ) in Clip()
286 nSrcY += aRect.y - nY; in Clip()
287 nDY -= aRect.y - nY; in Clip()
288 nY = aRect.y; in Clip()
290 else if( int(nY + nDY) > int(aRect.y + aRect.height) ) in Clip()
291 nDY = aRect.y + aRect.height - nY; in Clip()
439 …SalPaintEvent aPEvt( aEvent.xexpose.x, aEvent.xexpose.y, aEvent.xexpose.width+1, aEvent.xexpose.he… in YieldGraphicsExpose()
454 …SalPaintEvent aPEvt( aEvent.xgraphicsexpose.x, aEvent.xgraphicsexpose.y, aEvent.xgraphicsexpose.wi… in YieldGraphicsExpose()
H A Dsalbmp.cxx506 int y = nRootY; in SnapShot() local
527 if (y < 0) in SnapShot()
529 height = height + y; in SnapShot()
530 y = 0; in SnapShot()
533 if (y > aRootAttribute.height) in SnapShot()
536 y = aRootAttribute.height; in SnapShot()
539 if (y + height > aRootAttribute.height) in SnapShot()
541 height = aRootAttribute.height - y; in SnapShot()
547 x, y, width, height, AllPlanes, ZPixmap ); in SnapShot()
/trunk/main/vcl/aqua/source/window/
H A Dsalnsmenu.mm142 aImgRect.origin.y = floor((aFrame.size.height - aFromRect.size.height)/2);
165 aImgRect.origin.y = (aFrame.size.height - aFromRect.size.height)/2;
168 … aMousePt.y >= aImgRect.origin.y && aMousePt.y <= (aImgRect.origin.y+aImgRect.size.height) )
/trunk/main/fpicker/source/win32/filepicker/
H A DFileOpenDlg.cxx668 int y = (rcPar.top + rcPar.bottom - lDlgH) / 2; in centerPositionToParent() local
682 if (y < 0) in centerPositionToParent()
683 y = 0; in centerPositionToParent()
684 else if ((y + lDlgH) > vResol) in centerPositionToParent()
685 y = vResol - lDlgH; in centerPositionToParent()
689 NULL, x, y, 0, 0, in centerPositionToParent()
/trunk/main/comphelper/inc/comphelper/
H A Dstl_types.hxx60 …bool operator() (const ::rtl::OUString& x, const ::rtl::OUString& y) const { return x < y ? true :… in operator ()()
68 bool operator() (const ::rtl::OUString& x, const ::rtl::OUString& y) const in operator ()()
71 return rtl_ustr_compare(x.getStr(), y.getStr()) < 0 ? true : false; in operator ()()
73 return rtl_ustr_compareIgnoreAsciiCase(x.getStr(), y.getStr()) < 0 ? true : false; in operator ()()
/trunk/main/basebmp/inc/basebmp/
H A Dgenericcolorimageaccessor.hxx58 { return mpDevice->getPixel( basegfx::B2IPoint( i->x,i->y ) ); } in operator ()()
63 i[diff]->y ) ); } in operator ()()
67 { return mpDevice->setPixel( basegfx::B2IPoint( i->x,i->y ), in set()
73 i[diff]->y ), in set()
/trunk/main/basebmp/source/
H A Ddebug.cxx95 for( int y=0; y<aSize.getY(); ++y ) in debugDump() local
98 …Stream << std::setw(8) << (sal_uInt32)rDevice->getPixel( basegfx::B2IPoint(x,y) ).toInt32() << " "; in debugDump()
/trunk/main/slideshow/source/engine/OGLTrans/
H A DOGLTrans_TransitionImpl.cxx400 …double lt = 0, t = 1.0/nSteps, cx, cy, lcx, lcy, lx = 1, ly = 0, x, y, cxo, cyo, lcxo, lcyo, of=2.… in makeIris() local
404 y = -sin ((3*2*M_PI*t)/nParts); in makeIris()
406 cy = (f*y + 1)/2; in makeIris()
410 cyo = (of*y + 1)/2; in makeIris()
420 ly = y; in makeIris()
821 double a1, a2, x, y; in interpolate() local
825 y = height*(sin (a2) - sin (a1))/2; in interpolate()
827 glTranslated(x, 0, y); in interpolate()
1180 int x, y; in initPermTexture() local
1182 for( y=0; y < 256; y++ ) in initPermTexture()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/
H A DImageHelper.java49 int y = 0; in ImageHelper() local
51 PixelGrabber pg = new PixelGrabber(m_aImage, x, y, m_w, m_h, m_aPixels, 0, m_w); in ImageHelper()
67 public int getPixel(int x, int y) in getPixel() argument
69 return m_aPixels[y * m_w + x]; in getPixel()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/graphical/
H A DImageHelper.java49 int y = 0; in ImageHelper() local
51 PixelGrabber pg = new PixelGrabber(m_aImage, x, y, m_w, m_h, m_aPixels, 0, m_w); in ImageHelper()
71 public int getPixel(final int x, final int y) in getPixel() argument
73 return m_aPixels[y * m_w + x]; in getPixel()
H A DPixelCounter.java158 for (int y = 0; y < _h; y++) { in countPixel()
161 _aPixelCounter.count(img.getPixel(x,y)); in countPixel()
/trunk/main/filter/source/flash/
H A Dswfwriter.cxx226 void Writer::placeShape( sal_uInt16 nID, sal_uInt16 nDepth, sal_Int32 x, sal_Int32 y, sal_uInt16 nC… in placeShape() argument
248 _Int16(static_cast<long>(map100thmm(y)*mnDocYScale)))); in placeShape()
263 void Writer::moveShape( sal_uInt16 nDepth, sal_Int32 x, sal_Int32 y ) in moveShape() argument
283 _Int16(static_cast<long>(map100thmm(y)*mnDocYScale)))); in moveShape()
347 sal_uInt16 Writer::defineShape( const GDIMetaFile& rMtf, sal_Int16 x, sal_Int16 y ) in defineShape() argument
366 placeShape( *aIter, iDepth++, x, y ); in defineShape()
/trunk/main/comphelper/source/property/
H A Dpropertycontainerhelper.cxx52 bool operator() (const PropertyDescription& x, const PropertyDescription& y) const in operator ()()
54 return x.aProperty.Handle < y.aProperty.Handle; in operator ()()
60 bool operator() (const PropertyDescription& x, const sal_Int32& y) const in operator ()()
62 return x.aProperty.Handle < y; in operator ()()
64 bool operator() (const sal_Int32& x, const PropertyDescription& y) const in operator ()()
66 return x < y.aProperty.Handle; in operator ()()
/trunk/main/dtrans/source/win32/dnd/
H A Dtarget.cxx360 POINT point={ pt.x, pt.y}; in DragEnter()
363 e.LocationY= point.y; in DragEnter()
399 POINT point={ pt.x, pt.y}; in DragOver()
402 e.LocationY= point.y; in DragOver()
482 POINT point={ pt.x, pt.y}; in Drop()
485 e.LocationY= point.y; in Drop()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/
H A DDrawTools.java129 int y, String kind ) { in createShape() argument
132 ShapeDsc sDsc = new ShapeDsc( height, width, x, y, kind ); in createShape()
152 int y, String kind ) { in addShape() argument
155 y, kind ) ); in addShape()
/trunk/main/ooo_custom_images/industrial/res/commandimagelist/
H A Dlc_grafmode.xcf.bz2

Completed in 179 milliseconds

12345678910>>...26