Searched refs:TestLiveWallpaperInfo (Results 1 – 2 of 2) sorted by relevance
34 public class TestLiveWallpaperInfo extends LiveWallpaperInfo { class36 public static final Parcelable.Creator<TestLiveWallpaperInfo> CREATOR =37 new Parcelable.Creator<TestLiveWallpaperInfo>() {39 public TestLiveWallpaperInfo createFromParcel(Parcel in) {40 return new TestLiveWallpaperInfo(in);43 public TestLiveWallpaperInfo[] newArray(int size) {44 return new TestLiveWallpaperInfo[size];60 public TestLiveWallpaperInfo(int pixelColor) { in TestLiveWallpaperInfo() method in TestLiveWallpaperInfo65 public TestLiveWallpaperInfo(int pixelColor, android.app.WallpaperInfo info, String id) { in TestLiveWallpaperInfo() method in TestLiveWallpaperInfo75 private TestLiveWallpaperInfo(Parcel in) { in TestLiveWallpaperInfo() method in TestLiveWallpaperInfo[all …]
58 import com.android.wallpaper.testing.TestLiveWallpaperInfo;94 private TestLiveWallpaperInfo mTestLiveWallpaper;125 mTestLiveWallpaper = new TestLiveWallpaperInfo(TestStaticWallpaperInfo.COLOR_DEFAULT); in setUp()