Home
last modified time | relevance | path

Searched refs:right (Results 1 – 25 of 40) sorted by relevance

12

/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DCube.java22 …public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float fro… in Cube() argument
25 GLVertex rightBottomBack = addVertex(right, bottom, back); in Cube()
27 GLVertex rightTopBack = addVertex(right, top, back); in Cube()
29 GLVertex rightBottomFront = addVertex(right, bottom, front); in Cube()
31 GLVertex rightTopFront = addVertex(right, top, front); in Cube()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixStack.java42 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
49 glFrustumf(fixedToFloat(left),fixedToFloat(right), 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
109 glOrthof(fixedToFloat(left), fixedToFloat(right), in glOrthox()
DMatrixTrackingGL.java260 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/ApiDemos/src/com/example/android/apis/view/
DCustomLayout.java133 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { in onLayout() argument
138 int rightPos = right - left - getPaddingRight(); in onLayout()
159 mTmpContainerRect.right = leftPos + width + lp.rightMargin; in onLayout()
160 leftPos = mTmpContainerRect.right; in onLayout()
162 mTmpContainerRect.right = rightPos - lp.rightMargin; in onLayout()
167 mTmpContainerRect.right = middleRight - lp.rightMargin; in onLayout()
178 mTmpChildRect.right, mTmpChildRect.bottom); in onLayout()
/development/ndk/platforms/android-9/include/android/
Drect.h33 int32_t right; member
/development/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java246 int right = w;
247 while (right > 1) {
250 if (pixels[j*w+right-1] != 0xff000000) {
256 --right;
263 while (left < right-1) {
286 int tw = right - left;
/development/samples/Support4Demos/src/com/example/android/supportv4/widget/
DExploreByTouchHelperActivity.java145 public void addItem(String description, float top, float left, float bottom, float right) { in addItem() argument
147 item.bounds = new RectF(top, left, bottom, right); in addItem()
223 out.right = (int) (in.right * width); in scaleRectF()
/development/samples/USB/MissileLauncher/
DREADME.txt2 You control the left/right/up/down orientation of the launcher using the accelerometer.
/development/ide/eclipse/
DREADME.importing-to-eclipse.txt15 You will need to re-index for the changes to get picked up (right click project
21 You will need to re-index for the changes to get picked up (right click project
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
DInteractiveLineGraphView.java328 mCurrentViewport.right, in drawAxes()
372 mAxisYLinesBuffer[i * 4 + 2] = mContentRect.right; in drawAxes()
577 canvas.translate(2 * mContentRect.left - mContentRect.right, mContentRect.bottom); in drawEdgeEffectsUnclipped()
599 canvas.translate(mContentRect.right, mContentRect.top); in drawEdgeEffectsUnclipped()
688 mCurrentViewport.right = mCurrentViewport.left + newWidth;
708 mCurrentViewport.right = Math.max(Math.nextUp(mCurrentViewport.left), in constrainViewport()
709 Math.min(AXIS_X_MAX, mCurrentViewport.right)); in constrainViewport()
757 || mCurrentViewport.right < AXIS_X_MAX;
855 || mCurrentViewport.right < AXIS_X_MAX); in computeScroll()
975 (mCurrentViewport.right + mCurrentViewport.left) / 2, in zoomIn()
[all …]
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
DSkewableTextView.java81 (int) (mTempRect.right +.5f), (int) (mTempRect.bottom + .5f)); in invalidateSkewedBounds()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DColorFilters.java50 int x = r.right + 12; in addToTheRight()
129 float x = (r.left + r.right) * 0.5f; in drawSample()
DRegions.java90 r.right - inset, r.bottom - inset, p); in drawCentered()
/development/samples/Home/src/com/example/android/home/
DApplicationsStackLayout.java134 final int right = getWidth(); in onDraw() local
139 mDrawRect.set(0, 0, right, mFavoritesStart); in onDraw()
149 mDrawRect.set(0, mFavoritesStart, right, mFavoritesEnd); in onDraw()
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
DShadowLayout.java108 tempShadowRectF.right = child.getWidth(); in onDraw()
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
Dmain.css76 text-align: right;
/development/ide/xcode/ports/
DSkOSWindow_Mac.cpp79 this->resize(r.right - r.left, r.bottom - r.top); in updateSize()
88 rect.right = r.fRight; in onHandleInval()
/development/ndk/platforms/android-4/include/GLES/
Dglext.h537 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…
Dgl.h601 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/samples/devbytes/animation/Anticipation/src/com/example/android/anticipation/
DAnticiButton.java227 (int) (mTempRect.right +.5f), (int) (mTempRect.bottom + .5f)); in invalidateSkewedBounds()
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
DInsertionListView.java367 interpolate(startValue.right, endValue.right, fraction),
/development/ndk/platforms/android-4/samples/san-angeles/jni/
Dapp-win32.c192 sWindowWidth = rc.right; in wndProc()
Dimportgl.h90 FNDEF(void, glFrustumx, (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, G…
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DDynamicListView.java460 interpolate(startValue.right, endValue.right, fraction),
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
DZoomActivity.java145 startBounds.right += deltaWidth; in zoomImageFromThumb()

12