Home
last modified time | relevance | path

Searched defs:sortable (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
DDetailedHeapshotView.js34 …object: { title: WebInspector.UIString("Object"), disclosure: true, sortable: true, sort: "ascendi… property
35 … shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true }, property
36 … retainedSize: { title: WebInspector.UIString("Retained Size"), width: "90px", sortable: true } property
116 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true }, property
117 count: { title: WebInspector.UIString("#"), width: "45px", sortable: true }, property
118 … shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true }, property
119 … title: WebInspector.UIString("Retained Size"), width: "90px", sort: "descending", sortable: true } property
161 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true }, property
162 …addedCount: { title: WebInspector.UIString("# New"), width: "72px", sortable: true, sort: "descend… property
163 removedCount: { title: WebInspector.UIString("# Deleted"), width: "72px", sortable: true }, property
[all …]
DProfileView.js38 …self": { title: WebInspector.UIString("Self"), width: "72px", sort: "descending", sortable: true }, property
39 … "total": { title: WebInspector.UIString("Total"), width: "72px", sortable: true }, property
40 … "average": { title: WebInspector.UIString("Average"), width: "72px", sortable: true }, property
41 … "calls": { title: WebInspector.UIString("Calls"), width: "54px", sortable: true }, property
42 … "function": { title: WebInspector.UIString("Function"), disclosure: true, sortable: true } }; property
DHeapSnapshotView.js74 cons: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true }, property
75 count: { title: WebInspector.UIString("Count"), width: "54px", sortable: true }, property
76 … size: { title: WebInspector.UIString("Size"), width: "72px", sort: "descending", sortable: true }, property
78 countDelta: { title: WebInspector.UIString("\xb1 Count"), width: "72px", sortable: true }, property
79 sizeDelta: { title: WebInspector.UIString("\xb1 Size"), width: "72px", sortable: true } property
/external/webkit/Source/WebCore/html/
DDataGridColumn.h42 …t String& columnID, const String& label, const String& type, bool primary, unsigned short sortable) in create()
56 unsigned short sortable() const { return m_sortable; } in sortable() function
57 void setSortable(unsigned short sortable) { m_sortable = sortable; columnChanged(); } in setSortable()
83 …t String& columnID, const String& label, const String& type, bool primary, unsigned short sortable) in DataGridColumn()
DHTMLDataGridColElement.cpp110 unsigned short HTMLDataGridColElement::sortable() const in sortable() function in WebCore::HTMLDataGridColElement
117 void HTMLDataGridColElement::setSortable(unsigned short sortable) in setSortable()
DDataGridColumnList.cpp65 …d(const String& id, const String& label, const String& type, bool primary, unsigned short sortable) in add()
/external/junit/src/org/junit/runner/manipulation/
DSorter.java38 Sortable sortable = (Sortable) object; in apply() local