HomeSort by relevance Sort by last modified time
    Searched refs:avatar (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/chrome/browser/managed_mode/
managed_user_sync_service_unittest.cc 90 const std::string& avatar);
175 const char kAvatar2[] = "chromeos-avatar-index:0";
176 const char kAvatar3[] = "chromeos-avatar-index:20";
178 const char kAvatar2[] = "chrome-avatar-index:0";
179 const char kAvatar3[] = "chrome-avatar-index:20";
230 std::string avatar; local
231 EXPECT_TRUE(managed_user->GetString(kChromeAvatarKey, &avatar));
232 EXPECT_EQ(kAvatar2, avatar);
244 std::string avatar; local
245 EXPECT_TRUE(managed_user->GetString(kChromeAvatarKey, &avatar));
258 std::string avatar; local
277 int avatar = 100; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view.cc 75 // The avatar label can just be there if there is also an avatar button.
88 gfx::Image avatar; local
93 avatar = rb.GetImageNamed(browser_view_->GetGuestIconResourceID());
95 avatar = rb.GetImageNamed(browser_view_->GetOTRIconResourceID());
100 // The taskbar badge should be the profile avatar, not the OTR avatar.
115 &avatar,
122 avatar_button_->SetAvatarIcon(avatar, is_rectangle);
127 // For popups and panels which don't have the avatar button, we stil
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardMultiUserSelectorView.java 140 final KeyguardMultiUserAvatar avatar = (KeyguardMultiUserAvatar) v;
141 if (avatar.isClickable()) { // catch race conditions
142 if (mActiveUserAvatar == avatar) {
150 avatar.lockPressed(true);
154 mActiveUserAvatar = avatar;
157 .switchUser(avatar.getUserInfo().id);
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 135 Processes requests to edit contact's avatar. GET is used to fetch
136 a page that displays the contact's current avatar and allows the user
137 to specify a file containing a new avatar image. POST is used to
138 submit the form which will change the contact's avatar.
145 'avatar': contact.avatar,
155 #avatar = images.resize(self.request.get("avatar"), 128, 128)
156 avatar = self.request.get("avatar")
    [all...]
web_services.py 375 contact['a'] = host_url + "/avatar?id=" + str(obj.key().id())
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 221 * Download the avatar image from the server.
223 * @param avatarUrl the URL pointing to the avatar image
224 * @return a byte array with the raw JPEG avatar image
227 // If there is no avatar, we're done
233 Log.i(TAG, "Downloading avatar: " + avatarUrl);
234 // Request the avatar image from the server, and create a bitmap
241 final Bitmap avatar = BitmapFactory.decodeStream(connection.getInputStream(), local
246 // not resizing the avatar - we assume that the image we get from
248 Log.i(TAG, "Converting avatar to JPEG");
250 avatar.getWidth() * avatar.getHeight() * 4)
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 33 avatar = db.BlobProperty() variable in class:Contact
  /external/chromium_org/chrome/browser/chromeos/login/managed/
locally_managed_user_creation_screen.cc 220 std::string avatar; local
225 user_info->GetString(ManagedUserSyncService::kChromeOsAvatar, &avatar);
240 ManagedUserSyncService::GetAvatarIndex(avatar, &avatar_index);
264 std::string avatar; local
269 user_info->GetString(ManagedUserSyncService::kChromeOsAvatar, &avatar);
284 ManagedUserSyncService::GetAvatarIndex(avatar, &avatar_index);
457 // Copy for passing to WebUI, contains only id, name and avatar URL.
  /external/chromium_org/chrome/browser/resources/options/
managed_user_import.css 40 #select-avatar-grid {
  /external/chromium_org/chrome/browser/profiles/
profile_info_util.cc 24 // A CanvasImageSource that draws a sized and positioned avatar with an
39 AvatarImageSource(gfx::ImageSkia avatar,
59 AvatarImageSource::AvatarImageSource(gfx::ImageSkia avatar,
69 // Resize the avatar to the desired square size.
71 avatar, skia::ImageOperations::RESIZE_BEST, gfx::Size(size_, size_));
78 // Center the avatar horizontally.
83 // Draw the avatar centered on the canvas.
86 // Draw the avatar on the bottom center of the canvas, leaving 1px below.
93 // Draw a gray border on the inside of the avatar.
112 // Give the avatar an etched look by drawing a highlight on the bottom an
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_util.cc 139 // Returns the avatar icon for |profile|.
233 // |profile|'s avatar.
249 const GdkPixbuf* avatar = GetAvatarIcon(profile); local
250 if (avatar) {
251 AddEmblem(avatar, icon_16);
252 AddEmblem(avatar, icon_32);
253 AddEmblem(avatar, icon_64);
593 const GdkPixbuf* avatar = GetAvatarIcon(profile); local
594 if (avatar) AddEmblem(avatar, icon)
    [all...]
browser_titlebar.cc 77 // There are 2 px on each side of the avatar (between the frame border and
328 // Create the Avatar button and listen for notifications. It must always be
809 // Use a clickable avatar
854 gfx::Image avatar; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
MessagingNotification.java 851 Bitmap avatar = null; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientListActivity.java 146 QuickContactBadge badge = (QuickContactBadge)listItemView.findViewById(R.id.avatar);
ConversationListItem.java 89 mAvatarView = (QuickContactBadge) findViewById(R.id.avatar);
MessageListItem.java 141 mAvatar = (QuickContactDivot) findViewById(R.id.avatar);
312 // Here we're avoiding reseting the avatar to the empty avatar when we're rebinding
318 // will set the avatar to the generic avatar then when this method is called again
319 // from onPduLoaded, it will reset to the real avatar. This test is to avoid that flash.
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettings.java 225 Drawable avatar = null;
228 avatar = new BitmapDrawable(mContext.getResources(), rawAvatar);
230 avatar = mContext.getResources().getDrawable(R.drawable.ic_qs_default_user);
251 return new Pair<String, Drawable>(name, avatar);
340 iv.setImageDrawable(us.avatar);
    [all...]
QuickSettingsModel.java 89 Drawable avatar; field in class:QuickSettingsModel.UserState
368 void setUserTileInfo(String name, Drawable avatar) {
370 mUserState.avatar = avatar;
    [all...]

Completed in 6949 milliseconds