Home
last modified time | relevance | path

Searched refs:y (Results 51 – 75 of 645) sorted by relevance

12345678910>>...26

/aoo42x/test/testuno/source/fvt/uno/sc/formula/
H A DTestFormulaDocs.java128 for( int y = 0; y < 8; ++y) { in testOneDoc()
130 XCell xCell = xSheet.getCellByPosition( x, y); in testOneDoc()
137 nTestRowStart = y + 1; in testOneDoc()
140 assertTrue( "TestID and TestOK marker not in same row!", nTestRowStart == y + 1); in testOneDoc()
151 for( int y = nTestRowStart; y < nTestRowEnd; ++y) { in testOneDoc()
153 XCell xCell = xSheet.getCellByPosition( nTestIdCol, y); in testOneDoc()
162 xCell = xSheet.getCellByPosition( nTestOkCol, y); in testOneDoc()
/aoo42x/main/sal/qa/inc/
H A Dvalueequal.hxx29 bool is_equal(T x, T y, sal_Int16 _nPrec) in is_equal() argument
56 if (y < 0) in is_equal()
58 y = -y; in is_equal()
90 long double nDelta = fabs( x - y ) ; in is_equal()
151 bool is_float_equal(float x, float y) in is_float_equal() argument
153 return is_equal<float>(x, y, PREC_float); in is_float_equal()
155 bool is_double_equal(double x, double y) in is_double_equal() argument
157 return is_equal<double>(x, y, PREC_double); in is_double_equal()
/aoo42x/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/
H A DDialogFocusTraversalPolicy.java63 for(int y = 0; y <= x; y++) { in getComponentAfter()
64 if(order[y].isEnabled() && order[x].isVisible()) { in getComponentAfter()
65 index = y; in getComponentAfter()
90 for(int y = order.length -1; y >= x; y--) { in getComponentBefore()
91 if(order[y].isEnabled() && order[x].isVisible()) { in getComponentBefore()
92 index = y; in getComponentBefore()
/aoo42x/main/svx/source/svdraw/
H A Dsvdsnpv.cxx321 long y=rPnt.Y(); in SnapPos() local
347 long b=y-rPos.Y(); in SnapPos()
352 long b=y-rPos.Y(); in SnapPos()
374 a=y- upp ; if (Abs(a)<=my) { dy1=-a; if (Abs(dy1)<Abs(dy)) dy=dy1; } // linker Rand in SnapPos()
401 dy1=y-aP.Y(); in SnapPos()
419 if (Abs(y-aLog.Top ())<=my) { dy1=-(y-aLog.Top ()); if (Abs(dy1)<Abs(dy)) dy=dy1; } in SnapPos()
420 if (Abs(y-aLog.Bottom())<=my) { dy1=-(y-aLog.Bottom()); if (Abs(dy1)<Abs(dy)) dy=dy1; } in SnapPos()
447 double fy = (double)y; in SnapPos()
455 y = (long)((fy - (double)pPV->GetPageOrigin().Y()) / fSnapWidth); in SnapPos()
456 y = (long)((double)y * fSnapWidth + (double)pPV->GetPageOrigin().Y()); in SnapPos()
[all …]
/aoo42x/main/basegfx/source/workbench/
H A Dconvexhull.cxx42 dy = p2.y - p1.y; ay = absval( dy ); in theta()
94 dx1 = p1.x - p0.x; dy1 = p1.y - p0.y; in ccw()
95 dx2 = p2.x - p0.x; dy2 = p2.y - p0.y; in ccw()
171 if( result[i].y < result[min].y ) in convexHull()
178 if( result[i].y == result[min].y && in convexHull()
/aoo42x/main/scripting/examples/java/debugger/
H A DOOBeanShellDebugger.java350 int startLine = clip.y / h; in paintComponent()
351 int endLine = (clip.y + clip.height) / h + 1; in paintComponent()
361 int y = i * h; in paintComponent() local
363 g.drawString(text, 0, y + ascent); in paintComponent()
368 drawArrow(g, ascent, x, y); in paintComponent()
376 y += ascent - 10; in drawArrow()
377 int dy = y; in drawArrow()
380 for (x = dx + 5; x <= dx + 10; x++, y++) { in drawArrow()
381 arrow.addPoint(x, y); in drawArrow()
383 for (x = dx + 9; x >= dx + 5; x--, y++) { in drawArrow()
[all …]
/aoo42x/main/libtextcat/data/new_fingerprints/lm/
H A Dmingo.lm13 y 403
113 íy 50
124 yô 46
149 yö 40
177 yô_ 34
188y 32
200 yë 30
289 ëníy 22
291 wëníy 22
378 yê 17
[all …]
/aoo42x/main/filter/source/graphicfilter/eppm/
H A Deppm.cxx154 for ( sal_uLong y = 0; y < mnHeight; y++ ) in ImplWriteBody() local
158 const BitmapColor& rColor = mpAcc->GetPixel( y, x ); in ImplWriteBody()
167 for ( sal_uLong y = 0; y < mnHeight; y++ ) in ImplWriteBody() local
178 nDat[0] = mpAcc->GetPixel( y, x ).GetRed(); in ImplWriteBody()
179 nDat[1] = mpAcc->GetPixel( y, x ).GetGreen(); in ImplWriteBody()
180 nDat[2] = mpAcc->GetPixel( y, x ).GetBlue(); in ImplWriteBody()
/aoo42x/main/i18npool/source/search/
H A Dlevdis.cxx421 inline int WLevDistance::Min3( int x, int y, int z ) in Min3() argument
423 if ( x < y ) in Min3()
426 return( y < z ? y : z ); in Min3()
432 int WLevDistance::Mid3( int x, int y, int z ) in Mid3() argument
434 int min = Min3(x,y,z); in Mid3()
436 return( y < z ? y : z); in Mid3()
437 else if ( y == min ) in Mid3()
440 return( x < y ? x : y); in Mid3()
446 int WLevDistance::Max3( int x, int y, int z ) in Max3() argument
448 if ( x > y ) in Max3()
[all …]
/aoo42x/main/basebmp/inc/basebmp/
H A Dscaleimage.hxx127 const int src_height( s_end.y - s_begin.y ); in scaleImage()
130 const int dest_height( d_end.y - d_begin.y ); in scaleImage()
162 for( int y=0; y<dest_height; ++y, ++d_begin.y, ++t_begin.y ) in scaleImage() local
H A Dpolypolygonrenderer.hxx201 for( sal_Int32 y=nMinY; y <= nMaxY; ++y ) in renderClippedPolyPolygon() local
203 if( !aGET[y-nMinY].empty() ) in renderClippedPolyPolygon()
207 … detail::VectorOfVectorOfVertices::value_type::iterator vertex=aGET[y-nMinY].begin(); in renderClippedPolyPolygon()
208 … detail::VectorOfVectorOfVertices::value_type::iterator const end=aGET[y-nMinY].end(); in renderClippedPolyPolygon()
254 y >= nClipY1 && in renderClippedPolyPolygon()
355 if( y >= nClipY1 ) in renderClippedPolyPolygon()
356 ++aScanline.y; in renderClippedPolyPolygon()
/aoo42x/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()
104 int y = fromY; in drag() local
114 while (x != toX || y != toY) { in drag()
116 y += sy; in drag()
120 if( ((y - toY) * dy) > 0) in drag()
121 y = toY; in drag()
[all …]
/aoo42x/main/vcl/unx/generic/window/
H A Dsalframe.cxx115 int x, y; in doReparentPresentationDialogues() local
131 x, y ); in doReparentPresentationDialogues()
223 int x = 0, y = 0; in Init() local
246 y = maGeometry.nY; in Init()
510 maGeometry.nY = y; in Init()
2051 pHints->y = values.y; in SetPosSize()
3630 aRect.y = pEvent->xexpose.y; in HandleExposeEvent()
3638 aRect.y = pEvent->xgraphicsexpose.y; in HandleExposeEvent()
3899 int x = 0, y = 0; in HandleReparentEvent() local
3933 int xp, yp, x, y; in HandleReparentEvent() local
[all …]
/aoo42x/main/qadevOOo/tests/java/ifc/sheet/
H A D_XDataPilotTable2.java144 for (int y = mRangeTable.StartRow; y <= mRangeTable.EndRow && rangeGood; ++y) in _getPositionData()
147 addr.Row = y; in _getPositionData()
403 for (int y = mRangeResult.StartRow; y <= mRangeResult.EndRow; ++y) in buildResultCells()
408 addr.Row = y; in buildResultCells()
503 for (int y = 0; y < sheetData[x].length; ++y) in checkDrillDownSheetContent()
505 Object cell1 = sheetData[x][y]; in checkDrillDownSheetContent()
506 Object cell2 = data[x][y]; in checkDrillDownSheetContent()
/aoo42x/main/vcl/os2/source/window/
H A Dsalframe.cxx115 pptl->y = nScreenHeight - pptl->y; in _WinQueryPointerPos()
138 ptlOwner.y = pswp->y; in _WinQueryWindowPos()
141 pswp->y = ptlOwner.y; in _WinQueryWindowPos()
152 pswp->y = swpOwner.cy - (pswp->y + pswp->cy); in _WinQueryWindowPos()
170 pFrame->mhWndFrame, x, y, cx, cy, fl); in _WinSetWindowPos()
219 ptlOwner.y = (swpOwner.cy - cy) / 2; in _WinSetWindowPos()
228 ptlOwner.y = swpOwner.cy - (y + cy); in _WinSetWindowPos()
238 y = ptlOwner.y; in _WinSetWindowPos()
2464 aPt.y = pFrame->mnHeight - aPt.y - 1; in ImplHandleMouseMsg()
2466 aMouseEvt.mnY = aPt.y; in ImplHandleMouseMsg()
[all …]
/aoo42x/main/vcl/unx/generic/gdi/
H A Dsalgdi3.cxx94 double y; member
484 aGlyph.y = aPos.Y(); in DrawCairoAAFontString()
708 if( aXRect.y < 0 ) aXRect.y = 0; in DrawServerAAForcedString()
710 if( aXRect.height+aXRect.y > nHeight ) aXRect.height = nHeight-aXRect.y; in DrawServerAAForcedString()
715 aXRect.y = 0; in DrawServerAAForcedString()
739 if( nYmin < aXRect.y ) nYmin = aXRect.y; in DrawServerAAForcedString()
741 if( nYmax >= aXRect.y+aXRect.height ) nYmax = aXRect.y + aXRect.height - 1; in DrawServerAAForcedString()
764 int x = 0, y = 0; in DrawServerAAForcedString() local
771 nYmin += y-nYmin; in DrawServerAAForcedString()
829 if( y > nYmax - nY1 ) in DrawServerAAForcedString()
[all …]
/aoo42x/extras/l10n/source/vi/
H A Dlocalize.sdf1168y văn bản lỗi để tại đây văn bản lỗi để tại đây văn bản lỗi để tại đây văn bản lỗi để tại đây
1826 …NINSTALLATIONONGOING_1 0 vi Trang này hiển thị thành tiến hành hủy cài đặt đang chạy. Để hủy bỏ…
11998y phục vụ ủy nhiệm, nhập thông tin về máy phục vụ ủy nhiệm dưới \<item type=\"menuitem\"\>Công cụ …
17268 …string SAMPLES 0 vi Để sử dụng chức năng đầy đủ của ví dụ mẫu này, hãy tạo một tài liệu dựa trê…
21028 …w\view.src 0 string STR_NODEFPRINTER 0 vi Không tìm thấyy in mặc định.\nHãy chọn một máy in …
21029 …c 0 string STR_NOSTARTPRINTER 0 vi Không thể khởi chạyy in.\nHãy kiểm tra lại cấu hình máy i…
26436y tháng từ một chuỗi ngày tháng. Chuỗi ngày tháng là một ngày tháng hoàn toàn được đại diện dưới d…
39498y in sẽ được lưu cùng với tài liệu. Tùy chọn này có thể gây ra tài liệu được in ra máy in ở xa, nế…
52412y hoạt họa khác, mà chạy khi hình riêng được hiển thị. Dãy hoạt họa thêm này được liệt kê trong ph…
60308 …thể được định dạng dạng ngày tháng. Vì vậy bạn thấy ngày tháng của một ngày cách \<emph\>ngày đầu\…
[all …]
/aoo42x/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()
/aoo42x/main/vcl/source/glyphs/
H A Dgcach_rbmp.cxx51 for( int y = ymax; --y >= 0; p2 += dy ) in ImplRotate8_90() local
66 for( int y = ymax/2; --y >= 0; ) in ImplRotate8_180() local
94 for( int y = ymax; --y >= 0; ) in ImplRotate1_90() local
135 for( int y = ymax; --y >= 0; ) in ImplRotate1_180() local
151 if( (nInp >>= 1) <= 1 && ((y != 0) || (x != 0)) ) in ImplRotate1_180()
H A Dgcach_ftyp.cxx1112 aVector.y = 0; in ApplyGlyphTransform()
1122 aVector.y = -rMetrics.ascender; in ApplyGlyphTransform()
1376 pGlyphFT->advance.y = 0; in InitGlyphData()
1548 for( sal_uLong y=0; y < rRawBitmap.mnHeight; y++ ) in GetGlyphBitmap1() local
1685 for( int y = rRawBitmap.mnHeight, x; --y >= 0 ; ) in GetGlyphBitmap8() local
1695 for( int y = rRawBitmap.mnHeight, x; --y >= 0 ; ) in GetGlyphBitmap8() local
1713 for( sal_uLong y=0; y < rRawBitmap.mnHeight; y++ ) in GetGlyphBitmap8() local
1729 for( sal_uLong y=0; y < rRawBitmap.mnHeight; y++ ) in GetGlyphBitmap8() local
2178 maPosition.y = nY; in AddPoint()
2244 rA.AddPoint( p0->x, p0->y, POLY_NORMAL ); in FT_move_to()
[all …]
/aoo42x/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DPane.java43 private byte[] y = new byte[2]; field in Pane
82 int yTwips = EndianConverter.readShort(y)/15; in getSplitPoint()
95 EndianConverter.readShort(y))); in getFreezePoint()
111 y = EndianConverter.writeShort(yPxl); in setSplitPoint()
116 y = EndianConverter.writeShort((short) p.getY()); in setSplitPoint()
190 numOfBytesRead += input.read(y); in read()
197 " y : " + EndianConverter.readShort(y) + in read()
209 output.write(y); in write()
/aoo42x/main/filter/source/graphicfilter/epbm/
H A Depbm.cxx150 for ( sal_uLong y = 0; y < mnHeight; y++ ) in ImplWriteBody() local
156 if (!(mpAcc->GetPixelIndex( y, x ) & 1 ) ) in ImplWriteBody()
168 for ( sal_uLong y = 0; y < mnHeight; y++ ) in ImplWriteBody() local
178 *mpOStm << (sal_uInt8)( ( mpAcc->GetPixelIndex( y, x ) ^ 1 ) + '0' ) ; in ImplWriteBody()
/aoo42x/main/canvas/source/tools/
H A Dsurfaceproxy.cxx63 for(sal_Int32 y=0; y<aImageSizeY; y+=aPageSizeY) in SurfaceProxy() local
68 for(sal_Int32 y=0; y<aImageSizeY; y+=aPageSizeY) in SurfaceProxy() local
74 ::basegfx::B2IPoint aOffset(x,y); in SurfaceProxy()
77 ::std::min( aImageSize.getY()-y, in SurfaceProxy()
/aoo42x/main/filter/source/graphicfilter/epgm/
H A Depgm.cxx154 for ( sal_uLong y = 0; y < mnHeight; y++ ) in ImplWriteBody() local
158 *mpOStm << mpAcc->GetPixelIndex( y, x ); in ImplWriteBody()
164 for ( sal_uLong y = 0; y < mnHeight; y++ ) in ImplWriteBody() local
175 nDat = mpAcc->GetPixelIndex( y, x ); in ImplWriteBody()
/aoo42x/main/sdext/source/pdfimport/tree/
H A Ddrawtreevisiting.cxx215 double rel_x = rElem.x, rel_y = rElem.y; in fillFrameProps()
556 if( pCurPara && pDraw->y < pCurPara->y + pCurPara->h ) in visit()
580 ( ( pDraw->y >= pText->y && pDraw->y <= pText->y+pText->h ) || in visit()
581 ( pDraw->y+pDraw->h >= pText->y && pDraw->y+pDraw->h <= pText->y+pText->h ) in visit()
618 if( pGeo->y > pCurPara->y + pCurPara->h + fCurLineHeight*0.5 ) in visit()
620 else if( pGeo->y > (pCurPara->y+pCurPara->h - fCurLineHeight*0.05) ) in visit()
941 double p_y = elem.Parent->y; in visit()
1015 if( (*it)->y < elem.TopMargin ) in visit()
1016 elem.TopMargin = (*it)->y; in visit()
1019 if( (*it)->y + (*it)->h > elem.BottomMargin ) in visit()
[all …]

Completed in 1745 milliseconds

12345678910>>...26