OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShortcutPreference
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Settings/src/com/android/settings/quicklaunch/
QuickLaunchSettings.java
84
private SparseArray<
ShortcutPreference
> mShortcutToPreference;
100
mShortcutToPreference = new SparseArray<
ShortcutPreference
>();
171
private void showClearDialog(
ShortcutPreference
pref) {
196
if (!(preference instanceof
ShortcutPreference
)) return false;
199
ShortcutPreference
pref = (
ShortcutPreference
) preference;
211
if (!(pref instanceof
ShortcutPreference
)) return false;
212
showClearDialog((
ShortcutPreference
) pref);
245
private
ShortcutPreference
getOrCreatePreference(char shortcut) {
246
ShortcutPreference
pref = mShortcutToPreference.get(shortcut)
[
all
...]
ShortcutPreference.java
31
public class
ShortcutPreference
extends Preference implements Comparable<Preference> {
35
// These static fields are used across all instances of
ShortcutPreference
.
36
// There will be many
ShortcutPreference
instances (~36 for US).
49
public
ShortcutPreference
(Context context, char shortcut) {
53
// Init statics. This should only happen for the first
ShortcutPreference
created,
142
if (!(another instanceof
ShortcutPreference
)) return super.compareTo(another);
145
char other = ((
ShortcutPreference
) another).mShortcut;
Completed in 463 milliseconds