/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 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/ |
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 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()
|
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/ApiDemos/src/com/example/android/apis/view/ |
D | CustomLayout.java | 133 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/perftests/panorama/feature_mos/src/mosaic/ |
D | MosaicTypes.h | 37 left = right = top = bottom = 0.0; in MosaicRect() 42 return right - left; in Width() 53 int left, right, top, bottom; variable
|
D | Pyramid.cpp | 112 void PyramidShort::BorderSpread(PyramidShort *pyr, int left, int right, in BorderSpread() argument 118 if (left || right) { in BorderSpread() 120 off2 = pyr->width + off + pyr->border - right - 1; in BorderSpread() 129 for (w = right; w--;) in BorderSpread()
|
D | Pyramid.h | 47 static void BorderSpread(PyramidShort *pyr, int left, int right, int top, int bot);
|
/development/samples/Support7Demos/src/com/example/android/supportv7/widget/decorator/ |
D | DividerItemDecoration.java | 68 final int right = parent.getWidth() - parent.getPaddingRight(); in drawVertical() local 78 mDivider.setBounds(left, top, right, bottom); in drawVertical() 94 final int right = left + mDivider.getIntrinsicHeight(); in drawHorizontal() local 95 mDivider.setBounds(left, top, right, bottom); in drawHorizontal()
|
/development/samples/Support7Demos/src/com/example/android/supportv7/widget/ |
D | RecyclerViewActivity.java | 121 final int right = getWidth() - getPaddingRight(); in onLayoutChildren() local 129 layoutDecorated(v, left, top, right, bottom); in onLayoutChildren() 153 final int right = getWidth() - getPaddingRight(); in scrollVerticallyBy() local 168 layoutDecorated(v, left, top, right, bottom); in scrollVerticallyBy() 188 layoutDecorated(v, left, top, right, bottom); in scrollVerticallyBy() 208 final int right = getWidth() - getPaddingRight(); in onFocusSearchFailed() local 220 layoutDecorated(v, left, top, right, bottom); in onFocusSearchFailed() 235 layoutDecorated(v, left, top, right, bottom); in onFocusSearchFailed()
|
/development/samples/browseable/BasicTransition/src/com.example.android.common/view/ |
D | SlidingTabStrip.java | 129 int right = selectedTitle.getRight(); in onDraw() local 142 right = (int) (mSelectionOffset * nextTitle.getRight() + in onDraw() 143 (1.0f - mSelectionOffset) * right); in onDraw() 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, in onDraw()
|
/development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/view/ |
D | SlidingTabStrip.java | 129 int right = selectedTitle.getRight(); in onDraw() local 142 right = (int) (mSelectionOffset * nextTitle.getRight() + in onDraw() 143 (1.0f - mSelectionOffset) * right); in onDraw() 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, in onDraw()
|
/development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/view/ |
D | SlidingTabStrip.java | 129 int right = selectedTitle.getRight(); in onDraw() local 142 right = (int) (mSelectionOffset * nextTitle.getRight() + in onDraw() 143 (1.0f - mSelectionOffset) * right); in onDraw() 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, in onDraw()
|
/development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/view/ |
D | SlidingTabStrip.java | 129 int right = selectedTitle.getRight(); in onDraw() local 142 right = (int) (mSelectionOffset * nextTitle.getRight() + in onDraw() 143 (1.0f - mSelectionOffset) * right); in onDraw() 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, in onDraw()
|
/development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/view/ |
D | SlidingTabStrip.java | 129 int right = selectedTitle.getRight(); in onDraw() local 142 right = (int) (mSelectionOffset * nextTitle.getRight() + in onDraw() 143 (1.0f - mSelectionOffset) * right); in onDraw() 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, in onDraw()
|
/development/samples/browseable/SlidingTabsColors/src/com.example.android.common/view/ |
D | SlidingTabStrip.java | 129 int right = selectedTitle.getRight(); in onDraw() local 142 right = (int) (mSelectionOffset * nextTitle.getRight() + in onDraw() 143 (1.0f - mSelectionOffset) * right); in onDraw() 148 canvas.drawRect(left, height - mSelectedIndicatorThickness, right, in onDraw()
|
/development/ndk/platforms/android-9/include/android/ |
D | rect.h | 33 int32_t right; member
|
/development/ndk/platforms/android-14/include/android/ |
D | rect.h | 33 int32_t right; member
|
/development/ndk/platforms/android-16/include/android/ |
D | rect.h | 33 int32_t right; member
|
/development/samples/Support4Demos/src/com/example/android/supportv4/widget/ |
D | ExploreByTouchHelperActivity.java | 145 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/ApiDemos/src/com/example/android/apis/animation/ |
D | PathAnimations.java | 121 public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, in onLayoutChange() argument 221 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { in onLayout() argument 222 super.onLayout(changed, left, top, right, bottom); in onLayout() 225 float scaleWidth = (right-left)/TRAVERSE_PATH_SIZE; in onLayout()
|
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/ |
D | InteractiveLineGraphView.java | 328 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/ide/eclipse/ |
D | README.importing-to-eclipse.txt | 15 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/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | AnimatedNotificationDisplayActivity.java | 120 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { in onLayout() argument 127 int minSize = Math.max(right - left, bottom - top) + mZoomLength; in onLayout()
|
/development/ndk/platforms/android-21/include/linux/tc_ematch/ |
D | tc_em_meta.h | 120 struct tcf_meta_val right; member
|
/development/samples/USB/MissileLauncher/ |
D | README.txt | 2 You control the left/right/up/down orientation of the launcher using the accelerometer.
|