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

1 2 3 4 5 6 78 9

  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 569 public void setTransform(AffineTransform Tx)
571 graphics.setTransform(Tx);
584 public void transform(AffineTransform Tx)
586 graphics.transform(Tx);
589 public void translate(double tx, double ty)
591 graphics.translate(tx, ty);
  /external/webkit/WebCore/inspector/front-end/
InjectedScript.js     [all...]
  /external/webkit/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 368 void GraphicsContext::translate(float tx, float ty)
373 gc->Translate(tx, ty);
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 254 final float tx = -(right + left) * r_width; local
260 m[mOffset +12] = tx;
  /external/kernel-headers/original/linux/
atmdev.h 34 __HANDLE_ITEM(tx); /* TX okay */ \
35 __HANDLE_ITEM(tx_err); /* TX errors */ \
131 #define __ATM_LM_MKLOC(n) ((n)) /* Local (i.e. loop TX to RX) */
132 #define __ATM_LM_MKRMT(n) ((n) << 8) /* Remote (i.e. loop RX to TX) */
172 #define ATM_SC_TX 2048 /* enable TX single-copy */
serial_core.h 203 __u32 tx; member in struct:uart_icount
219 unsigned int fifosize; /* tx fifo size */
  /external/skia/src/gl/
SkGL.h 268 SkShader::TileMode tx, SkShader::TileMode ty);
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.h 33 /* Source (TX) devices */
110 int tx; member in struct:android::msm_bt_endpoint
AudioHardware.cpp 172 LOGV("BT name %s (tx,rx)=(%d,%d)", mBTEndpoints[i].name, mBTEndpoints[i].tx, mBTEndpoints[i].rx);
368 return set_mic_mute(mMicMute); //always set current TX device
424 mBluetoothIdTx = mBTEndpoints[i].tx;
828 tx_acdb_id = mBTEndpoints[0].tx;
839 tx_acdb_id = mBTEndpoints[1].tx;
854 LOGV("doAudioRouteOrMute: rx acdb %d, tx acdb %d\n", rx_acdb_id, tx_acdb_id);
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 395 void CanvasRenderingContext2D::translate(float tx, float ty)
403 if (!isfinite(tx) | !isfinite(ty))
407 newTransform.translate(tx, ty);
414 c->translate(tx, ty);
415 m_path.transform(AffineTransform().translate(-tx, -ty));
    [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 433 int tx, ty; local
439 tx = ix - ty;
442 tmpx = a->dp + tx;
446 while (tx++ < a->used && ty-- >= 0) { ... }
448 iy = MIN(a->used-tx, ty+1);
536 int tx, ty, iy; local
541 tx = ix - ty;
544 tmpx = a->dp + tx;
548 while (tx++ < a->used && ty-- >= 0) { ... }
550 iy = MIN(a->used-tx, ty+1)
638 int tx, ty, iy; local
    [all...]
  /external/wpa_supplicant/
libtommath.c 2169 int tx, ty; local
    [all...]
wpa.c 963 wpa_hexdump(MSG_MSGDUMP, "WPA: TX EAPOL-Key", msg, msg_len);
1702 int tx, key_rsc_len, keyidx; member in struct:wpa_gtk_data
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 373 // Set the brannch id before you ask for a tx.
401 throw new TransactionUnavailableException("Cound not create tx");
512 // this tx gets his own dialog.
534 * create a server tx except for dialog creating transactions. After that, all
594 // tx does not exist so create the tx.
957 Transaction tx = (Transaction) errorObject; local
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java 1155 long tx = u.getTcpBytesSent(which); local
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 232 initialGlyphTransform.tx = 0;
  /development/samples/GlobalTime/src/com/android/globaltime/
GlobalTime.java 1172 float tx = mGLView.getTranslateX(); local
    [all...]
  /external/webkit/WebCore/editing/
SelectionController.cpp     [all...]
  /external/webkit/WebCore/rendering/
RenderText.cpp 215 void RenderText::absoluteRects(Vector<IntRect>& rects, int tx, int ty)
218 rects.append(IntRect(tx + box->x(), ty + box->y(), box->width(), box->height()));
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/hw_ctrl/
whalHwMboxConfig.c 160 * Tx queue config
183 * DESCRIPTION: configure Data path and TX complete parameters
    [all...]
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drmobj.h 335 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
422 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRMOBJ.H 335 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
422 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
  /external/webkit/WebCore/page/
Frame.cpp 653 void Frame::paintDragCaret(GraphicsContext* p, int tx, int ty, const IntRect& clipRect) const
659 dragCaretController->paintCaret(p, tx, ty, clipRect);
    [all...]
  /frameworks/base/opengl/libagl/
matrix.cpp 871 const GLfloat tx = -(right + left) * r_width; local
878 f[12] = tx;
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 990 return AffineTransform(t.a, t.b, t.c, t.d, t.tx, t.ty);
    [all...]

Completed in 1901 milliseconds

1 2 3 4 5 6 78 9