Home
last modified time | relevance | path

Searched refs:sortString (Results 1 – 2 of 2) sorted by relevance

/external/autotest/frontend/client/src/autotest/common/table/
DDataSource.java46 public static SortSpec fromString(String sortString) { in fromString() argument
47 if (sortString.charAt(0) == '-') { in fromString()
48 return new SortSpec(sortString.substring(1), SortDirection.DESCENDING); in fromString()
50 return new SortSpec(sortString, SortDirection.ASCENDING); in fromString()
/external/autotest/frontend/client/src/autotest/tko/
DTableView.java493 private void handleSortString(String sortString) { in handleSortString() argument
495 String[] components = sortString.split(","); in handleSortString()