/development/tools/emulator/skins/WQVGA432/ |
D | layout | 18 y 0 30 y 142 35 y 142 40 y 142 45 y 53 50 y 106 55 y 53 60 y 53 65 y 81 70 y 71 [all …]
|
/development/tools/emulator/skins/WVGA854/ |
D | layout | 18 y 0 30 y 142 35 y 142 40 y 142 45 y 53 50 y 106 55 y 53 60 y 53 65 y 81 70 y 71 [all …]
|
/development/tools/emulator/skins/WVGA800/ |
D | layout | 18 y 0 30 y 142 35 y 142 40 y 142 45 y 53 50 y 106 55 y 53 60 y 53 65 y 81 70 y 71 [all …]
|
/development/tools/emulator/skins/WQVGA400/ |
D | layout | 18 y 0 30 y 142 35 y 142 40 y 142 45 y 53 50 y 106 55 y 53 60 y 53 65 y 81 70 y 71 [all …]
|
/development/tools/emulator/skins/QVGA/ |
D | layout | 18 y 0 30 y 142 35 y 142 40 y 142 45 y 53 50 y 106 55 y 53 60 y 53 65 y 81 70 y 71 [all …]
|
/development/tools/emulator/skins/HVGA/ |
D | layout | 18 y 0 30 y 142 35 y 142 40 y 142 45 y 53 50 y 106 55 y 53 60 y 53 65 y 81 70 y 71 [all …]
|
/development/ndk/platforms/android-3/arch-arm/include/machine/ |
D | asm.h | 53 # define __CONCAT(x,y) x ## y argument 56 # define __CONCAT(x,y) x/**/y argument 93 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE argument 94 #define ENTRY_NP(y) _ENTRY(_C_LABEL(y)) argument 95 #define END(y) _END(_C_LABEL(y)) argument 96 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument 97 #define ASENTRY_NP(y) _ENTRY(_ASM_LABEL(y)) argument 98 #define ASEND(y) _END(_ASM_LABEL(y)) argument 101 #define ENTRY_PRIVATE(y) ENTRY(y); .hidden _C_LABEL(y) argument 103 #define ENTRY_PRIVATE(y) ENTRY(y) argument [all …]
|
/development/ndk/platforms/android-9/arch-x86/include/machine/ |
D | asm.h | 75 #define CVAROFF(x, y) _C_LABEL(x) + y argument 78 # define __CONCAT(x,y) x ## y argument 81 # define __CONCAT(x,y) x/**/y argument 119 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE argument 120 #define NENTRY(y) _ENTRY(_C_LABEL(y)) argument 121 #define END(y) _END(_C_LABEL(y)) argument 122 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument 124 #define ENTRY_PRIVATE(y) ENTRY(y); .hidden _C_LABEL(y) argument
|
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/ |
D | PathPoint.java | 60 private PathPoint(int operation, float x, float y) { in PathPoint() argument 63 mY = y; in PathPoint() 69 private PathPoint(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in PathPoint() argument 75 mY = y; in PathPoint() 82 public static PathPoint lineTo(float x, float y) { in lineTo() argument 83 return new PathPoint(LINE, x, y); in lineTo() 90 public static PathPoint curveTo(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in curveTo() argument 91 return new PathPoint(c0X, c0Y, c1X, c1Y, x, y); in curveTo() 98 public static PathPoint moveTo(float x, float y) { in moveTo() argument 99 return new PathPoint(MOVE, x, y); in moveTo()
|
D | AnimatorPath.java | 40 public void moveTo(float x, float y) { in moveTo() argument 41 mPoints.add(PathPoint.moveTo(x, y)); in moveTo() 48 public void lineTo(float x, float y) { in lineTo() argument 49 mPoints.add(PathPoint.lineTo(x, y)); in lineTo() 57 public void curveTo(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in curveTo() argument 58 mPoints.add(PathPoint.curveTo(c0X, c0Y, c1X, c1Y, x, y)); in curveTo()
|
/development/ndk/platforms/android-L/include/sys/ |
D | param.h | 39 #define howmany(x, y) (((x)+((y)-1))/(y)) argument 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) argument
|
D | cdefs.h | 70 #define __GNUC_PREREQ__(x, y) \ argument 71 ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \ 74 #define __GNUC_PREREQ__(x, y) 0 argument 82 #define __static_cast(x,y) static_cast<x>(y) argument 86 #define __static_cast(x,y) (x)y argument 98 #define ___CONCAT(x,y) __CONCAT(x,y) argument 102 #define __CONCAT(x,y) x ## y argument 118 #define __CONCAT(x,y) x/**/y argument 234 #define __printflike(x, y) __attribute__((__format__(printf, x, y))) __nonnull((x)) argument 235 #define __scanflike(x, y) __attribute__((__format__(scanf, x, y))) __nonnull((x)) argument
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | GLVertex.java | 24 public float y; field in GLVertex 31 this.y = 0; in GLVertex() 36 GLVertex(float x, float y, float z, int index) { in GLVertex() argument 38 this.y = y; in GLVertex() 47 return (x == v.x && y == v.y && z == v.z); in equals() 58 vertexBuffer.put(toFixed(y)); in put() 79 vertexBuffer.put(toFixed(y)); in update() 85 vertexBuffer.put(toFixed(temp.y)); in update()
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
D | demo.c | 101 float x, y, z; member 172 dest->y = v1->y - v2->y; in vector3Sub() 181 point->y = (float)(sin(t) * cos(p) / r1 / r2); in superShapeMap() 267 n.x = v1.y * v2.z - v1.z * v2.y; in createSuperShape() 268 n.y = v1.z * v2.x - v1.x * v2.z; in createSuperShape() 269 n.z = v1.x * v2.y - v1.y * v2.x; in createSuperShape() 291 result->normalArray[i + 1] = FIXED(n.y); in createSuperShape() 310 result->vertexArray[currentVertex * 3 + 1] = FIXED(pa.y); in createSuperShape() 314 result->vertexArray[currentVertex * 3 + 1] = FIXED(pb.y); in createSuperShape() 318 result->vertexArray[currentVertex * 3 + 1] = FIXED(pd.y); in createSuperShape() [all …]
|
/development/tools/emulator/skins/WXGA720/ |
D | layout | 18 y 0 35 y 0 41 y 0 47 y 27 62 y 0 68 y 0 74 y 749
|
/development/tools/emulator/skins/WXGA800-7in/ |
D | layout | 18 y 0 36 y 0 42 y 0 48 y 27 64 y 0 70 y 0 76 y 829
|
/development/tools/emulator/skins/WSVGA/ |
D | layout | 18 y 0 35 y 0 41 y 0 47 y 29 62 y 0 68 y 0 74 y 1050
|
/development/tools/emulator/skins/WXGA800/ |
D | layout | 18 y 0 35 y 0 41 y 0 47 y 29 62 y 0 68 y 0 74 y 1307
|
/development/perftests/panorama/feature_mos/src/mosaic/ |
D | trsMatrix.h | 37 inline double ProjZ(double trs[3][3], double x, double y, double f) in ProjZ() argument 39 return ((trs)[2][0]*(x) + (trs)[2][1]*(y) + (trs)[2][2]*(f)); in ProjZ() 42 inline double ProjX(double trs[3][3], double x, double y, double z, double f) in ProjX() argument 44 return (((trs)[0][0]*(x) + (trs)[0][1]*(y) + (trs)[0][2]*(f)) / (z)); in ProjX() 47 inline double ProjY(double trs[3][3], double x, double y, double z, double f) in ProjY() argument 49 return (((trs)[1][0]*(x) + (trs)[1][1]*(y) + (trs)[1][2]*(f)) / (z)); in ProjY()
|
/development/samples/Snake/src/com/example/android/snake/ |
D | TileView.java | 87 for (int y = 0; y < mYTileCount; y++) { in clearTiles() 88 setTile(0, x, y); in clearTiles() 112 for (int y = 0; y < mYTileCount; y += 1) { in onDraw() 113 if (mTileGrid[x][y] > 0) { in onDraw() 114 canvas.drawBitmap(mTileArray[mTileGrid[x][y]], mXOffset + x * mTileSize, in onDraw() 115 mYOffset + y * mTileSize, mPaint); in onDraw() 141 public void setTile(int tileindex, int x, int y) { in setTile() argument 142 mTileGrid[x][y] = tileindex; in setTile()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | BitmapMesh.java | 47 private static void setXY(float[] array, int index, float x, float y) { in setXY() argument 49 array[index*2 + 1] = y; in setXY() 63 for (int y = 0; y <= HEIGHT; y++) { in SampleView() 64 float fy = h * y / HEIGHT; in SampleView() 91 float y = src[i+1]; in warp() local 93 float dy = cy - y; in warp() 106 dst[i+1] = y + dy * pull; in warp() 119 int y = (int)pt[1]; in onTouchEvent() local 120 if (mLastWarpX != x || mLastWarpY != y) { in onTouchEvent() 122 mLastWarpY = y; in onTouchEvent()
|
D | AlphaBitmap.java | 44 float y = bm.getHeight(); in drawIntoBitmap() local 50 c.drawCircle(x/2, y/2, x/2, p); in drawIntoBitmap() 57 c.drawText("Alpha", x/2, (y-fm.ascent)/2, p); in drawIntoBitmap() 79 float y = 10; in onDraw() local 82 canvas.drawBitmap(mBitmap, 10, y, p); in onDraw() 83 y += mBitmap.getHeight() + 10; in onDraw() 84 canvas.drawBitmap(mBitmap2, 10, y, p); in onDraw() 85 y += mBitmap2.getHeight() + 10; in onDraw() 87 canvas.drawBitmap(mBitmap3, 10, y, p); in onDraw()
|
/development/ndk/platforms/android-3/include/sys/ |
D | cdefs.h | 83 #define __GNUC_PREREQ__(x, y) \ argument 84 ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \ 87 #define __GNUC_PREREQ__(x, y) 0 argument 95 #define __static_cast(x,y) static_cast<x>(y) argument 99 #define __static_cast(x,y) (x)y argument 111 #define ___CONCAT(x,y) __CONCAT(x,y) argument 115 #define __CONCAT(x,y) x ## y argument 131 #define __CONCAT(x,y) x/**/y argument
|
/development/ndk/platforms/android-9/include/sys/ |
D | cdefs.h | 52 #define __GNUC_PREREQ__(x, y) \ argument 53 ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \ 56 #define __GNUC_PREREQ__(x, y) 0 argument 64 #define __static_cast(x,y) static_cast<x>(y) argument 68 #define __static_cast(x,y) (x)y argument 80 #define ___CONCAT(x,y) __CONCAT(x,y) argument 84 #define __CONCAT(x,y) x ## y argument 100 #define __CONCAT(x,y) x/**/y argument
|
/development/ndk/samples/two-libs/src/com/example/twolibs/ |
D | TwoLibs.java | 32 int y = 42; in onCreate() local 39 int z = add(x, y); in onCreate() 41 tv.setText( "The sum of " + x + " and " + y + " is " + z ); in onCreate() 45 public native int add(int x, int y); in add() argument
|