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

  /external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view.cc 65 // The avatar label can just be there if there is also an avatar button.
78 gfx::Image avatar; local
82 avatar = rb.GetImageNamed(browser_view_->GetOTRIconResourceID());
93 avatar = cache.GetAvatarIconOfProfileAtIndex(index);
97 avatar_button_->SetAvatarIcon(avatar, is_gaia_picture);
102 // For popups and panels which don't have the avatar button, we still
106 AvatarMenuModel::ShouldShowAvatarMenu() ? &avatar : NULL);
  /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/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
333 // Create the Avatar button and listen for notifications. It must always be
857 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 230 Drawable avatar = null;
233 avatar = new BitmapDrawable(mContext.getResources(), rawAvatar);
235 avatar = mContext.getResources().getDrawable(R.drawable.ic_qs_default_user);
256 return new Pair<String, Drawable>(name, avatar);
337 iv.setImageDrawable(us.avatar);
    [all...]
QuickSettingsModel.java 89 Drawable avatar; field in class:QuickSettingsModel.UserState
334 void setUserTileInfo(String name, Drawable avatar) {
336 mUserState.avatar = avatar;

Completed in 308 milliseconds