Home | History | Annotate | Download | only in tileimpl

Lines Matching defs:mHost

4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use mHost file
50 private final QSTileHost mHost;
53 mHost = host;
68 return new WifiTile(mHost);
70 return new BluetoothTile(mHost);
72 return new CellularTile(mHost);
74 return new DndTile(mHost);
76 return new ColorInversionTile(mHost);
78 return new AirplaneModeTile(mHost);
80 return new WorkModeTile(mHost);
82 return new RotationLockTile(mHost);
84 return new FlashlightTile(mHost);
86 return new LocationTile(mHost);
88 return new CastTile(mHost);
90 return new HotspotTile(mHost);
92 return new UserTile(mHost);
94 return new BatterySaverTile(mHost);
96 return new DataSaverTile(mHost);
98 return new NightDisplayTile(mHost);
100 return new NfcTile(mHost);
104 if (tileSpec.startsWith(IntentTile.PREFIX)) return IntentTile.create(mHost, tileSpec);
105 if (tileSpec.startsWith(CustomTile.PREFIX)) return CustomTile.create(mHost, tileSpec);
110 return new GarbageMonitor.MemoryTile(mHost);
121 Context context = new ContextThemeWrapper(mHost.getContext(), R.style.qs_theme);