Searched defs:dx (Results 26 - 50 of 870) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DTypedConstant.java17 package com.android.dx.rop.cst;
19 import com.android.dx.rop.type.TypeBearer;
H A DZeroes.java17 package com.android.dx.rop.cst;
19 import com.android.dx.rop.type.Type;
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DRegisterMapper.java17 package com.android.dx.ssa;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.util.ToHuman;
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DNullRegisterAllocator.java17 package com.android.dx.ssa.back;
19 import com.android.dx.ssa.BasicRegisterMapper;
20 import com.android.dx.ssa.RegisterMapper;
21 import com.android.dx.ssa.SsaMethod;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayByteInput.java17 package com.android.dx.util;
H A DFileUtils.java17 package com.android.dx.util;
H A DUint.java17 package com.android.dx.util;
H A DUnsigned.java17 package com.android.dx.util;
/external/mesa3d/src/egl/wayland/wayland-egl/
H A Dwayland-egl.c10 int dx, int dy)
14 egl_window->dx = dx;
8 wl_egl_window_resize(struct wl_egl_window *egl_window, int width, int height, int dx, int dy) argument
/external/skia/gm/
H A Ddrrect.cpp41 const SkScalar dx = r.width() + 16; variable
62 canvas->translate(dx * j, dy * i);
/external/skia/include/effects/
H A DSkOffsetImageFilter.h18 static SkOffsetImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL, argument
20 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect));
26 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const CropRect* cropRect);
/external/skia/src/core/
H A DSkBitmapProcState_utils.h13 * 1. dx > 0
14 * 2. [fx, fx+dx, fx+2dx, fx+3dx, ... fx+(count-1)dx] are all <= maxX
17 * just SkFixed, so we will abort the decal_ call if dx is very small, since
24 SkFixed dx = SkFractionalIntToFixed(frDx); local
26 // if decal_ kept SkFractionalInt precision, this would just be dx <= 0
29 if (dx <= SK_Fixed1 / 256) {
37 (unsigned)SkFixedFloorToInt(fx + dx * (coun
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEDropShadowElement.h37 SVGAnimatedNumber* dx() { return m_dx.get(); } function in class:blink::FINAL
H A DSVGGlyphRefElement.h46 float dx() const { return m_dx; } function in class:blink::FINAL
H A DSVGTextPositioningElement.h38 SVGAnimatedLengthList* dx() { return m_dx.get(); } function in class:blink::SVGTextPositioningElement
/external/chromium_org/third_party/icu/source/samples/layout/
H A DSurface.cpp15 void GDISurface::drawGlyphs(RenderingFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const le_int32 *dx, argument
28 glyphs, count, (INT *) dx);
/external/chromium_org/third_party/mesa/src/src/egl/wayland/wayland-egl/
H A Dwayland-egl-priv.h22 int dx; member in struct:wl_egl_window
/external/chromium_org/third_party/skia/gm/
H A Dspritebitmap.cpp24 int dx, int dy, SkImageFilter* filter = NULL) {
28 SkRect clipR = SkRect::MakeXYWH(SkIntToScalar(dx),
40 canvas->drawSprite(bm, dx, dy, &paint);
51 canvas->drawBitmap(bm, SkIntToScalar(dx), SkIntToScalar(dy), &paint);
81 int dx = 10; local
87 draw_2_bitmaps(canvas, bm, false, dx, dy);
89 draw_2_bitmaps(canvas, bm, false, dx, dy, filter);
91 draw_2_bitmaps(canvas, bm, true, dx, dy);
93 draw_2_bitmaps(canvas, bm, true, dx, dy, filter);
23 draw_2_bitmaps(SkCanvas* canvas, const SkBitmap& bm, bool doClip, int dx, int dy, SkImageFilter* filter = NULL) argument
/external/chromium_org/third_party/skia/include/effects/
H A DSkDropShadowImageFilter.h14 static SkDropShadowImageFilter* Create(SkScalar dx, SkScalar dy, argument
19 return SkNEW_ARGS(SkDropShadowImageFilter, (dx, dy, sigmaX, sigmaY,
26 SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigmaX, SkScalar sigmaY, SkColor,
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, argument
23 tmp.scrollRect(NULL, dx, dy, inval);
31 if ((dx | dy) == 0 || width <= 0 || height <= 0) {
46 r.offset(dx, dy);
82 if (dx <= 0) {
83 src -= dx << shift;
84 width += dx;
86 dst += dx << shift;
87 width -= dx;
/external/chromium_org/ui/views/
H A Drect_based_targeting_utils.cc28 int dx = center_point.x() - point.x(); local
30 return (dx * dx) + (dy * dy);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DBlockAddresses.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.Insn;
22 import com.android.dx.rop.code.RopMethod;
23 import com.android.dx.rop.code.SourcePosition;
H A DCodeAddress.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
H A DFixedSizeInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
21 import com.android.dx.util.AnnotatedOutput;
H A DLocalEnd.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;

Completed in 378 milliseconds

1234567891011>>