Searched defs:column (Results 1 - 16 of 16) sorted by relevance

/sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
H A DDefaultPosition.java33 * The column number (where the first character on the line is 0), or -1 if
45 * @param column the 0-based column number, or -1 if unknown
48 public DefaultPosition(int line, int column, int offset) { argument
50 mColumn = column;
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
H A DProfilesTableModel.java39 public Object getValueAt(int row, int column) { argument
42 if (column == 0) {
56 public String getColumnName(int column) { argument
57 return column == 0 ? "Operation" : "Duration (ms)";
H A DPropertiesTableModel.java62 public Object getValueAt(int row, int column) { argument
71 return column == 0 ? property.name : property.value;
80 public String getColumnName(int column) { argument
81 return column == 0 ? "Property" : "Value";
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
H A DPropertyViewer.java146 public Image getColumnImage(Object element, int column) { argument
151 public String getColumnText(Object element, int column) { argument
154 if (element instanceof String && column == 0) {
158 if (column == 0) {
165 } else if (column == 1) {
/sdk/lint/cli/src/com/android/tools/lint/
H A DLintCliXmlParser.java100 protected @NonNull OffsetPosition createPosition(int line, int column, int offset) { argument
101 return new OffsetPosition(line, column, offset);
110 * The column number (where the first character on the line is 0), or -1 if
128 * @param column the 0-based column number, or -1 if unknown
131 public OffsetPosition(int line, int column, int offset) { argument
133 mColumn = column;
164 return "OffsetPosition [line=" + mLine + ", column=" + mColumn + ", offset="
/sdk/common/src/com/android/utils/
H A DPositionXmlParser.java51 * (and line and column numbers) for element nodes as well as attribute nodes.
344 // Adjust the line and column to this new offset
346 int column = pos.getColumn();
351 column = 0;
353 column++;
357 Position attributePosition = createPosition(line, column, index);
359 attributePosition.setEnd(createPosition(line, column + matcher.end() - index,
381 int column = pos.getColumn();
398 column++;
404 int newColumn = column;
652 createPosition(int line, int column, int offset) argument
698 DefaultPosition(int line, int column, int offset) argument
[all...]
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
H A DAllocationPanel.java622 private void setSortColumn(final TableColumn column, SortMode sortMode) { argument
629 if (mSortColumn != column) {
633 mSortColumn = column;
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/
H A DPackagesPageImpl.java331 public PkgCellLabelProvider(ITreeViewerColumn column) { argument
333 mColumn = column;
H A DPackagesPage.java257 // column name icon is set when loading depending on the current filter type
421 private PackagesPageImpl.ITreeViewerColumn wrapColumn(final TreeViewerColumn column) { argument
425 column.setLabelProvider(labelProvider);
/sdk/draw9patch/src/com/android/draw9patch/ui/
H A DImageEditorPanel.java673 private int[] column; field in class:ImageEditorPanel.ImageViewer
816 int[] column = new int[patch.height];
821 column = GraphicsUtilities.getPixels(image, patch.x + i, patch.y,
822 1, patch.height, column);
823 if (!Arrays.equals(reference, column)) {
1066 column = GraphicsUtilities.getPixels(image, 0, 0, 1, height, column);
1069 Pair<List<Pair<Integer>>> left = getPatches(column, result);
1095 column = GraphicsUtilities.getPixels(image, width - 1, 0, 1, height, column);
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
H A DGridModel.java88 /** Width assigned to a newly added column with the Add Column action */
113 * Array of positions (indexed by column) of the left edge of table cells; this
114 * corresponds to the column positions in the grid
125 * Array of positions (indexed by column) of the maximum right hand side bounds of a
126 * node in the given column; this represents the visual edge of a column even when the
127 * actual column is wider
231 * should be positioned at the given row and column. This will skip over any nodes
236 * @param column the target column o
239 getInsertIndex(int row, int column) argument
1125 addRow(int newRow, INode newView, int rowHeightDp, boolean split, int column, int y) argument
1368 getColumnDistance(int column, int x) argument
1380 getColumnActualWidth(int column) argument
1467 getColumnX(int column) argument
1477 getColumnMaxX(int column) argument
1488 getColumnWidth(int column, int columnSpan) argument
1502 getCellBounds(int row, int column, int rowSpan, int columnSpan) argument
1817 public int column; field in class:GridModel.ViewData
2245 addSpacer(INode parent, int index, int row, int column, int widthDp, int heightDp) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
H A DRelativeLayoutConversionHelper.java102 * and perhaps do something about column size properties.
160 // Compute x/y offsets for each row/column index
239 * Initializes the column and row indices, as well as any column span and row span
244 // Now initialize table view row, column and spans
864 // Just accumulate margins for the next column
892 // Figure out edge for the next column
918 // Just accumulate margins for the next column
1000 // A list from row to column to cell, where a cell is a list of views
1014 // (can't create List<View>[row][column] array
1075 colContainsTopLeftCorner(int column) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
H A DLintList.java220 // Add all available size to the first column
222 TreeColumn column = mTree.getColumn(i);
223 availableWidth -= column.getWidth();
427 LintColumnLabelProvider(LintColumn column) { argument
428 mColumn = column;
622 // omitting the location column etc
631 LintColumn column = (LintColumn) treeColumn.getData(KEY_COLUMN);
634 int width = getColumnWidth(column, mTreePainted);
636 columns[positions[i]] = column;
641 for (LintColumn column
689 getColumnWidth(LintColumn column, boolean getFromUi) argument
719 getKey(LintColumn column) argument
863 updateDirectionIndicator(TreeColumn column) argument
[all...]
/sdk/traceview/src/com/android/traceview/
H A DMethodData.java469 public void setColumn(Column column) { argument
470 // If the sort column specified is the same as last time,
472 if (mColumn == column) {
480 if (column == Column.BY_NAME)
485 mColumn = column;
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
H A DWorkspace.java1423 public boolean isCellEditable(int row, int column) { argument
1428 public Object getValueAt(int row, int column) { argument
1433 public String getColumnName(int column) { argument
1520 public boolean isCellEditable(int row, int column) { argument
1525 public String getColumnName(int column) { argument
1530 public Object getValueAt(int row, int column) { argument
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
H A Dandroid-support-v7-gridlayout.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v7/ android/support/v7/widget/ ...

Completed in 359 milliseconds