Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/quicklaunch/
DShortcutPreference.java46 private char mShortcut; field in ShortcutPreference
65 mShortcut = shortcut; in ShortcutPreference()
71 return mShortcut; in getShortcut()
75 if (shortcut != mShortcut) { in setShortcut()
76 mShortcut = shortcut; in setShortcut()
108 shortcutView.setText(String.valueOf(mShortcut)); in onBindView()
145 char other = ((ShortcutPreference) another).mShortcut; in compareTo()
146 if (Character.isDigit(mShortcut) && Character.isLetter(other)) return 1; in compareTo()
147 else if (Character.isDigit(other) && Character.isLetter(mShortcut)) return -1; in compareTo()
148 else return mShortcut - other; in compareTo()