HomeSort by relevance Sort by last modified time
    Searched refs:ty (Results 26 - 50 of 344) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/
FlingState.cpp 80 float ty = fDirection.fY * dist; local
83 ty = sk_float_round2int(ty);
85 matrix->setTranslate(tx, ty);
86 // printf("---- evaluate (%g %g)\n", tx, ty);
  /external/webkit/Source/WebCore/rendering/
RenderHTMLCanvas.h 46 virtual void paintReplaced(PaintInfo&, int tx, int ty);
RenderScrollbarPart.h 48 void paintIntoRect(GraphicsContext*, int tx, int ty, const IntRect&);
RenderTextControl.h 66 void hitInnerTextElement(HitTestResult&, int x, int y, int tx, int ty);
95 virtual void paintObject(PaintInfo&, int tx, int ty);
97 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
113 void paintPlaceholder(PaintInfo&, int tx, int ty);
RenderDataGrid.h 49 virtual void paintObject(PaintInfo&, int tx, int ty);
64 void paintColumnHeaders(PaintInfo&, int tx, int ty);
65 void paintColumnHeader(DataGridColumn*, PaintInfo&, int tx, int ty);
RenderImage.h 62 virtual void paint(PaintInfo&, int tx, int ty);
79 virtual void paintReplaced(PaintInfo&, int tx, int ty);
84 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderLineBoxList.cpp 149 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, int logicalTop, int logicalBottom, const IntRect& rect, int tx, int ty) const
162 physicalStart += ty;
174 bool RenderLineBoxList::anyLineIntersectsRect(RenderBoxModelObject* renderer, const IntRect& rect, int tx, int ty, bool usePrintRect, int outlineSize) const
191 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, tx, ty);
194 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, int tx, int ty) const
200 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, tx, ty);
203 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, int tx, int ty) const
222 if (!anyLineIntersectsRect(renderer, paintInfo.rect, tx, ty, usePrintRect, outlineSize))
246 if (ty + bottomForPaginationCheck > v->printRect().maxY()) {
250 if (ty + bottomForPaginationCheck > v->printRect().maxY())
    [all...]
RenderScrollbarPart.cpp 162 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const IntRect& rect)
165 setLocation(rect.x() - tx, rect.y() - ty);
174 paint(paintInfo, tx, ty);
176 paint(paintInfo, tx, ty);
178 paint(paintInfo, tx, ty);
180 paint(paintInfo, tx, ty);
182 paint(paintInfo, tx, ty);
RenderInline.h 51 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
78 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
79 void paintOutline(GraphicsContext*, int tx, int ty);
118 virtual void paint(PaintInfo&, int tx, int ty);
120 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
165 void paintOutlineForLine(GraphicsContext*, int tx, int ty, const IntRect& prevLine, const IntRect& thisLine, const IntRect& nextLine);
RenderDetailsMarker.h 41 virtual void paint(PaintInfo&, int tx, int ty);
RenderTableSection.h 138 virtual void paint(PaintInfo&, int tx, int ty);
139 virtual void paintCell(RenderTableCell*, PaintInfo&, int tx, int ty);
140 virtual void paintObject(PaintInfo&, int tx, int ty);
144 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderHTMLCanvas.cpp 64 void RenderHTMLCanvas::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
67 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);
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineFlowBox.h 44 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
SVGRootInlineBox.h 48 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
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);
  /external/valgrind/main/mpi/
libmpiwrap.c 259 static void showTy ( FILE* f, MPI_Datatype ty )
261 if (ty == MPI_DATATYPE_NULL) fprintf(f,"DATATYPE_NULL");
262 else if (ty == MPI_BYTE) fprintf(f,"BYTE");
263 else if (ty == MPI_PACKED) fprintf(f,"PACKED");
264 else if (ty == MPI_CHAR) fprintf(f,"CHAR");
265 else if (ty == MPI_SHORT) fprintf(f,"SHORT");
266 else if (ty == MPI_INT) fprintf(f,"INT");
267 else if (ty == MPI_LONG) fprintf(f,"LONG");
268 else if (ty == MPI_FLOAT) fprintf(f,"FLOAT");
269 else if (ty == MPI_DOUBLE) fprintf(f,"DOUBLE")
    [all...]
  /external/llvm/include/llvm-c/
ExecutionEngine.h 44 LLVMGenericValueRef LLVMCreateGenericValueOfInt(LLVMTypeRef Ty,
50 LLVMGenericValueRef LLVMCreateGenericValueOfFloat(LLVMTypeRef Ty, double N);
146 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
147 inline ty *unwrap(ref P) { \
148 return reinterpret_cast<ty*>(P); \
151 inline ref wrap(const ty *P) { \
152 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLSquareRoot.cpp 69 void RenderMathMLSquareRoot::paint(PaintInfo& info, int tx, int ty)
71 RenderMathMLBlock::paint(info, tx, ty);
77 ty += y();
112 FloatPoint topStart(tx + frontWidth - topStartShift, ty);
113 FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad);
114 FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * maxHeight);
127 root.moveTo(FloatPoint(topStart.x() + width , ty));
RenderMathMLRoot.cpp 97 void RenderMathMLRoot::paint(PaintInfo& info, int tx, int ty)
99 RenderMathMLBlock::paint(info , tx , ty);
108 ty += y();
144 ty += style()->paddingTop().value() - rootPad;
146 FloatPoint topStart(start - topStartShift, ty);
147 FloatPoint bottomLeft(start - gRadicalBottomPointXPos * frontWidth , ty + maxHeight + gRadicalBasePad);
148 FloatPoint topLeft(start - gRadicalTopLeftPointXPos * frontWidth , ty + gRadicalTopLeftPointYPos * maxHeight);
161 root.moveTo(FloatPoint(topStart.x() + width, ty));
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2.c 58 double tx[3],ty[2]; local
183 n = __kernel_rem_pio2(tx,ty,e0,nx,1);
184 if(hx<0) {y[0] = -ty[0]; y[1] = -ty[1]; return -n;}
185 y[0] = ty[0]; y[1] = ty[1]; return n;
  /external/clang/utils/
ClangDataFormat.py 120 ty = value.GetType()
121 if ty.IsPointerType() or ty.IsReferenceType():
122 return ty.GetPointeeType().GetName()
123 return ty.GetName()
130 ty = value.GetType()
131 if not (ty.IsPointerType() or
132 ty.IsReferenceType() or
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 38 Type *Ty;
41 explicit MachineConstantPoolValue(Type *ty) : Ty(ty) {}
46 Type *getType() const { return Ty; }
  /external/llvm/include/llvm/IR/
Constant.h 47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
48 : User(ty, vty, Ops, NumOps) {}
150 static Constant *getNullValue(Type* Ty);
155 static Constant *getAllOnesValue(Type* Ty);
159 static Constant *getIntegerValue(Type* Ty, const APInt &V);

Completed in 2455 milliseconds

12 3 4 5 6 7 8 91011>>