Home
last modified time | relevance | path

Searched refs:height (Results 1 – 14 of 14) sorted by relevance

/sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/
DUnifiedContentBorder.java28 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { in paintBorder() argument
32 g.drawLine(x, y + height - 2, x + width, y + height - 2); in paintBorder()
34 g.drawLine(x, y + height - 1, x + width, y + height - 1); in paintBorder()
/sdk/emulator/skins/dynamic/
Dlayout10 height 480
20 height 88
55 height 91
63 height 58
93 height 58
101 height 21
109 height 21
117 height 55
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
DCaptureRenderer.java40 d.height += node.marginTop + node.marginBottom; in getPreferredSize()
55 int height = icon.getIconHeight(); in paintComponent() local
58 int y = (getHeight() - height) / 2; in paintComponent()
70 height - node.paddingBottom - node.paddingTop); in paintComponent()
81 node.marginTop + height + node.marginBottom); in paintComponent()
DLayoutRenderer.java84 int y = (getHeight() - insets.top - insets.bottom - root.height) / 2; in paintComponent()
88 g.drawRect(root.left, root.top, root.width - 1, root.height - 1); in paintComponent()
89 g.clipRect(root.left - 1, root.top - 1, root.width + 1, root.height + 1); in paintComponent()
105 s.drawRect(node.left, node.top, node.width - 1, node.height - 1); in paintComponent()
116 g.drawRect(node.left, node.top, node.width - 1, node.height - 1); in drawChildren()
147 int yoffset = (getHeight() - insets.top - insets.bottom - root.height) / 2 + insets.top + 1; in selectChild()
163 node.top <= y && y < node.top + node.height) { in findChild()
164 if (node.width <= hit.width && node.height <= hit.height) { in findChild()
DScreenViewer.java250 private int height; field in ScreenViewer.LoupeViewer
296 int height = getHeight(); in paintComponent() local
299 if (width != this.width || height != this.height) { in paintComponent()
301 this.height = height; in paintComponent()
303 grid = new BufferedImage(width + zoom + 1, height + zoom + 1, in paintComponent()
319 height += zoom; in paintComponent()
322 g2.drawLine(x, 0, x, height); in paintComponent()
325 for (int y = 0; y <= height; y += zoom) { in paintComponent()
350 top = y * zoom - height / 2 + zoom / 2; in moveToPoint()
463 d.height = 30; in getPreferredSize()
[all …]
DWorkspace.java673 int height = 0; in setVisibleRowCount() local
675 height += table.getRowHeight(row); in setVisibleRowCount()
678 Dimension size = new Dimension(table.getPreferredScrollableViewportSize().width, height); in setVisibleRowCount()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
DPsdFile.java45 public PsdFile(int width, int height) { in PsdFile() argument
46 mHeader = new Header(width, height); in PsdFile()
52 mMergedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); in PsdFile()
101 int height = image.getHeight(); in writeImage() local
103 final int length = width * height; in writeImage()
106 image.getData().getDataElements(0, 0, width, height, pixels); in writeImage()
152 Header(int width, int height) { in Header() argument
154 mHeight = height; in Header()
317 final int height = image.getHeight(); in Layer() local
319 final int length = width * height; in Layer()
[all …]
/sdk/templates/docs/
Ddefault.js134 height = $this.height(),
140 if (!up && -delta > scrollHeight - height - scrollTop) {
Ddefault.css77 line-height: 16px;
121 height: 24px;
137 line-height: 48px;
145 line-height: 24px;
154 line-height: 24px;
163 line-height: 24px;
Djquery-1.8.0.min.js2height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(… property
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
DMultiTouchChannel.java67 public void setViewSize(int width, int height) { in setViewSize() argument
68 mViewSize.set(width, height); in setViewSize()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
DViewHierarchyScene.java238 focusGradient.getColor1(), bounds.x, bounds.x + bounds.height, in paintBackground()
243 bounds.x, bounds.x + bounds.height, filteredGradient.getColor2())); in paintBackground()
247 bounds.x, bounds.x + bounds.height, selectedGradient.getColor2())); in paintBackground()
249 g2.fillRect(bounds.x, bounds.y, bounds.width, bounds.height); in paintBackground()
DCaptureLoader.java60 int height = in.readInt(); in saveLayers() local
62 PsdFile psd = new PsdFile(width, height); in saveLayers()
DViewNode.java41 public int height; field in ViewNode
71 height = getInt("getHeight()", 0); in decode()