Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/pm/
DUserInfo.java173 public String iconPath; field in UserInfo
237 public UserInfo(int id, String name, String iconPath, int flags) { in UserInfo() argument
238 this(id, name, iconPath, flags, getDefaultUserType(flags)); in UserInfo()
241 public UserInfo(int id, String name, String iconPath, int flags, String userType) { in UserInfo() argument
246 this.iconPath = iconPath; in UserInfo()
406 iconPath = orig.iconPath; in UserInfo()
461 dest.writeString8(iconPath); in writeToParcel()
490 iconPath = source.readString8(); in UserInfo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBadgedImageView.java98 Path iconPath = PathParser.createPathFromPathData( in BadgedImageView() local
100 mDotRenderer = new DotRenderer(mBubbleBitmapSize, iconPath, DEFAULT_PATH_SIZE); in BadgedImageView()
174 void drawDot(Path iconPath) { in drawDot() argument
175 mDotRenderer = new DotRenderer(mBubbleBitmapSize, iconPath, DEFAULT_PATH_SIZE); in drawDot()
DBubbleViewInfoTask.java186 Path iconPath = PathParser.createPathFromPathData( in populate() local
194 iconPath.transform(matrix); in populate()
195 info.dotPath = iconPath; in populate()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DUserManagerServiceUserInfoTest.java236 assertEquals("Icon path not preserved", one.iconPath, two.iconPath); in assertUserInfoEquals()
/frameworks/base/services/core/java/com/android/server/pm/
DUserManagerService.java844 userInfo.iconPath = null; in getProfilesLU()
1678 String iconPath; in getUserIcon() local
1695 if (targetUserInfo.iconPath == null) { in getUserIcon()
1698 iconPath = targetUserInfo.iconPath; in getUserIcon()
1703 new File(iconPath), ParcelFileDescriptor.MODE_READ_ONLY); in getUserIcon()
2469 info.iconPath = file.getAbsolutePath(); in writeBitmapLP()
2867 if (userInfo.iconPath != null) { in writeUserLP()
2868 serializer.attribute(null, ATTR_ICON_PATH, userInfo.iconPath); in writeUserLP()
3023 String iconPath = null; in readUserLP() local
3066 iconPath = parser.getAttributeValue(null, ATTR_ICON_PATH); in readUserLP()
[all …]
/frameworks/base/services/core/java/com/android/server/policy/
DLegacyGlobalActions.java549 Drawable icon = user.iconPath != null ? Drawable.createFromPath(user.iconPath)
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsDialog.java1251 Drawable icon = user.iconPath != null ? Drawable.createFromPath(user.iconPath)