Home
last modified time | relevance | path

Searched refs:styledString (Results 1 – 5 of 5) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DLintColumn.java165 StyledString styledString = new StyledString(); in getStyledValue() local
168 styledString.append(message); in getStyledValue()
172 styledString.append(String.format(" (%2$d items)", message, count), in getStyledValue()
176 return styledString; in getStyledValue()
322 StyledString styledString = new StyledString(); in getStyledValue() local
327 styledString.append(resource.getName()); in getStyledValue()
330 styledString.append(resource.getName()); in getStyledValue()
334 styledString.append(':').append(Integer.toString(line)); in getStyledValue()
337 styledString.append(File.separatorChar); in getStyledValue()
341 styledString.append(" in "); in getStyledValue()
[all …]
DLintList.java435 StyledString styledString = mColumn.getStyledValue((IMarker) element); in update() local
436 if (styledString == null) { in update()
440 cell.setText(styledString.toString()); in update()
441 cell.setStyleRanges(styledString.getStyleRanges()); in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DOutlinePage.java786 StyledString styledString = null; in update() local
798 styledString = node.getStyledDescription(); in update()
834 styledString.append(" - columnCount=", QUALIFIER_STYLER); in update()
835 styledString.append(columnCount, QUALIFIER_STYLER); in update()
836 styledString.append(", rowCount=", QUALIFIER_STYLER); in update()
837 styledString.append(rowCount, QUALIFIER_STYLER); in update()
869 styledString.append(" - cell (row=", QUALIFIER_STYLER); in update()
870 styledString.append(row, QUALIFIER_STYLER); in update()
871 styledString.append(',', QUALIFIER_STYLER); in update()
872 styledString.append("col=", colStyle); in update()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DExtractStyleWizard.java401 StyledString styledString = new StyledString(); in update() local
402 styledString.append(attribute.getLocalName()); in update()
403 styledString.append(" = ", QUALIFIER_STYLER); in update()
404 styledString.append(attribute.getValue()); in update()
410 styledString.append(s, DECORATIONS_STYLER); in update()
412 cell.setText(styledString.toString()); in update()
413 cell.setStyleRanges(styledString.getStyleRanges()); in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiElementNode.java309 StyledString styledString = new StyledString(); in getStyledDescription() local
315 styledString.append(attr); in getStyledDescription()
316 styledString.append(String.format(" (%1$s)", uiName), in getStyledDescription()
319 styledString.append(attr); in getStyledDescription()
323 if (styledString.length() == 0) { in getStyledDescription()
324 styledString.append(uiName); in getStyledDescription()
327 return styledString; in getStyledDescription()