/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | Cube.java | 22 …public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float fro… in Cube() argument 24 GLVertex leftBottomBack = addVertex(left, bottom, back); in Cube() 25 GLVertex rightBottomBack = addVertex(right, bottom, back); in Cube() 28 GLVertex leftBottomFront = addVertex(left, bottom, front); in Cube() 29 GLVertex rightBottomFront = addVertex(right, bottom, front); in Cube()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | MatrixStack.java | 42 public void glFrustumf(float left, float right, float bottom, float top, in glFrustumf() argument 44 Matrix.frustumM(mMatrix, mTop, left, right, bottom, top, near, far); in glFrustumf() 47 public void glFrustumx(int left, int right, int bottom, int top, int near, in glFrustumx() argument 50 fixedToFloat(bottom), fixedToFloat(top), in glFrustumx() 102 public void glOrthof(float left, float right, float bottom, float top, in glOrthof() argument 104 Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far); in glOrthof() 107 public void glOrthox(int left, int right, int bottom, int top, int near, in glOrthox() argument 110 fixedToFloat(bottom), fixedToFloat(top), in glOrthox()
|
D | MatrixTrackingGL.java | 260 public void glFrustumf(float left, float right, float bottom, float top, in glFrustumf() argument 262 mCurrent.glFrustumf(left, right, bottom, top, near, far); in glFrustumf() 263 mgl.glFrustumf(left, right, bottom, top, near, far); in glFrustumf() 267 public void glFrustumx(int left, int right, int bottom, int top, int near, in glFrustumx() argument 269 mCurrent.glFrustumx(left, right, bottom, top, near, far); in glFrustumx() 270 mgl.glFrustumx(left, right, bottom, top, near, far); in glFrustumx() 490 public void glOrthof(float left, float right, float bottom, float top, in glOrthof() argument 492 mCurrent.glOrthof(left, right, bottom, top, near, far); in glOrthof() 493 mgl.glOrthof(left, right, bottom, top, near, far); in glOrthof() 497 public void glOrthox(int left, int right, int bottom, int top, int near, in glOrthox() argument [all …]
|
/development/samples/BrowserPlugin/jni/navigation/ |
D | NavigationPlugin.cpp | 62 inval.bottom = rnd16(r.bottom, -inset); in inval() 105 clipR.bottom = clip.bottom; in drawPlugin() 128 m_navUp.bottom = m_navUp.top + 30; in draw() 135 m_navDown.bottom = m_navDown.top + 30; in draw() 142 m_navLeft.bottom = m_navLeft.top + 30; in draw() 149 m_navRight.bottom = m_navRight.top + 30; in draw() 156 m_navCenter.bottom = m_navCenter.top + 30; in draw()
|
/development/samples/BrowserPlugin/jni/form/ |
D | FormPlugin.cpp | 62 inval.bottom = rnd16(r.bottom, -inset); in inval() 124 clipR.bottom = clip.bottom; in drawPlugin() 147 m_usernameInput.rect.bottom = m_usernameInput.rect.top + inputHeight; in draw() 155 m_passwordInput.rect.bottom = m_passwordInput.rect.top + inputHeight; in draw() 175 textInput.rect.bottom - fontMetrics.fBottom, m_paintText); in drawText() 186 float ovalBottom = passwordInput.rect.bottom - 2; in drawPassword() 197 oval.bottom = ovalBottom; in drawPassword() 366 visibleRects[0].bottom = input->rect.bottom; in scrollIntoView() 374 y > m_usernameInput.rect.top && y < m_usernameInput.rect.bottom) in validTap() 377 y > m_passwordInput.rect.top && y < m_passwordInput.rect.bottom) in validTap()
|
/development/samples/BrowserPlugin/jni/audio/ |
D | AudioPlugin.cpp | 63 inval.bottom = rnd16(r.bottom, -inset); in inval() 198 clipR.bottom = clip.bottom; in drawPlugin() 228 m_trackRect.bottom = 1 + trackHeight; in draw() 239 m_playRect.top = m_trackRect.bottom + 10; in draw() 241 m_playRect.bottom = m_playRect.top + buttonHeight; in draw() 250 m_pauseRect.top = m_trackRect.bottom + 10; in draw() 252 m_pauseRect.bottom = m_pauseRect.top + buttonHeight; in draw() 261 m_stopRect.top = m_trackRect.bottom + 10; in draw() 263 m_stopRect.bottom = m_stopRect.top + buttonHeight; in draw() 320 if (m_playRect.left && x < m_playRect.right && y > m_playRect.top && y < m_playRect.bottom) in validTouch() [all …]
|
/development/samples/BrowserPlugin/jni/paint/ |
D | PaintPlugin.cpp | 115 clipR.bottom = dirtyRect->bottom; in getCanvas() 128 newRect.bottom = (int) dirtyRect->bottom; in getCanvas() 168 m_inputToggle.bottom = m_inputToggle.top + buttonHeight; in drawCleanPlugin() 178 m_colorToggle.bottom = m_colorToggle.top + buttonHeight; in drawCleanPlugin() 188 m_fullScreenToggle.bottom = m_fullScreenToggle.top + buttonHeight; in drawCleanPlugin() 199 m_clearSurface.bottom = m_clearSurface.top + buttonHeight; in drawCleanPlugin() 209 m_drawingSurface.bottom = m_colorToggle.top - 5; in drawCleanPlugin() 379 …e.left && fx < m_drawingSurface.right && fy > m_drawingSurface.top && fy < m_drawingSurface.bottom) in validTouch() 381 …nputToggle.left && fx < m_inputToggle.right && fy > m_inputToggle.top && fy < m_inputToggle.bottom) in validTouch() 383 …olorToggle.left && fx < m_colorToggle.right && fy > m_colorToggle.top && fy < m_colorToggle.bottom) in validTouch() [all …]
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/ |
D | main.css | 36 border-bottom: solid 1px #ccc; 49 margin-bottom: 20px; 67 border-bottom: solid 1px #000; 71 border-bottom: solid 1px #eee;
|
/development/ndk/platforms/android-9/include/android/ |
D | rect.h | 34 int32_t bottom; member
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | Focus3.java | 35 mBottomButton = (Button) findViewById(R.id.bottom); in onCreate()
|
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
D | DeviceListFragment.java | 128 TextView bottom = (TextView) v.findViewById(R.id.device_details); in getView() local 132 if (bottom != null) { in getView() 133 bottom.setText(getDeviceStatus(device.status)); in getView()
|
/development/tools/emulator/opengl/system/egl/ |
D | ClientAPIExts.in | 49 (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar), 50 (left, right, bottom, top, zNear, zFar)) 53 (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar), 54 (left, right, bottom, top, zNear, zFar))
|
/development/samples/BrowserPlugin/jni/animation/ |
D | AnimationPlugin.cpp | 125 visibleRect.left, visibleRect.top, visibleRect.right, visibleRect.bottom); in showEntirePluginOnScreen() 132 visibleRects[0].bottom = window->height; in showEntirePluginOnScreen()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | ColorFilters.java | 51 int center = (r.top + r.bottom) >> 1; in addToTheRight() 130 float y = (r.top + r.bottom) * 0.5f - mPaintTextOffset; in drawSample()
|
D | Regions.java | 90 r.right - inset, r.bottom - inset, p); in drawCentered()
|
/development/tools/emulator/opengl/tests/gles_android_wrapper/ |
D | gles.cpp | 96 void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zF… in glFrustumf() argument 98 getDispatch()->glFrustumf(left, right, bottom, top, zNear, zFar); in glFrustumf() 186 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) in glOrthof() argument 188 getDispatch()->glOrthof(left, right, bottom, top, zNear, zFar); in glOrthof() 436 void glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zF… in glFrustumx() argument 438 getDispatch()->glFrustumx(left, right, bottom, top, zNear, zFar); in glFrustumx() 616 void glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar) in glOrthox() argument 618 getDispatch()->glOrthox(left, right, bottom, top, zNear, zFar); in glOrthox() 886 void glFrustumxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed… in glFrustumxOES() argument 888 getDispatch()->glFrustumxOES(left, right, bottom, top, zNear, zFar); in glFrustumxOES() [all …]
|
/development/samples/Home/src/com/example/android/home/ |
D | ApplicationsStackLayout.java | 135 final int bottom = getHeight(); in onDraw() local 141 mDrawRect.set(0, 0, mFavoritesStart, bottom); in onDraw() 151 mDrawRect.set(mFavoritesStart, 0, mFavoritesEnd, bottom); in onDraw()
|
/development/tools/emulator/opengl/system/GLESv1_enc/ |
D | gl_entry.cpp | 17 …void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat z… 35 …void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFa… 84 …void glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed z… 120 …void glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFa… 193 …void glFrustumxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixe… 212 …void glOrthoxOES(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed … 249 …void glFrustumfOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloa… 250 …void glOrthofOES(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat … 357 void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zF… in glFrustumf() argument 360 ctx->glFrustumf(ctx, left, right, bottom, top, zNear, zFar); in glFrustumf() [all …]
|
D | gl_enc.h | 32 …void glFrustumf_enc(void *self , GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat… 50 …void glOrthof_enc(void *self , GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat z… 99 …void glFrustumx_enc(void *self , GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed… 135 …void glOrthox_enc(void *self , GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed z… 208 …void glFrustumxOES_enc(void *self , GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfi… 227 …void glOrthoxOES_enc(void *self , GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixe… 264 …void glFrustumfOES_enc(void *self , GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfl… 265 …void glOrthofOES_enc(void *self , GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloa…
|
/development/ndk/platforms/android-4/include/GLES/ |
D | glext.h | 537 GL_API void GL_APIENTRY glFrustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GL… 555 GL_API void GL_APIENTRY glOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfi… 577 typedef void (GL_APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfi… 595 typedef void (GL_APIENTRYP PFNGLORTHOXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixe… 704 GL_API void GL_APIENTRY glFrustumfOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GL… 705 GL_API void GL_APIENTRY glOrthofOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfl… 711 typedef void (GL_APIENTRYP PFNGLFRUSTUMFOESPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfl… 712 typedef void (GL_APIENTRYP PFNGLORTHOFOESPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfloa…
|
D | gl.h | 601 GL_API void GL_APIENTRY glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLflo… 619 GL_API void GL_APIENTRY glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat… 671 GL_API void GL_APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfix… 707 GL_API void GL_APIENTRY glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed…
|
/development/ide/xcode/ports/ |
D | SkOSWindow_Mac.cpp | 79 this->resize(r.right - r.left, r.bottom - r.top); in updateSize() 89 rect.bottom = r.fBottom; in onHandleInval()
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
D | app-win32.c | 193 sWindowHeight = rc.bottom; in wndProc()
|
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/ |
D | ZoomActivity.java | 152 startBounds.bottom += deltaHeight; in zoomImageFromThumb()
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
D | MonkeySourceNetworkViews.java | 127 positions.append(nodePosition.bottom-nodePosition.top); in getPositionFromNode() 334 positions.append(nodePosition.bottom-nodePosition.top); in query()
|