Home
last modified time | relevance | path

Searched refs:col (Results 1 – 6 of 6) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt.package/
Dwelcome.css113 .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
114 .col-13, .col-14, .col-15, .col-16 {
118 * html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
119 .col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12, * html
120 .col-13, * html .col-14, * html .col-15, * html .col-16 {
124 [dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
125 [dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
126 [dir='rtl'] .col-11, [dir='rtl'] .col-12 {
129 .col-1 {
132 .col-2 {
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRelativeLayoutConversionHelper.java250 Integer col = xToCol.get(view.getLeftEdge()); in initializeSpans() local
251 assert col != null; in initializeSpans()
255 view.mCol = col; in initializeSpans()
256 view.mColSpan = end - col; in initializeSpans()
860 for (int col = 0; col < columns; col++) { in computeHorizontalConstraints()
861 if (!grid.colContainsTopLeftCorner(col)) { in computeHorizontalConstraints()
863 marginLeft += grid.getColumnWidth(col); in computeHorizontalConstraints()
867 for (View view : grid.viewsStartingInCol(col, true)) { in computeHorizontalConstraints()
891 View view = grid.findRightEdgeView(col); in computeHorizontalConstraints()
899 marginLeft = grid.getColumnWidth(col); in computeHorizontalConstraints()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
DResourceExplorerView.java282 TreeColumn col = new TreeColumn(parent, style); in createTreeColumn() local
285 col.setWidth(fixedSize); in createTreeColumn()
286 col.setResizable(false); in createTreeColumn()
292 col.setText(sample_text); in createTreeColumn()
293 col.pack(); in createTreeColumn()
297 prefs.setValue(pref_name, col.getWidth()); in createTreeColumn()
300 col.setWidth(prefs.getInt(pref_name)); in createTreeColumn()
306 col.addControlListener(new ControlListener() { in createTreeColumn()
324 col.setText(header); in createTreeColumn()
/sdk/emulator/opengl/tests/translator_tests/GLES_CM/
DtriangleCM.cpp63 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; in genTexture() local
64 if (j>(width/2)) col/=2; in genTexture()
66 *ptr = col; ptr++; in genTexture()
80 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; in genRedTexture() local
81 *ptr = col; in genRedTexture()
/sdk/emulator/opengl/tests/translator_tests/GLES_V2/
DtriangleV2.cpp83 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; in genTexture() local
85 *ptr = col; ptr++; in genTexture()
99 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; in genRedTexture() local
100 *ptr = col; in genRedTexture()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridModel.java645 int col = minField.getInt(colInterval); in assignRowsAndColumnsFromViews() local
649 view.column = col; in assignRowsAndColumnsFromViews()
651 view.columnSpan = colEnd - col; in assignRowsAndColumnsFromViews()
1547 for (int col = 0; col < mLeft.length; col++) { in toString()
1573 for (int col = 0; col < actualColumnCount + 1; col++) { in toString()
1574 out.printf("|%-" + (cellWidth - 1) + "d", mLeft[col]); //$NON-NLS-1$ //$NON-NLS-2$ in toString()
1582 for (int col = 0; col < actualColumnCount; col++) { in toString()
1583 List<ViewData> views = rowList.get(row).get(col); in toString()