Searched refs:item (Results 301 - 325 of 364) sorted by relevance

<<1112131415

/frameworks/native/libs/gui/
H A DIGraphicBufferConsumer.cpp298 BufferItem item; local
301 status_t result = acquireBuffer(&item, presentWhen, maxFrameNumber);
302 status_t err = reply->write(item);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1388 * default is the selected item (if one is selected), or the first item, in the popup
1440 // Nothing is selected; use the first item
1723 // Clear the checked item.
1728 // Checked item would be -1 if the adapter has not
1911 * When an item in the suggestions list has been clicked, create a chip from the
1912 * contact information of the selected item.
1948 private RecipientEntry createValidatedEntry(RecipientEntry item) { argument
1949 if (item == null) {
1956 String destination = item
1997 onActionItemClicked(ActionMode mode, MenuItem item) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DDetailsOverviewRowPresenter.java39 * Renders a {@link DetailsOverviewRow} to display an overview of an item.
546 protected void onBindRowViewHolder(RowPresenter.ViewHolder holder, Object item) { argument
547 super.onBindRowViewHolder(holder, item);
549 DetailsOverviewRow row = (DetailsOverviewRow) item;
H A DFullWidthDetailsOverviewRowPresenter.java42 * Renders a {@link DetailsOverviewRow} to display an overview of an item. Typically this row will
599 protected void onBindRowViewHolder(RowPresenter.ViewHolder holder, Object item) { argument
600 super.onBindRowViewHolder(holder, item);
602 DetailsOverviewRow row = (DetailsOverviewRow) item;
H A DPlaybackControlsRow.java34 * This row consists of some optional item detail, a series of primary actions,
615 * the given item.
617 * @param item The main item for the row.
619 public PlaybackControlsRow(Object item) { argument
620 mItem = item;
624 * Constructor for a PlaybackControlsRow that has no item details.
630 * Returns the main item for the details page.
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java72 public boolean onMenuItemClick(MenuItem item) {
73 return mWindowCallback.onMenuItemSelected(Window.FEATURE_OPTIONS_PANEL, item);
633 public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { argument
/frameworks/base/tools/aapt/
H A DResourceTable.cpp610 const String16 item16("item");
825 const String16 item16("item");
1337 "Tag <item> 'format' attribute value \"%s\" not valid\n",
1344 "A 'type' attribute is required for <item>\n");
1507 "Found tag %s where item is expected\n",
1562 "Tag <%s> can not appear inside <%s>, only <item>\n",
1596 "Illegal 'quantity' attribute is <item> inside <plurals>\n");
1601 "A 'quantity' attribute is required for <item> inside <plurals>\n");
1610 "A 'name' attribute is required for <item>\n");
1723 "Found text \"%s\" where item ta
4357 const Item* item = getItem(resID, attrID); local
4783 CompileResourceWorkItem item; local
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java64 /** Actual number of items (the 'More' view does not count as an item) shown */
84 /** Background of each item (should contain the selected and focused states) */
224 * The bottom rows will each get a leftover item. Rows (indexed at 0)
225 * that are >= this get a leftover item. Note: if there are 0 leftover
235 // Fill the bottom rows with a leftover item each
245 * Checks whether each item's title is fully visible using the current
248 * @return True if the items fit (each item's text is fully visible), false
260 * If there is only one item on this row, increasing the
286 * Creates the item view for the 'More' button which is used to switch to
335 // The item positio
467 invokeItem(MenuItemImpl item) argument
[all...]
/frameworks/base/tools/aapt2/
H A DResourceValues.h84 * A resource item with a single value. This maps to android::ResTable_entry.
338 virtual void visitItem(Item& item, ValueVisitorArgs& args) {} argument
379 virtual void visitItem(const Item& item, ValueVisitorArgs& args) {} argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DPlaybackControlGlue.java312 protected void onBindRowViewHolder(RowPresenter.ViewHolder vh, Object item) {
313 super.onBindRowViewHolder(vh, item);
741 * Returns true if there is a valid media item.
751 * Returns the title of the media item.
756 * Returns the subtitle of the media item.
761 * Returns the duration of the media item in milliseconds.
766 * Returns a bitmap of the art for the media item.
782 * Returns the current position of the media item in milliseconds.
H A DSearchFragment.java308 public void onItemSelected(ViewHolder itemViewHolder, Object item,
314 mOnItemViewSelectedListener.onItemSelected(itemViewHolder, item,
402 * Sets an item selection listener for the results.
404 * @param listener The item selection listener to be invoked when an item in
412 * Sets an item clicked listener for the results.
414 * @param listener The item clicked listener to be invoked when an item in
H A DSearchSupportFragment.java310 public void onItemSelected(ViewHolder itemViewHolder, Object item,
316 mOnItemViewSelectedListener.onItemSelected(itemViewHolder, item,
404 * Sets an item selection listener for the results.
406 * @param listener The item selection listener to be invoked when an item in
414 * Sets an item clicked listener for the results.
416 * @param listener The item clicked listener to be invoked when an item in
H A DBrowseFragment.java324 * Sets an item selection listener.
331 * Returns an item selection listener.
338 * Sets an item clicked listener on the fragment.
340 * item presenter sets during {@link Presenter#onCreateViewHolder(ViewGroup)}.
351 * Returns the item Clicked listener.
731 public void onItemSelected(Presenter.ViewHolder itemViewHolder, Object item,
737 mExternalOnItemViewSelectedListener.onItemSelected(itemViewHolder, item,
H A DBrowseSupportFragment.java326 * Sets an item selection listener.
333 * Returns an item selection listener.
340 * Sets an item clicked listener on the fragment.
342 * item presenter sets during {@link Presenter#onCreateViewHolder(ViewGroup)}.
353 * Returns the item Clicked listener.
733 public void onItemSelected(Presenter.ViewHolder itemViewHolder, Object item,
739 mExternalOnItemViewSelectedListener.onItemSelected(itemViewHolder, item,
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewInstrumentationTest.java378 return super.toString() + " item:" + mBoundItem;
455 Item item = ((TestViewHolder) lp.mViewHolder).mBoundItem;
457 Log.d(TAG, "testing item " + i);
461 assertSame("item position in LP should match adapter value :" + vh,
462 testAdapter.mItems.get(vh.mPosition), item);
480 Log.d(TAG, "laying out item " + i);
620 final Item item = mItems.get(position);
621 ((TextView) (holder.itemView)).setText(item.mText + "(" + item.mAdapterIndex + ")");
622 holder.mBoundItem = item;
[all...]
/frameworks/base/core/java/android/app/
H A DActivity.java2601 * as pulling down the notification pane and touching an item there.
2897 public boolean onMenuItemSelected(int featureId, MenuItem item) { argument
2898 CharSequence titleCondensed = item.getTitleCondensed();
2908 if (onOptionsItemSelected(item)) {
2911 if (mFragments.dispatchOptionsItemSelected(item)) {
2914 if (item.getItemId() == android.R.id.home && mActionBar != null &&
2928 if (onContextItemSelected(item)) {
2931 return mFragments.dispatchContextItemSelected(item);
3038 * This hook is called whenever an item in your options menu is selected.
3040 * processing happen (calling the item'
3055 onOptionsItemSelected(MenuItem item) argument
3278 onContextItemSelected(MenuItem item) argument
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.h276 static bool isBandwidthValid(const BandwidthItem &item);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DListenerBindingObject.java66 public boolean onMenuItemClick(MenuItem item) { argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java1375 SpinnerItem<Integer> item = mColorModeSpinnerAdapter.getItem(i);
1376 if (selectedColorMode == item.value) {
1412 // is no duplexing which is always the first item in the dropdown.
1442 SpinnerItem<Integer> item = mDuplexModeSpinnerAdapter.getItem(i);
1443 if (selectedDuplexMode == item.value) {
1918 Object item = getItem(position);
1919 if (item instanceof PrinterHolder) {
1920 PrinterHolder printerHolder = (PrinterHolder) item;
2099 Object item = getItem(i);
2100 if (item instanceo
[all...]
/frameworks/base/core/java/android/os/
H A DParcel.java1145 T item = val.get(i);
1146 if (item != null) {
1148 item.writeToParcel(this, 0);
1230 T item = val[i];
1231 if (item != null) {
1233 item.writeToParcel(this, parcelableFlags);
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java45 * down menu from which the user can choose an item to replace the content
49 * if no item is selected in the drop down, by pressing the enter/dpad center
520 * <p>Sets the listener that will be notified when the user clicks an item
523 * @param l the item click listener
530 * <p>Sets the listener that will be notified when the user selects an item
533 * @param l the item selected listener
540 * <p>Returns the listener that is notified whenever the user clicks an item
543 * @return the item click listener
554 * item in the drop down list.</p>
556 * @return the item selecte
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLayoutFileParser.java390 final Node first = commentElementNodes.item(0);
421 result.add(nodeList.item(i));
/frameworks/rs/
H A DrsAllocation.h219 virtual void onFrameAvailable(const BufferItem& item);
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp100 jint item = 0; local
101 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item);
102 return item == EGL_NONE;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java508 public boolean onOptionsItemSelected(MenuItem item) { argument
509 if (mDrawerToggle != null && mDrawerToggle.onOptionsItemSelected(item)) {
512 return super.onOptionsItemSelected(item);

Completed in 4132 milliseconds

<<1112131415