Home
last modified time | relevance | path

Searched refs:y (Results 1 – 25 of 187) sorted by relevance

12345678

/development/tools/emulator/skins/WVGA800/
Dlayout18 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/WQVGA432/
Dlayout18 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/
Dlayout18 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/
Dlayout18 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/
Dlayout18 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/
Dlayout18 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-9/arch-arm/include/machine/
Dasm.h53 # 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/
Dasm.h75 #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/
DPathPoint.java60 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()
DAnimatorPath.java40 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-21/include/sys/
Dparam.h39 #define howmany(x, y) (((x)+((y)-1))/(y)) argument
41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) argument
/development/ndk/platforms/android-9/include/
Dmath.h117 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
118 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
119 #define isless(x, y) __builtin_isless((x), (y)) argument
120 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
121 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
122 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
124 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
125 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
126 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
127 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-13/include/
Dmath.h117 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
118 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
119 #define isless(x, y) __builtin_isless((x), (y)) argument
120 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
121 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
122 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
124 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
125 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
126 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
127 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-18/include/
Dmath.h117 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
118 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
119 #define isless(x, y) __builtin_isless((x), (y)) argument
120 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
121 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
122 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
124 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
125 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
126 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
127 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/vndk/tools/definition-tool/tests/
Dtest_elf_link_data.py17 self.y = ELFLinkData(PT_SYSTEM, '/system/lib/liby.so', None)
22 self.x.add_dep(self.y, ELFLinkData.NEEDED)
29 self.assertIn(self.y, self.x.dt_deps)
30 self.assertIn(self.x, self.y.dt_users)
31 self.assertNotIn(self.y, self.x.dl_deps)
32 self.assertNotIn(self.x, self.y.dl_users)
40 self.assertIn(self.y, self.x.dt_deps)
41 self.assertIn(self.x, self.y.dt_users)
44 self.x.remove_dep(self.y, ELFLinkData.DLOPEN)
45 self.assertIn(self.y, self.x.dt_deps)
[all …]
/development/ndk/platforms/android-21/include/
Dmath.h108 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
109 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
110 #define isless(x, y) __builtin_isless((x), (y)) argument
111 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
112 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
113 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
115 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
116 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
117 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
118 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/tools/emulator/skins/WXGA800/
Dlayout18 y 0
35 y 0
41 y 0
47 y 29
62 y 0
68 y 0
74 y 1307
/development/tools/emulator/skins/WXGA720/
Dlayout18 y 0
35 y 0
41 y 0
47 y 27
62 y 0
68 y 0
74 y 749
/development/tools/emulator/skins/WSVGA/
Dlayout18 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-7in/
Dlayout18 y 0
36 y 0
42 y 0
48 y 27
64 y 0
70 y 0
76 y 829
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DGLVertex.java24 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/samples/ApiDemos/src/com/example/android/apis/graphics/
DBitmapMesh.java46 private static void setXY(float[] array, int index, float x, float y) { in setXY() argument
48 array[index*2 + 1] = y; in setXY()
62 for (int y = 0; y <= HEIGHT; y++) { in SampleView()
63 float fy = h * y / HEIGHT; in SampleView()
90 float y = src[i+1]; in warp() local
92 float dy = cy - y; in warp()
105 dst[i+1] = y + dy * pull; in warp()
118 int y = (int)pt[1]; in onTouchEvent() local
119 if (mLastWarpX != x || mLastWarpY != y) { in onTouchEvent()
121 mLastWarpY = y; in onTouchEvent()
DAlphaBitmap.java44 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/samples/Snake/src/com/example/android/snake/
DTileView.java87 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/view/
DSystemPointerIconButton.java51 final float y = event.getY(pointerIndex); in onResolvePointerIcon() local
53 if ((x < minX && y < minY) || (x > maxX && y > maxY)) { in onResolvePointerIcon()
56 } else if ((x < minX && y > maxY) || (x > maxX && y < minY)) { in onResolvePointerIcon()
62 } else if (y < minY || y > maxY) { in onResolvePointerIcon()

12345678