/external/chromium_org/v8/test/mjsunit/regress/ |
D | regress-201590.js | 43 var xPos = ((xOffset) * gdpRatio) + this.ORIGIN.x * this.scale - 47 xPos = xPos - Math.round(((tileWidth) * gdpRatio)) + 50 x: Math.floor(xPos),
|
/external/webrtc/src/modules/audio_processing/aec/ |
D | aec_core_sse2.c | 39 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1; in FilterFarSSE2() local 43 xPos -= NR_PART*(PART_LEN1); in FilterFarSSE2() 48 const __m128 xfBuf_re = _mm_loadu_ps(&aec->xfBuf[0][xPos + j]); in FilterFarSSE2() 49 const __m128 xfBuf_im = _mm_loadu_ps(&aec->xfBuf[1][xPos + j]); in FilterFarSSE2() 67 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j], in FilterFarSSE2() 69 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j], in FilterFarSSE2() 134 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1); in FilterAdaptationSSE2() local 138 xPos -= NR_PART * PART_LEN1; in FilterAdaptationSSE2() 144 const __m128 xfBuf_re = _mm_loadu_ps(&aec->xfBuf[0][xPos + j]); in FilterAdaptationSSE2() 145 const __m128 xfBuf_im = _mm_loadu_ps(&aec->xfBuf[1][xPos + j]); in FilterAdaptationSSE2() [all …]
|
D | aec_core.c | 248 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1; in FilterFar() local 252 xPos -= NR_PART*(PART_LEN1); in FilterFar() 256 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j], in FilterFar() 258 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j], in FilterFar() 314 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1); in FilterAdaptation() local 318 xPos -= NR_PART * PART_LEN1; in FilterAdaptation() 325 fft[2 * j] = MulRe(aec->xfBuf[0][xPos + j], in FilterAdaptation() 326 -aec->xfBuf[1][xPos + j], in FilterAdaptation() 328 fft[2 * j + 1] = MulIm(aec->xfBuf[0][xPos + j], in FilterAdaptation() 329 -aec->xfBuf[1][xPos + j], in FilterAdaptation() [all …]
|
/external/skia/gm/ |
D | optimizations.cpp | 338 int xPos = 0, yPos = 0; in onDraw() local 349 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos)); in onDraw() 351 xPos += pre->width(); in onDraw() 369 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos)); in onDraw() 371 xPos += post->width(); in onDraw() 374 if (xPos >= kWidth) { in onDraw() 376 xPos = 0; in onDraw()
|
D | pathopsinverse.cpp | 85 int xPos = 150; in onDraw() local 90 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos)); in onDraw() 95 xPos += 150; in onDraw()
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
D | TextureAtlas.java | 286 for (int xPos = 0; xPos < width; xPos++) { in drawImage() 287 int i = ((xPos + x) + (yPos + y) * atlasWidth) * 4; in drawImage() 289 int j = (xPos + yPos * width) * 4; in drawImage() 295 int j = (xPos + yPos * width) * 3; in drawImage() 301 int j = (xPos + yPos * width) * 3; in drawImage() 307 int j = (xPos + yPos * width) * 4; in drawImage() 313 int j = (xPos + yPos * width) * 1; in drawImage() 319 int j = (xPos + yPos * width) * 2; in drawImage() 331 int j = (xPos + yPos * width) * 4; in drawImage()
|
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/ |
D | TranslateUtil.java | 52 float xPos = text.getPaddingLeft() + (sizePerChar * x); in openLanguagePanel() local 55 TestTouchUtils.singleClickView(test.getInstrumentation(), text, (int) xPos, (int) yPos); in openLanguagePanel()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderFrameSet.cpp | 138 LayoutUnit xPos = 0; in paint() local 141 xPos += m_cols.m_sizes[c]; in paint() 143 …order(paintInfo, pixelSnappedIntRect(LayoutRect(adjustedPaintOffset.x() + xPos, adjustedPaintOffse… in paint() 144 xPos += borderThickness; in paint() 510 int xPos = 0; in positionFrames() local 513 child->setLocation(IntPoint(xPos, yPos)); in positionFrames() 524 xPos += width + borderThickness; in positionFrames()
|
D | RenderText.h | 85 …virtual float width(unsigned from, unsigned len, const Font&, float xPos, HashSet<const SimpleFont… 86 …virtual float width(unsigned from, unsigned len, float xPos, bool firstLine = false, HashSet<const… 179 …float widthFromCache(const Font&, int start, int len, float xPos, HashSet<const SimpleFontData*>* …
|
D | RenderDeprecatedFlexibleBox.cpp | 346 LayoutUnit xPos = borderLeft() + paddingLeft(); in layoutHorizontalBox() local 367 xPos = borderLeft() + paddingLeft(); in layoutHorizontalBox() 429 childLayer->setStaticInlinePosition(xPos); // FIXME: Not right for regions. in layoutHorizontalBox() 461 xPos += child->marginLeft(); in layoutHorizontalBox() 483 placeChild(child, LayoutPoint(xPos, childY)); in layoutHorizontalBox() 485 xPos += child->width() + child->marginRight(); in layoutHorizontalBox() 488 remainingSpace = borderLeft() + paddingLeft() + contentWidth() - xPos; in layoutHorizontalBox()
|
D | RenderText.cpp | 723 ALWAYS_INLINE float RenderText::widthFromCache(const Font& f, int start, int len, float xPos, HashS… in widthFromCache() argument 748 w += f.tabWidth(style()->tabSize(), xPos + w); in widthFromCache() 769 run.setXPos(xPos); in widthFromCache() 1448 float RenderText::width(unsigned from, unsigned len, float xPos, bool firstLine, HashSet<const Simp… in width() argument 1456 return width(from, len, style(firstLine)->font(), xPos, fallbackFonts, glyphOverflow); in width() 1459 float RenderText::width(unsigned from, unsigned len, const Font& f, float xPos, HashSet<const Simpl… in width() argument 1479 w = widthFromCache(f, from, len, xPos, fallbackFonts, glyphOverflow); in width() 1487 run.setXPos(xPos); in width()
|
D | RenderBlockLineLayout.cpp | 445 …TextRun(RootInlineBox* lineBox, BidiRun* run, RenderText* renderer, float xPos, const LineInfo& li… in setLogicalWidthForTextRun() argument 498 …measuredWidth += renderer->width(wordMeasurement.startOffset, wordLength, xPos, lineInfo.isFirstLi… in setLogicalWidthForTextRun() 517 …measuredWidth = renderer->width(run->m_start, run->m_stop - run->m_start, xPos, lineInfo.isFirstLi… in setLogicalWidthForTextRun()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/ |
D | ComplexTextController.cpp | 47 TextLayout(const TextRun& run, unsigned textLength, const Font& font, float xPos) in TextLayout() argument 49 , m_run(constructTextRun(run, textLength, font, xPos)) in TextLayout() 66 …TextRun constructTextRun(const TextRun& textRun, unsigned textLength, const Font& font, float xPos) in constructTextRun() argument 72 run.setXPos(xPos); in constructTextRun() 82 …ateLayoutForMacComplexText(const TextRun& run, unsigned textLength, float xPos, bool collapseWhite… in createLayoutForMacComplexText() argument 86 return adoptPtr(new TextLayout(run, textLength, *this, xPos)); in createLayoutForMacComplexText() 618 …advance.width = m_font.tabWidth(*fontData, m_run.tabSize(), m_run.xPos() + m_totalWidth + widthSin… in adjustGlyphsAndAdvances()
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/ |
D | popuplib.js | 108 var xPos = parentPos[0] + 112 return [xPos, yPos];
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/ |
D | popuplib.js | 108 var xPos = parentPos[0] + 112 return [xPos, yPos];
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | TextRun.h | 196 float xPos() const { return m_xpos; } in xPos() function 197 void setXPos(float xPos) { m_xpos = xPos; } in setXPos() argument
|
/external/skia/src/ports/ |
D | SkHarfBuzzFont.cpp | 83 hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos, in getOutlinePoint() argument 103 *xPos = SkScalarToHarfbuzzFixed(pt.fX); in getOutlinePoint()
|
/external/chromium_org/third_party/skia/src/ports/ |
D | SkHarfBuzzFont.cpp | 83 hb_uint32 index, HB_Fixed* xPos, HB_Fixed* yPos, in getOutlinePoint() argument 103 *xPos = SkScalarToHarfbuzzFixed(pt.fX); in getOutlinePoint()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
D | BreakingContextInlineHeaders.h | 56 void createLayout(RenderText* renderText, float xPos, bool collapseWhiteSpace) in createLayout() 59 …ext, *m_font, renderText, renderText->style()), renderText->textLength(), xPos, collapseWhiteSpace… in createLayout() 701 …th(RenderText* text, unsigned from, unsigned len, const Font& font, float xPos, bool isFixedPitch,… 705 return text->width(from, len, font, xPos, fallbackFonts, &glyphOverflow); 716 run.setXPos(xPos);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGParserUtilities.cpp | 276 float xPos = 0.0f; in genericParsePointsList() local 277 if (!parseNumber(ptr, end, xPos)) in genericParsePointsList() 292 pointsList.append(FloatPoint(xPos, yPos)); in genericParsePointsList()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | FrameSelection.cpp | 1060 LayoutUnit xPos = 0; in modify() local 1064 … xPos = lineDirectionPointForBlockDirectionNavigation(direction == DirectionUp ? START : END); in modify() 1069 xPos = lineDirectionPointForBlockDirectionNavigation(EXTENT); in modify() 1085 next = previousLinePosition(p, xPos); in modify() 1087 next = nextLinePosition(p, xPos); in modify()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | Font.h | 107 … createLayoutForMacComplexText(const TextRun&, unsigned textLength, float xPos, bool collapseWhite…
|
D | WidthIterator.cpp | 170 …width = m_font->tabWidth(*fontData, m_run.tabSize(), m_run.xPos() + m_runWidthSoFar + widthSinceLa… in advanceInternal()
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
D | browser_actions_controller.mm | 764 CGFloat xPos = NSWidth(frame) - kChevronWidth; 765 NSRect buttonFrame = NSMakeRect(xPos,
|
/external/chromium_org/chrome/browser/ui/cocoa/extensions/ |
D | browser_actions_controller.mm | 795 CGFloat xPos = NSWidth(frame) - kChevronWidth; 796 NSRect buttonFrame = NSMakeRect(xPos,
|