Home
last modified time | relevance | path

Searched refs:cell (Results 1 – 9 of 9) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DStateLabelProvider.java82 public void update(ViewerCell cell) { in update() argument
83 Object element = cell.getElement(); in update()
90 String text = getColumnText(prop, cell.getColumnIndex()); in update()
91 cell.setText(text); in update()
94 cell.setForeground(mHighlightForegroundColor); in update()
96 cell.setForeground(mNormalForegroundColor); in update()
DGLFunctionTraceViewer.java684 public void update(ViewerCell cell) { in update() argument
685 Object element = cell.getElement(); in update()
694 cell.setForeground(mGldrawTextColor); in update()
698 cell.setForeground(mGlCallErrorColor); in update()
701 cell.setText(getColumnText(c, cell.getColumnIndex())); in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
DFrameSummaryViewPage.java350 public void update(ViewerCell cell) { in update() argument
351 Object element = cell.getElement(); in update()
359 switch (cell.getColumnIndex()) { in update()
361 cell.setText(f.toString()); in update()
364 cell.setText(Integer.toString(stats.count)); in update()
367 cell.setText(formatDuration(stats.wallDuration)); in update()
370 cell.setText(formatDuration(stats.threadDuration)); in update()
374 cell.setText("??"); //$NON-NLS-1$ in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DEditableDialogCellEditor.java80 protected Control createContents(Composite cell) { in createContents() argument
81 text = new Text(cell, SWT.SINGLE); in createContents()
130 text.setFont(cell.getFont()); in createContents()
131 text.setBackground(cell.getBackground()); in createContents()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DImportPage.java447 public void update(ViewerCell cell) { in update() argument
448 Object element = cell.getElement(); in update()
449 int index = cell.getColumnIndex(); in update()
459 cell.setForeground(fg); in update()
460 cell.setBackground(display.getSystemColor(SWT.COLOR_LIST_BACKGROUND)); in update()
465 cell.setText(project.getRelativePath()); in update()
471 cell.setText(project.getProjectName()); in update()
477 cell.setText(""); in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
DAddTranslationDialog.java234 public void update(ViewerCell cell) { in fillStrings()
235 Object element = cell.getElement(); in fillStrings()
236 int index = cell.getColumnIndex(); in fillStrings()
241 cell.setText(item.getName()); in fillStrings()
250 cell.setText(value.getValue()); in fillStrings()
259 cell.setText(translation); in fillStrings()
267 cell.setText(""); in fillStrings()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DExtractStyleWizard.java397 public void update(ViewerCell cell) { in update() argument
398 Object element = cell.getElement(); in update()
412 cell.setText(styledString.toString()); in update()
413 cell.setStyleRanges(styledString.getStyleRanges()); in update()
414 super.update(cell); in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DLintList.java432 public void update(ViewerCell cell) { in update() argument
433 Object element = cell.getElement(); in update()
434 cell.setImage(mColumn.getImage((IMarker) element)); in update()
437 cell.setText(mColumn.getValue((IMarker) element)); in update()
438 cell.setStyleRanges(null); in update()
440 cell.setText(styledString.toString()); in update()
441 cell.setStyleRanges(styledString.getStyleRanges()); in update()
443 super.update(cell); in update()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DOutlinePage.java784 public void update(ViewerCell cell) { in update() argument
785 Object element = cell.getElement(); in update()
949 cell.setText(styledString.toString()); in update()
950 cell.setStyleRanges(styledString.getStyleRanges()); in update()
951 cell.setImage(image); in update()
952 super.update(cell); in update()