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

<<51525354555657585960>>

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchSuggestionsList.java 89 // set up the adapter
169 // Custom adapter to populate our list
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardActionListener.java 104 public static final KeyboardActionListener EMPTY_LISTENER = new Adapter();
106 public static class Adapter implements KeyboardActionListener {
  /packages/services/Telecomm/src/com/android/server/telecom/
Timeouts.java 30 public static class Adapter {
31 public Adapter() { }
  /system/bt/btif/include/
btif_api.h 110 * Description Fetches all local adapter properties
316 * Description Queries the BTA for the adapter property
btif_storage.h 45 * Description BTIF storage API - Fetches the adapter property->type
60 * Description BTIF storage API - Stores the adapter property
  /art/compiler/optimizing/
register_allocator_linear_scan.cc 47 unhandled_core_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
48 unhandled_fp_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
50 handled_(allocator->Adapter(kArenaAllocRegisterAllocator)),
51 active_(allocator->Adapter(kArenaAllocRegisterAllocator)),
52 inactive_(allocator->Adapter(kArenaAllocRegisterAllocator)),
53 physical_core_register_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
54 physical_fp_register_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
55 temp_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
56 int_spill_slots_(allocator->Adapter(kArenaAllocRegisterAllocator)),
57 long_spill_slots_(allocator->Adapter(kArenaAllocRegisterAllocator))
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/
SimpleNetwork.c 225 Resets the network adapter and allocates the transmit and receive buffers
268 // Start the adapter
655 state in the network adapter.
799 Reset the network adapter.
801 Resets a network adapter and reinitializes it with the parameters that
807 This routine calls ::Ax88772Reset to perform the adapter specific
859 // Update the receive filters in the adapter
    [all...]
  /frameworks/base/core/java/android/widget/
FastScroller.java 193 private Adapter mListAdapter;
957 Adapter adapter = mList.getAdapter(); local
    [all...]
CursorTreeAdapter.java 31 * An adapter that exposes data from a series of {@link Cursor}s to an
58 * Constructor. The adapter will call {@link Cursor#requery()} on the cursor whenever
72 * @param autoRequery If true the adapter will call {@link Cursor#requery()}
123 * will handle this for you. In some situations, the adapter will deactivate
398 * <li> ID from the Cursor for use in adapter IDs
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 405 // This is the Adapter being used to display the list's data.
424 // Create an empty adapter we will use to display the loaded data.
465 // is a simple array adapter, we can just have it do the filtering.
496 // Set the new data in the adapter.
508 // Clear the data in the adapter.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
_index.html 159 <dd>Demonstrates another custom list adapter with that returns expandible items. </dd>
162 <dd> Demonstrates a list adapter where data comes from a Cursor object. </dd>
179 <dt><a href="List13.html">13. Slow Adapter</a></dt>
182 <dt><a href="List14.html">14. Efficient Adapter</a></dt>
242 <dd>Demonstrates using the ImageSwitcher widget with a custom Adapter.</dd>
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DynamicListView.java 203 StableArrayAdapter adapter = ((StableArrayAdapter)getAdapter()); local
204 mAboveItemId = adapter.getItemId(position - 1);
205 mBelowItemId = adapter.getItemId(position + 1);
211 StableArrayAdapter adapter = ((StableArrayAdapter)getAdapter()); local
215 long id = adapter.getItemId(position);
  /external/autotest/client/cros/bluetooth/
bluetooth_tester_xmlrpc_server.py 99 # Before beginning, force the adapter power off, even if it's already
103 logging.warning('Failed to power off adapter to accept settings')
132 # powering on the adapter, and would be rejected otherwise.
187 # Now the settings have been set, power up the adapter.
265 """Read the adapter information from the Kernel.
  /external/wpa_supplicant_8/src/drivers/
ndis_events.c 343 "update adapter description since it may "
344 "have changed with new adapter instance");
350 "indication for foreign adapter: "
497 * Try to get adapter descriptor through WMI CIMv2 Win32_NetworkAdapter
764 wpa_printf(MSG_DEBUG, "ndis_events: use adapter descriptor '%S'",
  /external/wpa_supplicant_8/wpa_supplicant/
README-Windows.txt 139 adapter description can be used as the interface name which may be
148 description: Generic NdisWan adapter
151 description: Atheros Wireless Network Adapter (Microsoft's Packet Scheduler)
259 (adapter to confname mapping). Each such mapping is a subkey that has
260 'adapter', 'config', and 'ctrl_interface' values.
  /frameworks/base/core/java/android/nfc/
NfcAdapter.java 48 * Represents the local NFC adapter.
51 * adapter for this Android device.
182 * Broadcast Action: The state of the local NFC adapter has been
509 NfcAdapter adapter = sNfcAdapters.get(context); local
510 if (adapter == null) {
511 adapter = new NfcAdapter(context);
512 sNfcAdapters.put(context, adapter);
514 return adapter;
528 * Helper to get the default NFC Adapter.
530 * Most Android devices will only have one NFC Adapter (NFC Controller)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SimpleItemAnimator.java 24 import com.android.internal.widget.RecyclerView.Adapter;
69 * @see Adapter#notifyItemChanged(int)
70 * @see Adapter#notifyItemRangeChanged(int, int)
239 * {@link Adapter#notifyItemChanged(int)} or
240 * {@link Adapter#notifyItemRangeChanged(int, int)}.
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 406 // This is the Adapter being used to display the list's data.
422 // Create an empty adapter we will use to display the loaded data.
445 // is a simple array adapter, we can just have it do the filtering.
482 // Set the new data in the adapter.
494 // Clear the data in the adapter.
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
GridActivity.java 176 RecyclerView.Adapter adapter = new MyAdapter(); local
177 adapter.setHasStableIds(mHasStableIds);
194 mGridView.setAdapter(adapter);
331 class MyAdapter extends RecyclerView.Adapter implements FacetProviderAdapter {
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
SimpleItemAnimator.java 21 import android.support.v7.widget.RecyclerView.Adapter;
69 * @see Adapter#notifyItemChanged(int)
70 * @see Adapter#notifyItemRangeChanged(int, int)
239 * {@link Adapter#notifyItemChanged(int)} or
240 * {@link Adapter#notifyItemRangeChanged(int, int)}.
  /packages/apps/DeskClock/src/com/android/deskclock/
ItemAdapter.java 32 * Base adapter class for displaying a collection of items. Provides functionality for handling
36 extends RecyclerView.Adapter<ItemAdapter.ItemViewHolder> {
98 * List of current item holders represented by this adapter.
132 * @return the current list of item holders represented by this adapter
139 * Sets the list of item holders to serve as the dataset for this adapter and invokes
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitySelectionActivity.java 84 * The adapter that presents all of the selected and unselected cities.
146 // Recompute the contents of the adapter before displaying on screen.
191 * This adapter presents data in 2 possible modes. If selected cities exist the format is:
265 * The number of user selections at the top of the adapter to avoid indexing.
645 // Honor the new sort order in the adapter.
  /packages/apps/Stk/src/com/android/stk/
StkMenuActivity.java 422 // Bind list adapter to the items list.
441 // create an array adapter for the menu list
442 StkMenuAdapter adapter = new StkMenuAdapter(this, local
444 // Bind menu list to the new adapter.
445 setListAdapter(adapter);
  /cts/tests/tests/widget/src/android/widget/cts/
AbsListViewTest.java 196 private void setAdapter(final ListAdapter adapter) throws Throwable {
197 mActivityRule.runOnUiThread(() -> mListView.setAdapter(adapter));
861 final ArrayAdapter<String> adapter = new PositionArrayAdapter<>(mContext, local
887 final ArrayAdapter<String> adapter = new PositionArrayAdapter<>(mContext, local
913 final ArrayAdapter<String> adapter = new PositionArrayAdapter<>(mContext, local
937 final ArrayAdapter<String> adapter = new PositionArrayAdapter<>(mContext, local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationContainer.java 157 * of all views (on data set or adapter change), we can at least recycle them into the typed
171 * The adapter index of the lowest overlay item that is above the top of the screen and reports
293 * Re-bind any existing views that correspond to the given adapter positions.
311 * Return an overlay view for the given adapter item, or null if no matching view is currently
485 // starting with the last spacer bottom and the last adapter item, position adapter views
535 // advance to the next spacer, but stay on this adapter item
    [all...]

Completed in 4669 milliseconds

<<51525354555657585960>>