HomeSort by relevance Sort by last modified time
    Searched defs:itemId (Results 26 - 50 of 87) sorted by null

12 3 4

  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlMessageViewFragment.java 198 final int itemId = item.getItemId();
199 if (itemId == R.id.print_message) {
SelectedConversationsActionMenu.java 119 final int itemId = item.getItemId();
121 Analytics.getInstance().sendMenuItemEvent(Analytics.EVENT_CATEGORY_MENU_ITEM, itemId,
125 if (itemId == R.id.delete) {
128 } else if (itemId == R.id.discard_drafts) {
131 } else if (itemId == R.id.discard_outbox) {
134 } else if (itemId == R.id.archive) {
137 } else if (itemId == R.id.remove_folder) {
141 } else if (itemId == R.id.mute) {
144 } else if (itemId == R.id.report_spam) {
147 } else if (itemId == R.id.mark_not_spam)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
FdnSetting.java 511 final int itemId = item.getItemId();
512 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
EmergencyDialer.java 612 final int itemId = item.getItemId();
613 if (itemId == android.R.id.home) {
MobileNetworkSettings.java     [all...]
  /frameworks/base/core/java/android/view/
MenuInflater.java 301 private int itemId;
385 itemId = a.getResourceId(com.android.internal.R.styleable.MenuItem_id, defaultItemId);
492 MenuItem item = menu.add(groupId, itemId, itemCategoryOrder, itemTitle);
499 SubMenu subMenu = menu.addSubMenu(groupId, itemId, itemCategoryOrder, itemTitle);
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RemotePlaybackClient.java 322 * @param itemId The item id.
335 public void seek(String itemId, long positionMillis, Bundle extras,
337 if (itemId == null) {
338 throw new IllegalArgumentException("itemId must not be null");
344 performItemAction(intent, mSessionId, itemId, extras, callback);
356 * @param itemId The item id.
367 public void getStatus(String itemId, Bundle extras, ItemActionCallback callback) {
368 if (itemId == null) {
369 throw new IllegalArgumentException("itemId must not be null");
374 performItemAction(intent, mSessionId, itemId, extras, callback)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/settings/
CameraSettingsActivity.java 70 int itemId = item.getItemId();
71 if (itemId == android.R.id.home) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberPickerFragment.java 167 final int itemId = item.getItemId();
168 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
  /packages/apps/Dialer/src/com/android/dialer/list/
SpeedDialFragment.java 318 final long itemId = mContactTileAdapter.getItemId(position);
320 Log.d(TAG, "Saving itemId: " + itemId + " for listview child " + i + " Top: "
323 mItemIdTopMap.put(itemId, child.getTop());
324 mItemIdLeftMap.put(itemId, child.getLeft());
354 final long itemId = mContactTileAdapter.getItemId(position);
356 if (containsId(idsInPlace, itemId)) {
361 Integer startTop = mItemIdTopMap.get(itemId);
362 Integer startLeft = mItemIdLeftMap.get(itemId);
385 Log.d(TAG, "Found itemId: " + itemId + " for listview child " + i
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasOutboxSync.java 100 // In EAS 14, we don't send itemId and collectionId in the command
282 private SmartSendInfo(final String itemId, final String collectionId,
284 mItemId = itemId;
293 sb.append("&ItemId=");
357 // Note: itemId and collectionId are the terms used by EAS to refer to the serverId and
359 String itemId = null;
371 itemId = colsMailboxKey[0];
381 // We need either a longId or both itemId (serverId) and collectionId (mailboxId) to
383 if (itemId != null && collectionId != null) {
407 return new SmartSendInfo(itemId, collectionId, reply, requiredAtts)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WifiNetworksBrowseInfo.java 141 Integer itemId = getItemId(network, security);
144 Log.d(TAG, "Network " + itemId + " has SSID=" + network.SSID +
150 row.add(new MenuItem.Builder().id(itemId).title(network.SSID)
165 Integer itemId = mIdToSsidMap.get(key);
166 if (itemId == null) {
167 itemId = generateNextItemId();
168 mIdToSsidMap.put(key, itemId);
170 return itemId;
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
MailPhotoViewController.java 134 final int itemId = item.getItemId();
136 Analytics.getInstance().sendMenuItemEvent(Analytics.EVENT_CATEGORY_MENU_ITEM, itemId,
139 if (itemId == android.R.id.home) {
142 } else if (itemId == R.id.menu_save) { // save the current photo
144 } else if (itemId == R.id.menu_save_all) { // save all of the photos
146 } else if (itemId == R.id.menu_share) { // share the current photo
148 } else if (itemId == R.id.menu_share_all) { // share all of the photos
150 } else if (itemId == R.id.menu_print) { // print the current photo
152 } else if (itemId == R.id.menu_download_again) { // redownload the current photo
154 } else if (itemId == R.id.attachment_extra_option1)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
SupportMenuInflater.java 285 private int itemId;
369 itemId = a.getResourceId(R.styleable.MenuItem_android_id, defaultItemId);
479 setItem(menu.add(groupId, itemId, itemCategoryOrder, itemTitle));
484 SubMenu subMenu = menu.addSubMenu(groupId, itemId, itemCategoryOrder, itemTitle);
  /packages/apps/Calendar/src/com/android/calendar/
SearchActivity.java 278 final int itemId = item.getItemId();
279 if (itemId == R.id.action_today) {
284 } else if (itemId == R.id.action_search) {
286 } else if (itemId == R.id.action_settings) {
289 } else if (itemId == android.R.id.home) {
AllInOneActivity.java 760 final int itemId = item.getItemId();
761 if (itemId == R.id.action_refresh) {
764 } else if (itemId == R.id.action_today) {
769 } else if (itemId == R.id.action_create_event) {
781 } else if (itemId == R.id.action_select_visible_calendars) {
785 } else if (itemId == R.id.action_settings)
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
InCallActivity.java 333 final int itemId = item.getItemId();
334 if (itemId == android.R.id.home) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractConversationViewFragment.java 330 final int itemId = item.getItemId();
331 if (itemId == R.id.inside_conversation_unread) {
334 } else if (itemId == R.id.show_original) {
337 } else if (itemId == R.id.print_all) {
  /frameworks/base/core/java/android/widget/
AdapterViewAnimator.java 223 long itemId;
225 ViewAndMetaData(View view, int relativeIndex, int adapterPosition, long itemId) {
229 this.itemId = itemId;
549 long itemId = mAdapter.getItemId(adapterPosition);
560 adapterPosition, itemId));
657 viewData.itemId);
    [all...]
RemoteViewsAdapter.java 527 long itemId;
529 public RemoteViewsIndexMetaData(RemoteViews v, long itemId) {
530 set(v, itemId);
534 itemId = id;
608 public void insert(int position, RemoteViews v, long itemId,
629 metaData.set(v, itemId);
631 mIndexMetaData.put(position, new RemoteViewsIndexMetaData(v, itemId));
    [all...]
  /packages/apps/Settings/src/com/android/settings/users/
UserSettings.java 292 final int itemId = item.getItemId();
293 if (itemId == MENU_REMOVE_USER) {
296 } else if (itemId == MENU_ADD_ON_LOCKSCREEN) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
CustomInputStyleSettingsFragment.java 628 final int itemId = item.getItemId();
629 if (itemId == R.id.action_add_style) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winsync.h 73 ID_PARAMETER_PAIR itemId;
  /frameworks/base/core/java/android/transition/
Transition.java 156 private static final String MATCH_ITEM_ID_STR = "itemId";
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
DialpadFragment.java     [all...]

Completed in 479 milliseconds

12 3 4