Searched defs:xPos (Results 1 - 24 of 24) sorted by relevance

/external/skia/src/ports/
H A DSkHarfBuzzFont.cpp83 hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos,
103 *xPos = SkScalarToHarfbuzzFixed(pt.fX);
82 getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints) argument
/external/webkit/Source/WebCore/platform/graphics/
H A DTextRun.h99 float xPos() const { return m_xpos; } function in class:WebCore::TextRun
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DHarfbuzzSkia.cpp122 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints) argument
143 *xPos = SkiaScalarToHarfbuzzFixed(points[point].fX);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DHarfbuzzSkia.cpp139 static HB_Error getOutlinePoint(HB_Font hbFont, HB_Glyph glyph, int flags, hb_uint32 point, HB_Fixed* xPos, HB_Fixed* yPos, hb_uint32* resultingNumPoints) argument
160 *xPos = SkiaScalarToHarfbuzzFixed(points[point].fX);
/external/webkit/Source/WebCore/svg/
H A DSVGParserUtilities.cpp197 float xPos = 0.0f; local
198 if (!parseNumber(cur, end, xPos))
213 pointsList.append(FloatPoint(xPos, yPos));
/external/webkit/Source/WebCore/rendering/
H A DRenderFlexibleBox.cpp325 int xPos = borderLeft() + paddingLeft(); local
346 xPos = borderLeft() + paddingLeft();
408 childLayer->setStaticInlinePosition(xPos);
431 xPos += child->marginLeft();
453 placeChild(child, xPos, childY);
455 xPos += child->width() + child->marginRight();
458 remainingSpace = borderLeft() + paddingLeft() + contentWidth() - xPos;
603 int xPos = borderLeft() + paddingLeft(); local
606 xPos = width() - paddingRight() - borderRight();
H A DRenderFrameSet.cpp143 int xPos = 0; local
146 xPos += m_cols.m_sizes[c];
148 paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height()));
149 xPos += borderThickness;
538 int xPos = 0; local
547 child->setX(xPos);
568 xPos += child->width() + borderThickness;
573 maxWidth = max(xPos, maxWidth);
612 int xPos = 0; local
615 child->setLocation(xPos, yPo
702 int xPos = 0; local
[all...]
H A DRenderTable.cpp1257 bool RenderTable::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
1263 if (!hasOverflowClip() || overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos))) {
1267 if (child->nodeAtPoint(request, result, xPos, yPos, childPoint.x(), childPoint.y(), action)) {
1268 updateHitTestResult(result, IntPoint(xPos - childPoint.x(), yPos - childPoint.y()));
1277 if (visibleToHitTesting() && (action == HitTestBlockBackground || action == HitTestChildBlockBackground) && boundsRect.intersects(result.rectForPoint(xPos, yPos))) {
1278 updateHitTestResult(result, flipForWritingMode(IntPoint(xPos - tx, yPos - ty)));
1279 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect))
H A DRenderTableSection.cpp1258 bool RenderTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
1269 if (hasOverflowClip() && !overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos)))
1280 if (child->nodeAtPoint(request, result, xPos, yPos, childPoint.x(), childPoint.y(), action)) {
1281 updateHitTestResult(result, IntPoint(xPos - childPoint.x(), yPos - childPoint.y()));
1289 IntPoint location = IntPoint(xPos - tx, yPos - ty);
1324 if (static_cast<RenderObject*>(cell)->nodeAtPoint(request, result, xPos, yPos, cellPoint.x(), cellPoint.y(), action)) {
1325 updateHitTestResult(result, IntPoint(xPos - cellPoint.x(), yPos - cellPoint.y()));
H A DRenderTextControl.cpp478 void RenderTextControl::hitInnerTextElement(HitTestResult& result, int xPos, int yPos, int tx, int ty) argument
482 result.setLocalPoint(IntPoint(xPos - tx - x() - m_innerText->renderBox()->x(),
H A DRenderTextControlSingleLine.cpp335 bool RenderTextControlSingleLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction hitTestAction) argument
343 if (!RenderTextControl::nodeAtPoint(request, result, xPos, yPos, tx, ty, hitTestAction))
350 hitInnerTextElement(result, xPos, yPos, tx, ty);
373 if (m_resultsButton && m_resultsButton->renderer() && xPos < textLeft)
378 if (m_cancelButton && m_cancelButton->renderer() && xPos > textRight)
H A DRenderText.cpp613 ALWAYS_INLINE float RenderText::widthFromCache(const Font& f, int start, int len, float xPos, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const argument
636 w += tabWidth ? tabWidth - fmodf(xPos + w, tabWidth) : monospaceCharacterWidth;
651 return f.width(TextRun(text()->characters() + start, len, allowTabs(), xPos), fallbackFonts, glyphOverflow);
1299 float RenderText::width(unsigned from, unsigned len, float xPos, bool firstLine, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const argument
1307 return width(from, len, style(firstLine)->font(), xPos, fallbackFonts, glyphOverflow);
1310 float RenderText::width(unsigned from, unsigned len, const Font& f, float xPos, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const argument
1330 w = widthFromCache(f, from, len, xPos, fallbackFonts, glyphOverflow);
1332 w = f.width(TextRun(text()->characters() + from, len, allowTabs(), xPos), fallbackFonts, glyphOverflow);
H A DRenderBlockLineLayout.cpp1634 static inline float textWidth(RenderText* text, unsigned from, unsigned len, const Font& font, float xPos, bool isFixedPitch, bool collapseWhiteSpace) argument
1637 return text->width(from, len, font, xPos);
1638 return font.width(TextRun(text->characters() + from, len, !collapseWhiteSpace, xPos));
1641 static void tryHyphenating(RenderText* text, const Font& font, const AtomicString& localeIdentifier, int minimumPrefixLength, int minimumSuffixLength, int lastSpace, int pos, float xPos, int availableWidth, bool isFixedPitch, bool collapseWhiteSpace, int lastSpaceWordSpacing, InlineIterator& lineBreak, int nextBreakable, bool& hyphenated) argument
1656 float maxPrefixWidth = availableWidth - xPos - hyphenWidth - lastSpaceWordSpacing;
1662 unsigned prefixLength = font.offsetForPosition(TextRun(text->characters() + lastSpace, pos - lastSpace, !collapseWhiteSpace, xPos + lastSpaceWordSpacing), maxPrefixWidth, false);
1676 float prefixWidth = hyphenWidth + textWidth(text, lastSpace, prefixLength, font, xPos, isFixedPitch, collapseWhiteSpace) + lastSpaceWordSpacing;
1677 ASSERT(xPos + prefixWidth <= availableWidth);
H A DRenderBox.cpp758 bool RenderBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) argument
765 if (!child->hasLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
766 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
774 if (visibleToHitTesting() && action == HitTestForeground && boundsRect.intersects(result.rectForPoint(xPos, yPos))) {
775 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
776 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect))
1333 // The value is cached in the xPos of the box. We only need this value if
3172 int xPos = point.x(); local
3179 if (xPos < 0 || xPos > righ
[all...]
H A DRenderBoxModelObject.cpp431 int xPos = (isBox() ? toRenderBox(this)->x() : 0); local
438 xPos -= toRenderBox(offsetPar)->borderLeft();
441 xPos += relativePositionOffsetX();
446 xPos += toRenderBox(curr)->x();
450 xPos += toRenderBox(offsetPar)->x();
454 return xPos;
H A DRenderLayer.cpp1154 RenderLayer::convertToLayerCoords(const RenderLayer* ancestorLayer, int& xPos, int& yPos) const argument
1164 xPos += absPos.x();
1197 xPos += (fixedContainerX - ancestorX);
1234 xPos += (thisX - ancestorX);
1244 parentLayer->convertToLayerCoords(ancestorLayer, xPos, yPos);
1246 xPos += x();
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.c248 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1; local
252 xPos -= NR_PART*(PART_LEN1);
256 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
258 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
291 // int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1);
295 // xPos -= NR_PART * PART_LEN1;
301 // aec->wfBuf[pos + j][0] += MulRe(aec->xfBuf[xPos + j][0],
302 // -aec->xfBuf[xPos
314 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1); local
[all...]
H A Daec_core_sse2.c39 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1; local
43 xPos -= NR_PART*(PART_LEN1);
48 const __m128 xfBuf_re = _mm_loadu_ps(&aec->xfBuf[0][xPos + j]);
49 const __m128 xfBuf_im = _mm_loadu_ps(&aec->xfBuf[1][xPos + j]);
67 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
69 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
134 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1); local
138 xPos
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_vidnt.c1023 int fwKeys, xPos, yPos, fActive, fMinimized, temp; local
H A Dvid_win.c2863 int fwKeys, xPos, yPos, fActive, fMinimized, temp; local
/external/quake/quake/src/WinQuake/
H A Dgl_vidnt.cpp1023 int fwKeys, xPos, yPos, fActive, fMinimized, temp; local
H A Dvid_win.cpp2822 int fwKeys, xPos, yPos, fActive, fMinimized, temp; local
/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 ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 345 milliseconds