Searched defs:item (Results 126 - 142 of 142) sorted by relevance

123456

/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java160 final MenuItemImpl item = mExpandedMenuPresenter.mCurrentExpandedItem;
161 if (item != null) {
162 item.collapseActionView();
379 // No limit to the item count; use whatever will fit.
460 // No limit to the item count; use whatever will fit.
499 final MenuItemImpl item = mExpandedMenuPresenter == null ? null :
501 if (item != null) {
502 item.collapseActionView();
1334 final MenuItem item = mOptionsMenu.findItem(state.expandedMenuItemId);
1335 if (item !
1628 expandItemActionView(MenuBuilder menu, MenuItemImpl item) argument
1655 collapseItemActionView(MenuBuilder menu, MenuItemImpl item) argument
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp363 jstring item = jstring(env->GetObjectArrayElement(excludedDeviceNames, i)); local
364 const char* deviceNameChars = env->GetStringUTFChars(item, NULL);
366 env->ReleaseStringUTFChars(item, deviceNameChars);
367 env->DeleteLocalRef(item);
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselRS.java545 ScriptField_ProgramStore_s.Item item = mProgramStoresCard.get(n);
546 if (item == null) {
547 item = new ScriptField_ProgramStore_s.Item();
549 item.programStore = programStore;
550 mProgramStoresCard.set(item, n, false);
686 ScriptField_Card.Item item;
688 item = mCards.get(n);
691 if (DBG) Log.v(TAG, "getCard(): no item at index " + n);
692 item = null;
694 return item;
706 setCard(int n, ScriptField_Card.Item item) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java1235 * This hook is called whenever an item in your options menu is selected.
1237 * processing happen (calling the item's Runnable or sending a message to
1245 * @param item The menu item that was selected.
1252 public boolean onOptionsItemSelected(MenuItem item) { argument
1258 * the menu with the back/menu button, or when an item is selected).
1270 * the view (or item inside the view for {@link AdapterView} subclasses,
1274 * item has been selected.
1313 * This hook is called whenever an item in a context menu is selected. The
1315 * happen (calling the item'
1329 onContextItemSelected(MenuItem item) argument
1575 performOptionsItemSelected(MenuItem item) argument
1591 performContextItemSelected(MenuItem item) argument
[all...]
H A DFragmentManager.java1987 public boolean dispatchOptionsItemSelected(MenuItem item) { argument
1992 if (f.performOptionsItemSelected(item)) {
2001 public boolean dispatchContextItemSelected(MenuItem item) { argument
2006 if (f.performContextItemSelected(item)) {
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarImplBase.java853 public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { argument
855 return mCallback.onActionItemClicked(this, item);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarView.java152 final MenuItemImpl item = mExpandedMenuPresenter.mCurrentExpandedItem;
153 if (item != null) {
154 item.collapseActionView();
351 // No limit to the item count; use whatever will fit.
430 // No limit to the item count; use whatever will fit.
471 final MenuItemImpl item = mExpandedMenuPresenter == null ? null :
473 if (item != null) {
474 item.collapseActionView();
1182 final SupportMenuItem item =
1184 if (item !
1428 expandItemActionView(MenuBuilder menu, MenuItemImpl item) argument
1462 collapseItemActionView(MenuBuilder menu, MenuItemImpl item) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java981 public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { argument
986 return cb.onMenuItemSelected(panel.featureId, item);
2568 public boolean onActionItemClicked(ActionMode mode, MenuItem item) { argument
2569 return mWrapped.onActionItemClicked(mode, item);
3311 * Whether an item's action has been performed. This happens in obvious
3312 * scenarios (user clicks on menu item), but can also happen with
3601 * <li> Calls back to the callback's onMenuItemSelected when an item is
3642 public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { argument
3645 && callback.onMenuItemSelected(mFeatureId, item);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp585 const String16 item16("item");
764 const String16 item16("item");
1245 "Tag <item> 'format' attribute value \"%s\" not valid\n",
1252 "A 'type' attribute is required for <item>\n");
1401 "Found tag %s where item is expected\n",
1456 "Tag <%s> can not appear inside <%s>, only <item>\n",
1490 "Illegal 'quantity' attribute is <item> inside <plurals>\n");
1495 "A 'quantity' attribute is required for <item> inside <plurals>\n");
1504 "A 'name' attribute is required for <item>\n");
1593 "Found text \"%s\" where item ta
3872 const Item* item = getItem(resID, attrID); local
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1148 * default is the first item in the popup suggestions list. Otherwise, it is
1480 // Clear the checked item.
1485 // Checked item would be -1 if the adapter has not
1639 * When an item in the suggestions list has been clicked, create a chip from the
1640 * contact information of the selected item.
1670 private RecipientEntry createValidatedEntry(RecipientEntry item) { argument
1671 if (item == null) {
1678 String destination = item.getDestination();
1679 if (!isPhoneQuery() && item.getContactId() == RecipientEntry.GENERATED_CONTACT) {
1680 entry = RecipientEntry.constructGeneratedEntry(item
1744 onActionItemClicked(ActionMode mode, MenuItem item) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java484 * the current item and the specified item.
486 * @param item Item index to select
488 public void setCurrentItem(int item) { argument
490 setCurrentItemInternal(item, !mFirstLayout, false);
496 * @param item Item index to select
497 * @param smoothScroll True to smoothly scroll to the new item, false to transition immediately
499 public void setCurrentItem(int item, boolean smoothScroll) { argument
501 setCurrentItemInternal(item, smoothScroll, false);
508 void setCurrentItemInternal(int item, boolea argument
512 setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) argument
555 scrollToItem(int item, boolean smoothScroll, int velocity, boolean dispatchSelected) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivity.java2277 * as pulling down the notification pane and touching an item there.
2555 public boolean onMenuItemSelected(int featureId, MenuItem item) { argument
2556 CharSequence titleCondensed = item.getTitleCondensed();
2566 if (onOptionsItemSelected(item)) {
2569 if (mFragments.dispatchOptionsItemSelected(item)) {
2572 if (item.getItemId() == android.R.id.home && mActionBar != null &&
2586 if (onContextItemSelected(item)) {
2589 return mFragments.dispatchContextItemSelected(item);
2693 * This hook is called whenever an item in your options menu is selected.
2695 * processing happen (calling the item'
2710 onOptionsItemSelected(MenuItem item) argument
2926 onContextItemSelected(MenuItem item) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java1801 Item item = clipData.getItemAt(i);
1802 content.append(item.coerceToStyledText(mTextView.getContext()));
2562 // Add "Add to dictionary" item if there is a span with the misspelled flag
2579 // Delete item
2813 public boolean onActionItemClicked(ActionMode mode, MenuItem item) { argument
2815 mCustomSelectionActionModeCallback.onActionItemClicked(mode, item)) {
2818 return mTextView.onTextContextMenuItem(item.getItemId());
H A DAbsListView.java107 * notification is received and only if the last item is already visible
170 * Show the first item
175 * Force the selected item to be on somewhere on the screen
180 * Show the last item
491 * find a checked item with a stable ID that moved position across
492 * a data set change. If the item isn't found it will be unselected.
669 * Track the item count from the last time we handled a data change.
736 * The top-level view of a list item can implement this interface to allow
737 * itself to modify the bounds of the selection shown for that item.
741 * Called to allow the list item t
6057 onActionItemClicked(ActionMode mode, MenuItem item) argument
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3112 const Res_value* item = local
3133 bestValue = item;
5201 // starting size is header + first item (number of types in map)
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2340 public boolean onMenuItemClick(MenuItem item) { argument
2341 return onTextContextMenuItem(item.getItemId());
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java2296 WebHistoryItemClassic item = list.getItemAtIndex(i);
2297 if (null == item) {
2299 // need to determine how item got set to null
2300 Log.w(LOGTAG, "saveState: Unexpected null history item.");
2303 byte[] data = item.getFlattenedData();
2306 // item. And we will fail to rebuild the history list without
2521 // the item and thus our history list cannot be rebuilt.
2524 WebHistoryItem item = new WebHistoryItemClassic(data);
2525 list.addHistoryItem(item);
4889 // on the AutoFill item bein
8194 private Container item(int position) { method in class:WebViewClassic.InvokeListBox.MyArrayListAdapter
[all...]

Completed in 655 milliseconds

123456