/development/tools/winscope/src/app/components/bottomnav/ |
D | bottom_drawer_component.ts | 148 private contentMargins: {top: number | null; bottom: number | null} = { 150 bottom: null, 165 setMargins(margins: {top: number | null; bottom: number | null}) { 214 contentMargins: {top: number | null; bottom: number | null} = { 216 bottom: null, 221 bottom: number | null; 265 let bottom = 0; variable 273 bottom += baseHeight + shiftAmount; 280 bottom = bottom || null!; 284 bottom !== this.contentMargins.bottom [all …]
|
/development/tools/winscope/src/parsers/surface_flinger/computations/ |
D | visibility_properties_computation_test.ts | 45 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 96 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 143 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 172 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 202 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 258 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 308 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 360 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 1}]}, 361 bounds: {left: 0, right: 0, top: 0, bottom: 0}, 459 visibleRegion: {rect: [{left: 0, right: 1, top: 0, bottom: 0}]}, [all …]
|
D | rects_computation_test.ts | 44 bounds: {left: 0, top: 0, right: 1, bottom: 1}, 58 bounds: {left: 0, top: 0, right: 2, bottom: 2}, 75 bounds: {left: 0, top: 0, right: 5, bottom: 5}, 164 bounds: {left: 0, top: 0, right: 1, bottom: 1}, 179 bounds: {left: 0, top: 0, right: 1, bottom: 1}, 248 layerStackSpaceRect: {left: 0, top: 0, right: 5, bottom: 5}, 287 layerStackSpaceRect: {left: 0, top: 0, right: 5, bottom: 5}, 293 layerStackSpaceRect: {left: 0, top: 0, right: 5, bottom: 5}, 351 bounds: {left: 0, top: 0, right: 1, bottom: 1}, 366 bounds: {left: 0, top: 0, right: 2, bottom: 2}, [all …]
|
/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/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/samples/training/InteractiveChart/src/com/example/android/interactivechart/ |
D | InteractiveLineGraphView.java | 333 mCurrentViewport.bottom, in drawAxes() 365 mAxisXLinesBuffer[i * 4 + 3] = mContentRect.bottom; in drawAxes() 388 mContentRect.bottom + mLabelHeight + mLabelSeparation, in drawAxes() 526 return mContentRect.bottom in getDrawY() 577 canvas.translate(2 * mContentRect.left - mContentRect.right, mContentRect.bottom); in drawEdgeEffectsUnclipped() 588 canvas.translate(mContentRect.left, mContentRect.bottom); in drawEdgeEffectsUnclipped() 636 * (y - mContentRect.bottom) / -mContentRect.height()); in hitTest() 684 - newHeight * (mContentRect.bottom - focusY) 689 mCurrentViewport.bottom = mCurrentViewport.top + newHeight; 706 mCurrentViewport.bottom = Math.max(Math.nextUp(mCurrentViewport.top), in constrainViewport() [all …]
|
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/ |
D | BackgroundContainer.java | 51 public void showBackground(int top, int bottom) { in showBackground() argument 54 mOpenAreaHeight = bottom; in showBackground()
|
/development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/ |
D | BackgroundContainer.java | 52 public void showBackground(int top, int bottom) { in showBackground() argument 55 mOpenAreaHeight = bottom; in showBackground()
|
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/ |
D | ExpandingListView.java | 103 private int[] getTopAndBottomTranslations(int top, int bottom, int yDelta, in getTopAndBottomTranslations() argument 108 int height = bottom - top; in getTopAndBottomTranslations() 128 boolean isCellCompletelyDisappearing = bottom - yTranslateBottom < 0; in getTopAndBottomTranslations() 134 yTranslateBottom = bottom; in getTopAndBottomTranslations() 529 int bottom = view.getBottom(); 532 int endBottom = (int)(bottom + translateBottom); 535 PropertyValuesHolder translationBottom = PropertyValuesHolder.ofInt("bottom", bottom,
|
/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 146 final int parentBottom = bottom - top - getPaddingBottom(); in onLayout() 170 mTmpContainerRect.bottom = parentBottom - lp.bottomMargin; in onLayout() 178 mTmpChildRect.right, mTmpChildRect.bottom); in onLayout()
|
D | Focus3.java | 35 mBottomButton = (Button) findViewById(R.id.bottom); in onCreate()
|
/development/tools/winscope/src/common/ |
D | padding.ts | 20 bottom: number; property
|
D | rect.ts | 32 const bottom = node.getChildByName('bottom')?.getValue() ?? 0; constant 33 return new Rect(left, top, right - left, bottom - top);
|
/development/tools/winscope/src/test/unit/ |
D | tree_node_utils.ts | 33 bottom: number | undefined, 40 if (bottom !== undefined) children.push({name: 'bottom', value: bottom});
|
/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() 226 float scaleHeight= (bottom-top)/TRAVERSE_PATH_SIZE; in onLayout()
|
/development/tools/winscope/src/parsers/window_manager/computations/ |
D | rects_computation_test.ts | 85 frame: {left: 0, top: 0, right: 1, bottom: 1}, 99 frame: {left: 0, top: 0, right: 2, bottom: 2},
|
/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/samples/browseable/BorderlessButtons/ |
D | _index.jd | 8 This sample demonstrates the use of borderless buttons, bottom button bars
|
/development/samples/VirtualDeviceManager/client/src/com/example/android/vdmdemo/client/ |
D | ClientView.java | 105 mResizingBounds.top = mResizingBounds.bottom - mMaxSize; in dispatchTouchEvent() 108 mResizingBounds.top = mResizingBounds.bottom - MIN_SIZE; in dispatchTouchEvent()
|
/development/tools/otagui/src/components/ |
D | FileSelect.vue | 73 border-bottom-style: solid; 80 border-bottom: none;
|
/development/tools/winscope/src/viewers/components/ |
D | tree_node_component.ts | 119 return rect.top >= parentRect.top && rect.bottom <= parentRect.bottom;
|
/development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/ |
D | Utils.java | 198 int height = size.y + systemInsets.top + systemInsets.bottom; in calculateBottomInsetsOnRoundDevice() 204 int bottomInset = systemInsets.bottom > minInset ? systemInsets.bottom : minInset; in calculateBottomInsetsOnRoundDevice()
|
/development/tools/winscope/protos/surfaceflinger/udc/ |
D | common.proto | 30 int32 bottom = 4; field 85 int32 bottom = 10; field
|