HomeSort by relevance Sort by last modified time
    Searched refs:tx (Results 176 - 200 of 270) sorted by null

1 2 3 4 5 6 78 91011

  /external/webkit/Source/WebKit/android/plugins/
ANPCanvasInterface.cpp 47 static void anp_translate(ANPCanvas* canvas, float tx, float ty) {
48 canvas->skcanvas->translate(SkFloatToScalar(tx), SkFloatToScalar(ty));
android_npapi.h 292 void (*preTranslate)(ANPMatrix*, float tx, float ty);
293 void (*postTranslate)(ANPMatrix*, float tx, float ty);
620 void (*translate)(ANPCanvas*, float tx, float ty);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 291 int tx = (SX + ofx - p.x) / 2; local
293 gc.drawText(s, tx, ty, true /* isTransparent */);
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 173 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos)
204 IntPoint topPoint = isHorizontal() ? IntPoint(tx + m_x + r.x(), ty + selTop) : IntPoint(tx + selTop, ty + m_y + r.x());
346 bool InlineTextBox::nodeAtPoint(const HitTestRequest&, HitTestResult& result, int x, int y, int tx, int ty, int /* lineTop */, int /*lineBottom*/)
352 boxOrigin.move(tx, ty);
355 renderer()->updateHitTestResult(result, flipForWritingMode(IntPoint(x - tx, y - ty)));
467 void InlineTextBox::paint(PaintInfo& paintInfo, int tx, int ty, int /*lineTop*/, int /*lineBottom*/)
477 int logicalStart = logicalLeftSide + (isHorizontal() ? tx : ty);
508 tx += isLeftToRightDirection() ? widthOfHiddenText : -widthOfHiddenText;
521 boxOrigin.move(tx, ty);
    [all...]
RenderObject.cpp     [all...]
RenderFrameSet.cpp 124 void RenderFrameSet::paint(PaintInfo& paintInfo, int tx, int ty)
134 tx += x();
145 child->paint(paintInfo, tx, ty);
148 paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height()));
157 paintRowBorder(paintInfo, IntRect(tx, ty + yPos, width(), borderThickness));
164 int x, int y, int tx, int ty, HitTestAction action)
169 bool inside = RenderBox::nodeAtPoint(request, result, x, y, tx, ty, action)
RenderLayerBacking.cpp 1104 int tx = x - m_owningLayer->renderBoxX(); local
    [all...]
RenderLayer.h 294 void paintOverflowControls(GraphicsContext*, int tx, int ty, const IntRect& damageRect, bool paintingOverlayControls = false);
295 void paintScrollCorner(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
296 void paintResizer(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
631 void positionOverflowControls(int tx, int ty);
    [all...]
RenderText.h 59 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
RenderLayer.cpp 2642 int tx = x - renderBoxX(); local
    [all...]
  /external/qemu/android/skin/
trackball.c 278 double tx = xx*(2./DOT_GRID); local
281 double x0 = origin[0] + axis1[0]*tx + axis2[0]*ty;
282 double y0 = origin[1] + axis1[1]*tx + axis2[1]*ty;
283 double z0 = origin[2] + axis1[2]*tx + axis2[2]*ty;
  /external/sonivox/jet_tools/JetCreator/
img_Open.py 60 \xac[\x7f\xbb\xfb\xc3\xbf\x8e\tx\xfc\xf8qx\xe2\xc4\x89\xdcW\xf5)B{\x8ecG\x8a\
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-raytrace.js 109 var tx = -self[3];
117 self[3] = tx * self[0] + ty * self[1] + tz * self[2];
118 self[7] = tx * self[4] + ty * self[5] + tz * self[6];
119 self[11] = tx * self[8] + ty * self[9] + tz * self[10];
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-raytrace.js 109 var tx = -self[3];
117 self[3] = tx * self[0] + ty * self[1] + tz * self[2];
118 self[7] = tx * self[4] + ty * self[5] + tz * self[6];
119 self[11] = tx * self[8] + ty * self[9] + tz * self[10];
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.h 105 AffineTransform& translate(double tx, double ty);
  /frameworks/base/core/java/android/widget/
OverScroller.java 609 float x, tx, coef; typedefs
613 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
614 if (Math.abs(tx - alpha) < 1E-5) break;
615 if (tx > alpha) x_max = x;
    [all...]
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 362 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left", local
378 inanim.playTogether(tx, ty, tr, tb, sx, title);
559 int tx = web.getScrollX(); local
561 c.translate(-tx, -ty - tbar.getEmbeddedHeight());
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextRenderer.java 235 float tx = sx - width * 0.5f; local
237 mLabels.draw(gl, tx, ty, labelId);
  /external/webkit/LayoutTests/storage/
hash-change-with-xhr.js 54 function errorHandler(tx, error)
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageAndroid.cpp 316 float tx = phase.x() + srcRect.x() * patternTransform.a(); local
318 matrix.postTranslate(SkFloatToScalar(tx), SkFloatToScalar(ty));
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGRoot.cpp 318 bool RenderSVGRoot::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction)
321 IntSize containerToParentOffset(tx, ty);
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
BandwidthTest.java 260 int tx = BandwidthTestUtil.parseIntValueFromFile(snd_stat); local
263 NetworkStats.TAG_NONE, rx, 0, tx, 0, 0);
337 results.putLong(label + "tx", entry.txBytes);
  /frameworks/base/core/java/android/webkit/
ZoomManager.java 483 int tx = Math.round(scale * (mInitialScrollX + mZoomCenterX) - mZoomCenterX); local
484 tx = -WebView.pinLoc(tx, mWebView.getViewWidth(), Math.round(mWebView.getContentWidth()
495 mWebView.updateScrollCoordinates(mWebView.getScrollX() - tx, mWebView.getScrollY() - ty);
498 canvas.translate(tx, ty);
511 canvas.translate(tx, ty);
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 451 SkScalar tx, sx = SkScalarDiv(dst.width(), src.width()); local
464 tx = dst.fLeft - SkScalarMul(src.fLeft, sx);
480 tx += diff;
488 fMat[kMTransX] = tx;
826 Sk64 tx, ty; local
840 set_muladdmul(&tx, fMat[kMSkewX], fMat[kMTransY], -fMat[kMScaleY], fMat[kMTransX]);
842 // check tx,ty for overflow
843 clzNumer = SkCLZ(SkAbs32(tx.fHi) | SkAbs32(ty.fHi));
853 inv->fMat[kMTransX] = SkMulShift(tx.getShiftRight(33 - clzNumer), scale, sk64shift);
897 SkScalar tx = m.fMat[kMTransX] local
931 SkScalar tx = m.fMat[kMTransX]; local
971 SkScalar tx = m.fMat[kMTransX]; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa.c 124 wpa_hexdump(MSG_MSGDUMP, "WPA: TX EAPOL-Key", msg, msg_len);
436 /* Supplicant: swap tx/rx Mic keys */
625 int tx, key_rsc_len, keyidx; member in struct:wpa_gtk_data
640 "(keyidx=%d tx=%d len=%d).", gd->keyidx, gd->tx,
644 /* Swap Tx/Rx keys for Michael MIC */
661 gd->keyidx, gd->tx, key_rsc, gd->key_rsc_len,
674 int tx)
676 if (tx && sm->pairwise_cipher != WPA_CIPHER_NONE) {
677 /* Ignore Tx bit for GTK if a pairwise key is used. One A
    [all...]

Completed in 607 milliseconds

1 2 3 4 5 6 78 91011