HomeSort by relevance Sort by last modified time
    Searched defs:CustomTile (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSTileHost.java 38 import com.android.systemui.qs.external.CustomTile;
189 if (tile != null && (!(tile instanceof CustomTile)
190 || ((CustomTile) tile).getUser() == currentUser)) {
194 if (!(tile instanceof CustomTile) && mCurrentUser != currentUser) {
250 newSpecs.add(0, CustomTile.toSpec(tile));
256 newSpecs.remove(CustomTile.toSpec(tile));
265 if (!tileSpec.startsWith(CustomTile.PREFIX)) continue;
267 ComponentName component = CustomTile.getComponentFromSpec(tileSpec);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
CustomTile.java 52 public class CustomTile extends QSTileImpl<State> implements TileChangeListener {
77 private CustomTile(QSTileHost host, String action) {
351 public static CustomTile create(QSTileHost host, String spec) {
359 return new CustomTile(host, action);

Completed in 339 milliseconds