OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GalSortKey
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
ExchangeDirectoryProviderTests.java
151
* assumption, we should enforce it in the ExchangeDirectoryProvider.
GalSortKey
class or in the compare function.
154
final ExchangeDirectoryProvider.
GalSortKey
lhs = new ExchangeDirectoryProvider.
GalSortKey
("A", 2);
155
final ExchangeDirectoryProvider.
GalSortKey
rhs = new ExchangeDirectoryProvider.
GalSortKey
("A", 1);
163
final ExchangeDirectoryProvider.
GalSortKey
lhs = new ExchangeDirectoryProvider.
GalSortKey
("A", 1);
164
final ExchangeDirectoryProvider.
GalSortKey
rhs = new ExchangeDirectoryProvider.
GalSortKey
("A", 2);
172
final ExchangeDirectoryProvider.
GalSortKey
lhs = new ExchangeDirectoryProvider.GalSortKey("A", 1)
[
all
...]
/packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java
433
final TreeMap<
GalSortKey
, Object[]> sortedResultsMap =
434
new TreeMap<
GalSortKey
, Object[]>(new NameComparator());
514
sortedResultsMap.put(new
GalSortKey
(sortName, id), row.clone());
536
sortedResultsMap.put(new
GalSortKey
(sortName, id), row.clone());
657
protected static class
GalSortKey
{
661
public
GalSortKey
(final String sortName, final int id) {
670
protected static class NameComparator implements Comparator<
GalSortKey
> {
680
public int compare(final
GalSortKey
lhs, final
GalSortKey
rhs) {
Completed in 1168 milliseconds