Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 69) sorted by relevance

123

/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
DLayoutRenderer.java70 g.clipRect(insets.left, insets.top, in paintComponent()
71 getWidth() - insets.left - insets.right, in paintComponent()
83 int x = (getWidth() - insets.left - insets.right - root.width) / 2; in paintComponent()
85 g.translate(insets.left + x, insets.top + y); 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()
99 s.translate(p.left - p.scrollX, p.top - p.scrollY); in paintComponent()
103 s.drawImage(node.image, node.left, node.top, null); in paintComponent()
105 s.drawRect(node.left, node.top, node.width - 1, node.height - 1); in paintComponent()
109 g.translate(-insets.left - x, -insets.top - y); in paintComponent()
[all …]
DScreenViewer.java252 private int left; field in ScreenViewer.LoupeViewer
280 g.translate(-left, -top); in paintComponent()
338 g.translate(left, top); in paintComponent()
342 int x = Math.max(0, Math.min((event.getX() + left) / zoom, image.getWidth() - 1)); in moveToPoint()
349 left = x * zoom - width / 2 + zoom / 2; in moveToPoint()
585 s.translate(p.left - p.scrollX, p.top - p.scrollY); in paintComponent()
588 s.drawRect(node.left, node.top, node.width - 1, node.height - 1); in paintComponent()
589 s.translate(node.left, node.top); in paintComponent()
640 int x = (width - insets.left - insets.right) / 2; in paint()
643 g.drawLine(insets.left + x, insets.top, insets.left + x, height - insets.bottom); in paint()
[all …]
/sdk/templates/docs/
Ddefault.css68 left: 0;
86 padding-left: 16px;
105 margin-left: 16px;
118 left: -32px;
176 border-left: 4px solid #09c;
177 padding-left: 16px;
191 margin-left: 32px;
197 margin-left: 32px;
201 margin-left: 16px;
205 float: left;
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dcompletion1-expected-applyCompletion7b.diff1 Code completion in completion1.xml for android:gravity="left|b^ottom" selecting bottom:
3 - android:gravity="left|b^ottom"
4 + android:gravity="left|bottom^"
Dcompletion2-expected-applyCompletion13a.diff1 Code completion in completion2.xml for gravity="left|bottom|^cen selecting fill_vertical:
3 - <TextView android:gravity="left|bottom|^cen"></TextView>
4 + <TextView android:gravity="left|bottom|fill_vertical^"></TextView>
Dcompletion2-expected-applyCompletion13b.diff1 Code completion in completion2.xml for gravity="left|bottom|cen^ selecting center_horizontal:
3 - <TextView android:gravity="left|bottom|cen^"></TextView>
4 + <TextView android:gravity="left|bottom|center_horizontal^"></TextView>
Dcompletion2-expected-applyCompletion13c.diff1 Code completion in completion2.xml for gravity="left|bottom^|cen selecting bottom|fill_horizontal:
3 - <TextView android:gravity="left|bottom^|cen"></TextView>
4 + <TextView android:gravity="left|bottom|fill_horizontal^"></TextView>
Dcompletion1-expected-applyCompletion7a.diff1 Code completion in completion1.xml for android:gravity="l^eft|bottom" selecting left:
4 + android:gravity="left^"
Dcompletionvalues1-expected-applyCompletion28.diff1 Code completion in completionvalues1.xml for <item name="android:gravity"> ^</item> selecting left:
4 + <item name="android:gravity"> left^</item>
Dcompletion2-expected-completion13a.txt1 Code completion in completion2.xml for gravity="left|bottom|^cen:
4 left
Dcompletion8-expected-completion41.txt2 android:layout_margin : Specifies extra space on the left, top, right and bottom sides of this vie…
3 android:layout_marginLeft : Specifies extra space on the left side of this view. [dimension]
Dcompletion8-expected-completion43.txt2 android:layout_margin : Specifies extra space on the left, top, right and bottom sides of this vie…
3 android:layout_marginLeft : Specifies extra space on the left side of this view. [dimension]
Dcompletion8-expected-completion44.txt6 android:layout_margin : Specifies extra space on the left, top, right and bottom sides of this vie…
7 android:layout_marginLeft : Specifies extra space on the left side of this view. [dimension]
Dcompletion1-expected-completion7a.txt2 left
Dcompletion1-expected-completion7b.txt1 Code completion in completion1.xml for android:gravity="left|b^ottom":
Dcompletion2-expected-completion13b.txt1 Code completion in completion2.xml for gravity="left|bottom|cen^:
Dcompletionvalues1-expected-completion27.txt4 left
Dcompletionvalues1-expected-completion28.txt4 left
/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/
DRect.java7 public int left; field in Rect
30 out.writeInt(left); in writeToParcel()
37 left = in.readInt(); in readFromParcel()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DRenderPreview.java778 int left = 0; in click() local
779 left += CLOSE_ICON_WIDTH; in click()
780 if (x <= left) { in click()
785 left += ZOOM_IN_ICON_WIDTH; in click()
786 if (x <= left) { in click()
798 left += ZOOM_OUT_ICON_WIDTH; in click()
799 if (x <= left) { in click()
811 left += EDIT_ICON_WIDTH; in click()
812 if (x <= left) { in click()
911 int left = x ; in paint() local
[all …]
DSelectionHandles.java84 boolean left = resizability.leftAllowed(); in createHandles()
97 x1 += insets.left; in createHandles()
106 if (left) { in createHandles()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidXmlAutoEditStrategy.java122 ITextRegion left = getRegionAt(doc, offset, true /*biasLeft*/); in customizeDocumentCommand() local
123 if (left != null in customizeDocumentCommand()
124 && (left.getType().equals(XML_TAG_CLOSE) in customizeDocumentCommand()
125 || left.getType().equals(XML_EMPTY_TAG_CLOSE))) { in customizeDocumentCommand()
162 ITextRegion left = getRegionAt(doc, offset, true /*biasLeft*/); in customizeDocumentCommand() local
164 if (left != null && right != null in customizeDocumentCommand()
165 && left.getType().equals(XML_TAG_CLOSE) in customizeDocumentCommand()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
DMainFrame.java49 bottom.left = new FormAttachment(0, 0); in MainFrame()
60 top.left = new FormAttachment(0); in MainFrame()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
DPropertiesTableModel.java35 int x = node.left; in loadPrivateProperties()
39 x += p.left - p.scrollX; in loadPrivateProperties()
/sdk/emulator/skins/dynamic/
Dlayout33 dpad-left {
71 soft-left {

123