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

12 3 4 5

  /external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
AutofillPopup.java 137 int itemId = suggestions[i].mUniqueId;
138 if (itemId > 0 || itemId == ITEM_ID_AUTOCOMPLETE_ENTRY ||
139 itemId == ITEM_ID_PASSWORD_ENTRY || itemId == ITEM_ID_DATA_LIST_ENTRY) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorCrop.java 117 private void changeCropAspect(int itemId) {
118 AspectInfo info = sAspects.get(itemId);
120 throw new IllegalArgumentException("Invalid resource ID: " + itemId);
122 if (itemId == R.id.crop_menu_original) {
124 } else if (itemId == R.id.crop_menu_none) {
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlViewerActivity.java 133 final int itemId = item.getItemId();
134 if (itemId == android.R.id.home) {
137 } else if (itemId == R.id.settings) {
139 } else if (itemId == R.id.help_info_menu_item) {
141 } else if (itemId == R.id.feedback_menu_item) {
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetService.java 85 final int itemId = R.layout.widget_item;
86 RemoteViews rv = new RemoteViews(mContext.getPackageName(), itemId);
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsAdditionalCallOptions.java 88 final int itemId = item.getItemId();
89 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
ListViewRemovalAnimation.java 185 long itemId = mAdapter.getItemId(position);
186 mItemIdTopMap.put(itemId, child.getTop());
202 long itemId = mAdapter.getItemId(position);
203 Integer startTop = mItemIdTopMap.get(itemId);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 449 public Item(int itemId, int layoutResourceId) {
450 mItemId = itemId;
479 public Heading(int itemId, String label) {
480 super(itemId, R.layout.game_controller_input_heading);
497 public TextColumn(int itemId, String label) {
498 super(itemId, R.layout.game_controller_input_text_column);
  /packages/apps/Exchange/src/com/android/exchange/
EasOutboxService.java 235 OriginalMessageInfo(long refId, String itemId, String collectionId) {
237 mItemId = itemId;
245 sb.append("&ItemId=");
262 // Note: itemId and collectionId are the terms used by EAS to refer to the serverId and
264 String itemId = null;
279 itemId = cols[0];
289 // We need either a longId or both itemId (serverId) and collectionId (mailboxId) to process
291 if (itemId != null && collectionId != null){
292 return new OriginalMessageInfo(refId, itemId, collectionId);
424 // In EAS 14, we don't send itemId and collectionId in the comman
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/service/
EasOutboxSyncHandler.java 121 private SmartSendInfo(final String itemId, final String collectionId, final boolean isReply,
123 mItemId = itemId;
132 sb.append("&ItemId=");
196 // Note: itemId and collectionId are the terms used by EAS to refer to the serverId and
198 String itemId = null;
213 itemId = cols[0];
223 // We need either a longId or both itemId (serverId) and collectionId (mailboxId) to
225 if (itemId != null && collectionId != null) {
249 return new SmartSendInfo(itemId, collectionId, reply, requiredAtts);
437 // In EAS 14, we don't send itemId and collectionId in the comman
    [all...]
  /frameworks/base/core/java/android/widget/
ShareActionProvider.java 290 final int itemId = item.getItemId();
291 Intent launchIntent = dataModel.chooseActivity(itemId);
RemoteViewsAdapter.java 534 long itemId;
536 public RemoteViewsIndexMetaData(RemoteViews v, long itemId) {
537 set(v, itemId);
541 itemId = id;
615 public void insert(int position, RemoteViews v, long itemId,
636 metaData.set(v, itemId);
638 mIndexMetaData.put(position, new RemoteViewsIndexMetaData(v, itemId));
    [all...]
AdapterViewAnimator.java 218 long itemId;
220 ViewAndMetaData(View view, int relativeIndex, int adapterPosition, long itemId) {
224 this.itemId = itemId;
544 long itemId = mAdapter.getItemId(adapterPosition);
555 adapterPosition, itemId));
652 viewData.itemId);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ShareActionProvider.java 313 final int itemId = item.getItemId();
314 Intent launchIntent = dataModel.chooseActivity(itemId);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
FramedTextButton.java 61 public void setTextFrom(int itemId) {
62 switch (itemId) {
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 270 long itemId = mAdapter.getItemId(position);
272 mItemIdTopMap.put(itemId, child.getTop());
290 long itemId = mAdapter.getItemId(position);
291 Integer startTop = mItemIdTopMap.get(itemId);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MailActionBarView.java 468 final int itemId = menuItem.getItemId();
472 if (itemId == R.id.archive || itemId == R.id.remove_folder) {
474 } else if (itemId == R.id.delete || itemId == R.id.discard_drafts) {
483 final int itemId = menuItem.getItemId();
487 if (itemId == R.id.archive || itemId == R.id.remove_folder) {
511 } else if (itemId == R.id.delete || itemId == R.id.discard_drafts)
    [all...]
  /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) {
  /frameworks/base/core/java/android/view/
MenuInflater.java 260 private int itemId;
344 itemId = a.getResourceId(com.android.internal.R.styleable.MenuItem_id, defaultItemId);
451 setItem(menu.add(groupId, itemId, itemCategoryOrder, itemTitle));
456 SubMenu subMenu = menu.addSubMenu(groupId, itemId, itemCategoryOrder, itemTitle);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
SupportMenuInflater.java 268 private int itemId;
352 itemId = a.getResourceId(R.styleable.MenuItem_android_id, defaultItemId);
462 setItem(menu.add(groupId, itemId, itemCategoryOrder, itemTitle));
467 SubMenu subMenu = menu.addSubMenu(groupId, itemId, itemCategoryOrder, itemTitle);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
HomeXLarge.java 113 public boolean onNavigationItemSelected(int itemPosition, long itemId) {
  /frameworks/base/core/java/android/transition/
Transition.java 385 long itemId = parent.getItemIdAtPosition(position);
386 start = startValues.itemIdValues.get(itemId);
387 endItemIdCopy.remove(itemId);
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
LeafNode.java 321 * @param itemId The id of the item
325 public void deleteItem(String itemId)
329 items.add(itemId);
  /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/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 107 public boolean isItemSelected(Path itemId) {
108 return mInverseSelection ^ mClickedSet.contains(itemId);
  /packages/apps/Stk/src/com/android/stk/
StkMenuActivity.java 324 private void sendResponse(int resId, int itemId, boolean help) {
328 args.putInt(StkAppService.MENU_SELECTION, itemId);

Completed in 1208 milliseconds

12 3 4 5