Searched defs:startX (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/Source/WebCore/platform/image-decoders/
H A DImageDecoder.h95 // Copies the pixel data at [(startX, startY), (endX, startY)) to the
98 void copyRowNTimes(int startX, int endX, int startY, int endY) argument
100 ASSERT(startX < width());
104 const int rowBytes = (endX - startX) * sizeof(PixelData);
105 const PixelData* const startAddr = getAddr(startX, startY);
107 memcpy(getAddr(startX, destY), startAddr, rowBytes);
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontComplexTextMac.cpp88 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer); local
94 // Draw the glyph buffer now at the starting point returned in startX.
95 FloatPoint startPoint(startX, point.y());
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontWin.cpp103 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer); local
109 // Draw the glyph buffer now at the starting point returned in startX.
110 FloatPoint startPoint(startX, point.y());
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTableTooltipHelper.java139 private void showTooltip(PropertyTooltipProvider provider, int startX, int endX) { argument
150 Control control = provider.createTooltipControl(m_property, m_tooltip, endX - startX, this);
160 tooltipLocation = m_table.toDisplay(new Point(startX, m_y));
162 tooltipLocation = m_table.toDisplay(new Point(startX, m_y + m_rowHeight));
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFontWx.cpp125 float startX = point.x(); local
140 startX += controller.runWidthSoFar() - afterWidth;
142 startX += controller.totalWidth() - afterWidth;
147 startX += beforeWidth;
149 // Draw the glyph buffer now at the starting point returned in startX.
150 FloatPoint startPoint(startX, point.y());
/external/mesa3d/src/pixelflinger2/
H A Dscanline.cpp199 const unsigned y = start->position.y, startX = start->position.x, local
202 assert(bufferWidth > startX && bufferWidth > endX);
207 frame += (y * bufferWidth + startX) * 4;
209 frame += (y * bufferWidth + startX) * 2;
212 const VectorComp_t div = VectorComp_t_CTR(1 / (float)(endX - startX));
231 int * depth = depthBuffer + y * bufferWidth + startX;
232 unsigned char * stencil = stencilBuffer + y * bufferWidth + startX;
238 if (endX >= startX)
239 scanLineFunction(&vertex, &vertexDx, constants, frame, depth, stencil, activeStencil, endX - startX + 1);
262 // const unsigned y = start->position.y, startX
[all...]
/external/skia/gm/
H A Dbitmapscroll.cpp98 void drawLabel(SkCanvas* canvas, const char *text, int startX, int startY, argument
103 path.moveTo(SkIntToScalar(startX), SkIntToScalar(startY));
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DBaseLayerAndroid.cpp202 float startX = startPoint.x(); local
210 backgroundRect.fLeft = origin.x() - startX;
231 ALOGV("repeatedQuadData: startX %f, startY %f , getWidth() %f, getHeight() %f,"
234 startX , startY , getWidth(), getHeight(), nbX , nbY,
238 // Adding startX and startY into the transform can handle the fixed right /
241 matrix.translate(repeatX ? -startX : 0, repeatY ? -startY : 0);
260 float startX = startPoint.x(); local
265 float dx = (j * getWidth()) - startX;
/external/webkit/Source/WebCore/platform/graphics/
H A DFontFastPath.cpp358 float startX = point.x() + getGlyphsAndAdvancesForSimpleText(run, from, to, glyphBuffer); local
363 FloatPoint startPoint(startX, point.y());
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPathOpenVG.cpp341 const VGfloat startX = radius * cos(startAngle) + center.x(); local
368 startX, startY,
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFontQt.cpp357 int startX = QFontMetrics(font()).width(wholeText, from, Qt::TextBypassShaping); local
360 return FloatRect(pt.x() + startX, pt.y(), width, h);
H A DGraphicsContextQt.cpp606 int startX, startY; local
609 // startX, startY is the coordinate of the first image we need to put on the left-top of the rect
612 // startX, startY is at the left top side of the left-top of the rect
613 startX = r.x() >=0 ? r.x() - (r.x() % w) : r.x() - (w - qAbs(r.x()) % w);
621 startX = 0;
627 // startY is fixed, but startX change based on the left-top of the rect
630 startX = r.x() >=0 ? r.x() - (r.x() % w) : r.x() - (w - qAbs(r.x()) % w);
636 // startX is fixed, but startY change based on the left-top of the rect
639 startX = 0;
646 int x = startX;
[all...]
/external/opencv/
H A Dcvjni.cpp514 int startX = MAX(face->x - PAD_FACE_AREA, 0); local
516 int w = m_smallImage->width - startX - face->width - PAD_FACE_AREA_2;
519 m_faceCropArea = cvRect(startX, startY,
/external/skia/src/images/
H A DSkImageDecoder_libjpeg.cpp588 int startX = rect.fLeft; local
594 &startX, &startY, &width, &height);
625 ((startX - rect.x()) / actualSampleSize == 0) &&
661 region.width(), region.height(), startX, startY);
696 ((startX - rect.x()) / actualSampleSize == 0) &&
746 region.width(), region.height(), startX, startY);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.cpp719 float startX, startY, endX, endY; local
724 getEllipsePointByAngle(sar, a, b, startX, startY);
727 transformArcPoint(startX, startY, p);
730 FloatPoint start(startX, startY);
H A DGraphicsContextWinCE.cpp806 int startX, startY, endX, endY; local
809 startX = stableRound(fstartX);
814 startX += centerX;
819 if (startX < endX) {
820 clipRect.left = startX;
824 clipRect.right = startX;
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.cpp1410 float startX = (buffered->start(i, ex) / player->duration()) * 100; local
1411 float width = ((buffered->end(i, ex) / player->duration()) * 100) - startX;
1412 p.painter->drawRect(startX, 37, width, 26);
/external/quake/quake/src/QW/scitech/include/
H A Dmgraph.h684 m_int startX,startY; /* Starting point on arc */ member in struct:__anon11536
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DMGRAPH.H684 m_int startX,startY; /* Starting point on arc */ member in struct:__anon11835
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp5317 RefPtr<CSSPrimitiveValue> startX, startY; local
5323 startX = location;
5331 if (startX)
5333 startX = location;
5347 if (!startX && !startY)
5350 result->setFirstX(startX.release());
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp4212 int startX, int startY, int endX, int endY)
4220 VisiblePosition startSelect = visiblePositionForContentPoint(startX, startY);
4241 void WebViewCore::deleteText(int startX, int startY, int endX, int endY) argument
4244 getTextRanges(startX, startY, endX, endY);
4370 String WebViewCore::getText(int startX, int startY, int endX, int endY) argument
4375 getTextRanges(startX, startY, endX, endY);
4982 jint startX, jint startY, jint endX, jint endY)
4985 viewImpl->deleteText(startX, startY, endX, endY);
4997 jint startX, jint startY, jint endX, jint endY)
5000 WTF::String text = viewImpl->getText(startX, start
4211 getTextRanges( int startX, int startY, int endX, int endY) argument
4981 DeleteText(JNIEnv* env, jobject obj, jint nativeClass, jint startX, jint startY, jint endX, jint endY) argument
4996 GetText(JNIEnv* env, jobject obj, jint nativeClass, jint startX, jint startY, jint endX, jint endY) argument
[all...]
/external/dexmaker/lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit3.8.2/ junit/awtui/ junit/extensions/ junit/framework/ ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 490 milliseconds

12