HomeSort by relevance Sort by last modified time
    Searched full:sortable (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/junit/src/org/junit/runner/manipulation/
Sorter.java 37 if (object instanceof Sortable) {
38 Sortable sortable = (Sortable) object; local
39 sortable.sort(this);
Sortable.java 9 public interface Sortable {
  /external/webkit/Source/WebCore/html/
DataGridColumn.h 42 static PassRefPtr<DataGridColumn> create(const String& columnID, const String& label, const String& type, bool primary, unsigned short sortable)
44 return adoptRef(new DataGridColumn(columnID, label, type, primary, sortable));
56 unsigned short sortable() const { return m_sortable; } function in class:WebCore::DataGridColumn
57 void setSortable(unsigned short sortable) { m_sortable = sortable; columnChanged(); }
83 DataGridColumn(const String& columnID, const String& label, const String& type, bool primary, unsigned short sortable)
89 , m_sortable(sortable)
HTMLDataGridColElement.cpp 63 m_column = DataGridColumn::create(getIdAttribute(), label(), type(), primary(), sortable());
110 unsigned short HTMLDataGridColElement::sortable() const function in class:WebCore::HTMLDataGridColElement
117 void HTMLDataGridColElement::setSortable(unsigned short sortable)
119 setAttribute(sortableAttr, String::number(sortable));
134 // FIXME: Check sortable rules.
167 column()->setSortable(sortable());
DataGridColumnList.h 36 DataGridColumn* add(const String& id, const String& label, const String& type, bool primary, unsigned short sortable);
DataGridColumnList.cpp 65 DataGridColumn* DataGridColumnList::add(const String& id, const String& label, const String& type, bool primary, unsigned short sortable)
67 return add(DataGridColumn::create(id, label, type, primary, sortable).get());
DataGridColumnList.idl 39 DataGridColumn add(in DOMString id, in DOMString label, in DOMString type, in boolean primary, in unsigned short sortable);
HTMLDataGridColElement.idl 34 attribute unsigned short sortable; // Whether or not the column can be sorted. Values are none, ascending/descending, and ascending/descending/na
DataGridColumn.idl 38 attribute unsigned short sortable; // Whether or not the column can be sorted.
HTMLAttributeNames.in 273 sortable
HTMLDataGridColElement.h 48 unsigned short sortable() const;
  /external/junit/src/junit/framework/
JUnit4TestAdapter.java 13 import org.junit.runner.manipulation.Sortable;
16 public class JUnit4TestAdapter implements Test, Filterable, Sortable, Describable {
  /external/webkit/Source/WebCore/inspector/front-end/
CookiesTable.js 37 columns[0].sortable = true;
41 columns[1].sortable = true;
44 columns[2].sortable = true;
47 columns[3].sortable = true;
50 columns[4].sortable = true;
54 columns[5].sortable = true;
58 columns[6].sortable = true;
62 columns[7].sortable = true;
DetailedHeapshotView.js 34 object: { title: WebInspector.UIString("Object"), disclosure: true, sortable: true, sort: "ascending" },
35 shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true },
36 retainedSize: { title: WebInspector.UIString("Retained Size"), width: "90px", sortable: true }
116 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
117 count: { title: WebInspector.UIString("#"), width: "45px", sortable: true },
118 shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true },
119 retainedSize: { title: WebInspector.UIString("Retained Size"), width: "90px", sort: "descending", sortable: true }
161 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
162 addedCount: { title: WebInspector.UIString("# New"), width: "72px", sortable: true, sort: "descending" },
163 removedCount: { title: WebInspector.UIString("# Deleted"), width: "72px", sortable: true }
    [all...]
ApplicationCacheItemsView.js 183 columns[0].sortable = true;
185 columns[1].sortable = true;
188 columns[2].sortable = true;
  /external/junit/src/org/junit/internal/runners/
JUnit38ClassRunner.java 16 import org.junit.runner.manipulation.Sortable;
21 public class JUnit38ClassRunner extends Runner implements Filterable, Sortable {
145 if (getTest() instanceof Sortable) {
146 Sortable adapter= (Sortable) getTest();
JUnit4ClassRunner.java 16 import org.junit.runner.manipulation.Sortable;
30 public class JUnit4ClassRunner extends Runner implements Filterable, Sortable {