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

1 23 4 5 6 7 8 91011

  /external/skia/samplecode/
SampleVertices.cpp 158 const SkScalar tx = SkIntToScalar(texWidth); local
176 t[i+1].set(i*tx/n, ty);
179 t[n+1].set(tx, ty);
188 const SkScalar tx = SkIntToScalar(texWidth); local
206 t[i*2 + 0].set(tx * i / n, ty);
207 t[i*2 + 1].set(tx * i / n, 0);
212 t[2*n + 0].set(tx, ty);
213 t[2*n + 1].set(tx, 0);
  /external/webkit/LayoutTests/storage/
read-and-write-transactions-dont-run-together.js 23 transactionFunction.call(db, function(tx) {
37 tx.executeSql("SELECT * FROM Test;");
73 db1.transaction(function(tx) {
74 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo int);");
  /external/webkit/Source/WebCore/rendering/
RenderHTMLCanvas.cpp 57 void RenderHTMLCanvas::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
60 rect.move(tx, ty);
RenderTableRow.h 57 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
62 virtual void paint(PaintInfo&, int tx, int ty);
RenderTextControlSingleLine.h 65 virtual IntRect controlClipRect(int tx, int ty) const;
69 virtual void paint(PaintInfo&, int tx, int ty);
70 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
71 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
74 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderWidget.cpp 249 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty)
251 if (!shouldPaint(paintInfo, tx, ty))
254 tx += x();
258 paintBoxDecorations(paintInfo, tx, ty);
261 paintMask(paintInfo, tx, ty);
270 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true);
274 IntRect borderRect = IntRect(tx, ty, width(), height());
291 IntPoint paintLocation(tx + borderLeft() + paddingLeft(), ty + borderTop() + paddingTop());
295 // When painting widgets into compositing layers, tx and ty are relative to the enclosing compositing layer,
393 bool RenderWidget::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction action
    [all...]
RenderEmbeddedObject.cpp 138 void RenderEmbeddedObject::paint(PaintInfo& paintInfo, int tx, int ty)
141 RenderReplaced::paint(paintInfo, tx, ty);
145 RenderPart::paint(paintInfo, tx, ty);
148 void RenderEmbeddedObject::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
166 if (!getReplacementTextGeometry(tx, ty, contentRect, path, replacementTextRect, font, run, textWidth))
184 bool RenderEmbeddedObject::getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth)
187 contentRect.move(tx, ty);
RenderTextControlMultiLine.cpp 63 bool RenderTextControlMultiLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction)
65 if (!RenderTextControl::nodeAtPoint(request, result, x, y, tx, ty, hitTestAction))
69 hitInnerTextElement(result, x, y, tx, ty);
RenderListBox.cpp 251 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index)
253 return IntRect(tx + borderLeft() + paddingLeft(),
258 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty)
268 paintItemForeground(paintInfo, tx, ty, index);
274 RenderBlock::paintObject(paintInfo, tx, ty);
281 paintScrollbar(paintInfo, tx, ty);
285 paintScrollbar(paintInfo, tx, ty);
291 paintItemBackground(paintInfo, tx, ty, index);
301 void RenderListBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty)
304 return RenderBlock::addFocusRingRects(rects, tx, ty)
    [all...]
RenderEmbeddedObject.h 71 bool getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth);
RenderListItem.h 60 virtual void paint(PaintInfo&, int tx, int ty);
RenderTableCell.h 97 virtual void paint(PaintInfo&, int tx, int ty);
99 void paintBackgroundsBehindCell(PaintInfo&, int tx, int ty, RenderObject* backgroundObject);
145 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
146 virtual void paintMask(PaintInfo&, int tx, int ty);
RenderTextControlMultiLine.h 41 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderVideo.h 69 virtual void paintReplaced(PaintInfo&, int tx, int ty);
RootInlineBox.h 86 void paintEllipsisBox(PaintInfo&, int tx, int ty, int lineTop, int lineBottom) const;
95 void paintCustomHighlight(PaintInfo&, int tx, int ty, const AtomicString& highlightType);
98 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
99 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, int lineTop, int lineBottom);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGText.h 55 virtual void paint(PaintInfo&, int tx, int ty);
56 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderSVGForeignObject.h 53 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderSVGModelObject.h 58 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFraction.cpp 134 void RenderMathMLFraction::paint(PaintInfo& info, int tx, int ty)
136 RenderMathMLBlock::paint(info, tx, ty);
156 tx += x();
165 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty));
  /frameworks/base/graphics/java/android/renderscript/
AllocationAdapter.java 104 int tx = mAdaptedAllocation.mType.getX(); local
109 if ((tx==1) && (ty == 1) && (tz == 1)) {
113 if (tx > 1) tx >>= 1;
118 mCurrentDimX = tx;
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 168 SIPServerTransaction tx = (SIPServerTransaction) sipStack local
171 if (tx != null && !tx.passToListener()) {
177 // to the listener (tx == INVITE ST, terminated upon sending
181 && tx.isInviteTransaction() &&
182 ( tx.getLastResponse().getStatusCode()/100 == 2 ||
193 "transaction already exists! " + tx);
264 // Set the tx state to terminated so it is removed from the
287 SIPTransaction tx = eventWrapper.transaction; local
288 if (tx != null)
    [all...]
  /bionic/libm/src/
e_rem_pio2f.c 65 double tx[1],ty[2]; local
92 tx[0] = z;
93 n = __kernel_rem_pio2(tx,ty,e0,1,1,two_over_pi);
s_fma.c 57 double c, cc, hx, hy, p, q, tx, ty; local
153 tx = xs - hx;
161 q = hx * ty + tx * hy;
163 cc = p - c + q + tx * ty;
s_fmal.c 52 long double c, cc, hx, hy, p, q, tx, ty; local
148 tx = xs - hx;
156 q = hx * ty + tx * hy;
158 cc = p - c + q + tx * ty;
  /external/webkit/Source/WebCore/platform/graphics/cg/
TransformationMatrixCG.cpp 43 setE(t.tx);

Completed in 679 milliseconds

1 23 4 5 6 7 8 91011