HomeSort by relevance Sort by last modified time
    Searched full:adapter (Results 626 - 650 of 3250) sorted by null

<<21222324252627282930>>

  /hardware/qcom/gps/msm8084/core/
ContextBase.h 61 inline void requestUlp(LocAdapterBase* adapter,
63 mLBSProxy->requestUlp(adapter, capabilities);
  /hardware/qcom/gps/msm8994/core/
ContextBase.h 62 inline void requestUlp(LocAdapterBase* adapter,
64 mLBSProxy->requestUlp(adapter, capabilities);
  /hardware/qcom/gps/msm8998/core/
LBSProxyBase.h 56 inline virtual void requestUlp(LocAdapterBase* adapter,
59 (void)adapter;
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripDataAdapterProxy.java 30 * addressed in this abstract class since wrapping another data adapter
53 throw new AssertionError("data adapter is null");
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/
GalleryComposerFragment.java 67 private GalleryGridAdapter adapter; field in class:GalleryComposerFragment
134 adapter.insertEntry(output.first.getAbsolutePath(), output.second);
148 adapter = new GalleryGridAdapter(getContext(), null, this);
149 galleryGridView.setAdapter(adapter);
160 adapter.swapCursor(cursor);
162 adapter.insertEntries(insertedImages);
169 adapter.swapCursor(null);
233 adapter.setSelected(selectedData);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryTrack.java 59 public void setAdapter(CategoryAdapter adapter) {
60 mAdapter = adapter;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
MtpPagerAdapter.java 17 package com.android.gallery3d.ingest.adapter;
34 * Adapter for full-screen MTP pager.
  /packages/apps/Messaging/src/com/android/messaging/ui/
CursorRecyclerAdapter.java 36 extends RecyclerView.Adapter<VH> {
79 * If set the adapter will call requery() on the cursor whenever a content change
91 * If set the adapter will register a content observer on the cursor and will call
93 * using this flag: you will need to unset the current Cursor from the adapter
105 * @param flags Flags used to determine the behavior of the adapter; may
161 * @see android.support.v7.widget.RecyclerView.Adapter#getItem(int)
173 * @see android.support.v7.widget.RecyclerView.Adapter#getItemId(int)
213 * @see android.support.v7.widget.RecyclerView.Adapter#createViewHolder(Context, ViewGroup, int)
CustomHeaderViewPager.java 65 final PagerAdapter adapter = new CustomHeaderViewPagerAdapter(viewHolders); local
66 mViewPager.setAdapter(adapter);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
BaseSuggestionView.java 69 public void bindAdapter(SuggestionsAdapter<?> adapter, long suggestionId) {
70 mAdapter = adapter;
  /packages/apps/TV/src/com/android/tv/menu/
CustomizableOptionsRowAdapter.java 27 * An adapter of options that can accepts customization data.
54 // Type of MenuAction should be unique in the Adapter.
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationPagerController.java 85 * zero (with the fragment visibility hint ON) when the adapter is initially set.
156 LogUtils.d(LOG_TAG, "IN CPC.show, adapter=%s", mPagerAdapter);
159 LogUtils.d(LOG_TAG, "init pager adapter, count=%d initialConv=%s adapter=%s",
194 LogUtils.d(LOG_TAG, "IN CPC.hide, clearing adapter and unregistering list observer");
246 // take the adapter out of singleton mode to begin loading the
249 LogUtils.i(LOG_TAG, "IN pager adapter, finished loading primary conversation," +
269 * Stops listening to changes to the adapter. This must be followed immediately by
  /system/bt/service/ipc/
ipc_handler_linux.h 38 IPCHandlerLinux(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
  /frameworks/support/v14/preference/src/android/support/v14/preference/
PreferenceFragment.java 613 * Creates the root adapter.
615 * @param preferenceScreen Preference screen object to create the adapter for.
616 * @return An adapter that contains the preferences contained in this {@link PreferenceScreen}.
618 protected RecyclerView.Adapter onCreateAdapter(PreferenceScreen preferenceScreen) {
688 final RecyclerView.Adapter adapter = mList.getAdapter();
689 if (!(adapter instanceof
691 if (adapter != null) {
692 throw new IllegalStateException("Adapter must implement "
695 // Adapter was set to null, so don't scroll I guess
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
PlaybackControlGlue.java 66 * on the controls row as the primary actions adapter, and adds actions to it. You can provide
91 * The adapter key for the first custom control on the left side
97 * The adapter key for the skip to previous control.
102 * The adapter key for the rewind control.
107 * The adapter key for the play/pause control.
112 * The adapter key for the fast forward control.
117 * The adapter key for the skip to next control.
122 * The adapter key for the first custom control on the right side
361 SparseArrayObjectAdapter adapter = new SparseArrayObjectAdapter(presenterSelector); local
362 onCreatePrimaryActions(adapter);
    [all...]
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceFragmentCompat.java 601 * Creates the root adapter.
603 * @param preferenceScreen Preference screen object to create the adapter for.
604 * @return An adapter that contains the preferences contained in this {@link PreferenceScreen}.
606 protected RecyclerView.Adapter onCreateAdapter(PreferenceScreen preferenceScreen) {
676 final RecyclerView.Adapter adapter = mList.getAdapter();
677 if (!(adapter instanceof
679 if (adapter != null) {
680 throw new IllegalStateException("Adapter must implement "
683 // Adapter was set to null, so don't scroll I guess
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListScenario.java 84 * (external users can access this info using the adapter)
133 * @param startingSelectionPosition The selected position within the adapter's data set.
248 * adapter on the list view. If this is false, the client MUST set it
250 * must be done before the adapter is set).
418 * Sets an adapter on a ListView.
420 * @param listView The ListView to set the adapter on.
557 * Return an item type for the specified position in the adapter. Override if your
558 * adapter creates more than one type.
565 * Return an the number of types created by the adapter. Override if your
566 * adapter creates more than one type
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
ConnectActivity.java 78 private ArrayAdapter<String> adapter; field in class:ConnectActivity
200 adapter = new ArrayAdapter<String>(
202 roomListView.setAdapter(adapter);
203 if (adapter.getCount() > 0) {
398 adapter.add(newRoom);
399 adapter.notifyDataSetChanged();
409 adapter.remove(selectedRoom);
410 adapter.notifyDataSetChanged();
417 if (roomListView.getCheckedItemCount() > 0 && adapter.getCount() > 0) {
419 if (position >= adapter.getCount())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListScenario.java 88 * (external users can access this info using the adapter)
137 * @param startingSelectionPosition The selected position within the adapter's data set.
252 * adapter on the list view. If this is false, the client MUST set it
254 * must be done before the adapter is set).
445 * Sets an adapter on a ListView.
447 * @param listView The ListView to set the adapter on.
585 * Return an item type for the specified position in the adapter. Override if your
586 * adapter creates more than one type.
593 * Return the number of types created by the adapter. Override if your
594 * adapter creates more than one type
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
RowsFragment.java 48 * of rows in a vertical list. The Adapter's {@link PresenterSelector} must maintain subclasses
259 * Get row ViewHolder at adapter position. Returns null if the row object is not in adapter or
262 * @param position Position of row in adapter.
263 * @return Row ViewHolder at a given adapter position.
431 ItemBridgeAdapter adapter = getBridgeAdapter(); local
432 if (adapter != null) {
433 adapter.setAdapterListener(mBridgeAdapterListener);
566 * Find row ViewHolder by position in adapter.
630 public void setAdapter(ObjectAdapter adapter) {
    [all...]
RowsSupportFragment.java 51 * of rows in a vertical list. The Adapter's {@link PresenterSelector} must maintain subclasses
262 * Get row ViewHolder at adapter position. Returns null if the row object is not in adapter or
265 * @param position Position of row in adapter.
266 * @return Row ViewHolder at a given adapter position.
434 ItemBridgeAdapter adapter = getBridgeAdapter(); local
435 if (adapter != null) {
436 adapter.setAdapterListener(mBridgeAdapterListener);
569 * Find row ViewHolder by position in adapter.
633 public void setAdapter(ObjectAdapter adapter) {
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedActionAdapter.java 42 public class GuidedActionAdapter extends RecyclerView.Adapter {
133 * @param actions The list of guided actions this adapter will manage.
134 * @param focusListener The focus listener for items in this adapter.
135 * @param presenter The presenter that will manage the display of items in this adapter.
151 * Sets the list of actions managed by this adapter.
165 * Returns the count of actions managed by this adapter.
166 * @return The count of actions managed by this adapter.
198 * Sets the click listener for items managed by this adapter.
199 * @param clickListener The click listener for this adapter.
206 * Sets the focus listener for items managed by this adapter
    [all...]
PlaybackControlsRow.java 802 * <p>If set after the row has been bound to a view, the adapter must be notified that
813 * <p>If set after the row has been bound to a view, the adapter must be notified that
835 * <p>If set after the row has been bound to a view, the adapter must be notified that
838 public final void setPrimaryActionsAdapter(ObjectAdapter adapter) {
839 mPrimaryActionsAdapter = adapter;
844 * <p>If set after the row has been bound to a view, the adapter must be notified that
847 public final void setSecondaryActionsAdapter(ObjectAdapter adapter) {
848 mSecondaryActionsAdapter = adapter;
867 * <p>If set after the row has been bound to a view, the adapter must be notified that
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
MultiSelectContactsListFragment.java 222 final MultiSelectEntryContactListAdapter adapter = getAdapter(); local
223 if (adapter == null) {
227 searchState.queryLength = adapter.getQueryString() == null
228 ? 0 : adapter.getQueryString().length();
229 searchState.numPartitions = adapter.getPartitionCount();
231 // Set the number of results displayed to the user. Note that the adapter.getCount(),
235 for (int i = 0; i < adapter.getPartitionCount(); i++) {
236 final Cursor cursor = adapter.getCursor(i);
254 searchState.selectedPartition = adapter.getPartitionForPosition(selectedPosition);
255 searchState.selectedIndexInPartition = adapter.getOffsetInPartition(selectedPosition)
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/account/
AccountType.java 70 * actual sync adapter package name. - {@link #resourcePackageName} too is set to the same value,
78 * the sync adapter (for external type, including extensions).
156 * sync adapter package as determined by {@link #syncAdapterPackageName}.
166 * sync adapter package as determined by {@link #syncAdapterPackageName}.
176 * sync adapter package as determined by {@link #syncAdapterPackageName}.
184 * allows the sync adapter to provide more up-to-date information.
186 * <p>The service class should reside in the sync adapter package as determined by {@link
197 * the authenticator package name but the notification service is in the sync adapter package. See
210 // Note this resource is defined in the sync adapter package, not resourcePackageName.
244 // Note this resource is defined in the sync adapter package, not resourcePackageName
    [all...]

Completed in 677 milliseconds

<<21222324252627282930>>