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

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/rendering/
InlineBox.h 133 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
134 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, int lineTop, int lineBottom);
RenderVideo.cpp 187 void RenderVideo::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
201 rect.move(tx, ty);
InlineTextBox.cpp 174 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos)
205 IntPoint topPoint = isHorizontal() ? IntPoint(tx + m_x + r.x(), ty + selTop) : IntPoint(tx + selTop, ty + m_y + r.x());
347 bool InlineTextBox::nodeAtPoint(const HitTestRequest&, HitTestResult& result, int x, int y, int tx, int ty, int /* lineTop */, int /*lineBottom*/)
353 boxOrigin.move(tx, ty);
356 renderer()->updateHitTestResult(result, flipForWritingMode(IntPoint(x - tx, y - ty)));
468 void InlineTextBox::paint(PaintInfo& paintInfo, int tx, int ty, int /*lineTop*/, int /*lineBottom*/)
478 int logicalStart = logicalLeftSide + (isHorizontal() ? tx : ty);
511 ty += isLeftToRightDirection() ? widthOfHiddenText : -widthOfHiddenText;
519 ty -= styleToUse->isHorizontalWritingMode() ? 0 : logicalHeight()
    [all...]
RenderObject.cpp     [all...]
RenderFrameSet.cpp 124 void RenderFrameSet::paint(PaintInfo& paintInfo, int tx, int ty)
135 ty += y();
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 1105 int ty = y - m_owningLayer->renderBoxY(); local
    [all...]
RenderLayer.h 272 void paintOverflowControls(GraphicsContext*, int tx, int ty, const IntRect& damageRect, bool paintingOverlayControls = false);
273 void paintScrollCorner(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
274 void paintResizer(GraphicsContext*, int tx, int ty, const IntRect& damageRect);
615 void positionOverflowControls(int tx, int ty);
    [all...]
  /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...]
  /frameworks/base/core/java/android/webkit/
ZoomManager.java 495 int ty = Math.round(scale local
498 ty = -(ty <= titleHeight ? Math.max(ty, 0) : WebViewClassic.pinLoc(ty
503 mWebView.updateScrollCoordinates(mWebView.getScrollX() - tx, mWebView.getScrollY() - ty);
506 canvas.translate(tx, ty);
519 canvas.translate(tx, ty);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 436 for (int ty = r.top, i = 0; ty < r.bottom; ty += size, i++) {
440 drawTile(canvas, tx, ty, level, x, y, length);
591 int tx, int ty, int level, float x, float y, float length) {
597 Tile tile = getTile(tx, ty, level);
618 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX,
619 (ty + size) * scaleY);
  /external/skia/src/core/
SkBitmapProcState.cpp 142 SkScalar ty = -SkScalarRoundToScalar(forward.getTranslateY());
143 fUnitInvMatrix.setTranslate(tx, ty);
596 SkShader::TileMode ty = (SkShader::TileMode)fTileModeY; local
598 if (SkShader::kClamp_TileMode == tx && SkShader::kClamp_TileMode == ty) {
604 if (SkShader::kRepeat_TileMode == tx && SkShader::kRepeat_TileMode == ty) {
  /external/valgrind/main/VEX/priv/
host_s390_isel.c 610 IRType ty = typeOfIRExpr(env->type_env, expr); local
612 vassert(ty == Ity_I128);
786 IRType ty = typeOfIRExpr(env->type_env, expr); local
790 vassert(ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 || ty == Ity_I64);
792 size = sizeofIRType(ty); /* size of the result after evaluating EXPR */
1451 IRType ty = typeOfIRExpr(env->type_env, expr); local
1496 IRType ty = typeOfIRExpr(env->type_env, expr); local
1726 IRType ty = typeOfIRExpr(env->type_env, expr); local
    [all...]
  /external/llvm/include/llvm-c/
Core.h 628 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
637 LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty);
644 LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty);
822 const char *LLVMGetStructName(LLVMTypeRef Ty);
886 LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty);
    [all...]
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 379 QualType ty = props[0].PropD->getType().getUnqualifiedType(); local
383 assert(ty == I->PropD->getType().getUnqualifiedType());
386 return ty;
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 157 llvm::FunctionType *ty,
166 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false); local
168 CreateGlobalInitOrDestructFunction(CGM, ty,
  /external/llvm/bindings/ocaml/llvm/
llvm.ml     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/test/Analysis/
taint-tester.c 58 int ty = xy.y; // FIXME: This should be tainted as well. local
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 60 Type *Ty;
63 unsigned SCEVTy, const SCEV *op, Type *ty);
67 Type *getType() const { return Ty; }
85 const SCEV *op, Type *ty);
102 const SCEV *op, Type *ty);
119 const SCEV *op, Type *ty);
  /external/llvm/lib/IR/
Instruction.cpp 24 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
26 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
38 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
40 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
  /external/qemu/android/skin/
trackball.c 280 double ty = yy*(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/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-raytrace.js 110 var ty = -self[7];
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 110 var ty = -self[7];
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);

Completed in 1621 milliseconds

1 2 3 4 5 6 78 91011>>