HomeSort by relevance Sort by last modified time
    Searched full:adapter (Results 426 - 450 of 2956) sorted by null

<<11121314151617181920>>

  /system/bt/test/suite/
Android.mk 38 adapter/adapter_unittest.cpp \
39 adapter/bluetooth_test.cpp \
  /art/runtime/base/
arena_containers.h 33 // Adapter for use of ArenaAllocator in STL containers.
34 // Use ArenaAllocator::Adapter() to create an adapter to pass to container constructors.
38 // : foo_vector(allocator->Adapter(kArenaAllocMisc)),
39 // foo_map(std::less<int>(), allocator->Adapter()) {
220 inline ArenaAllocatorAdapter<void> ArenaAllocator::Adapter(ArenaAllocKind kind) {
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPooledConnAdapter.java 46 * Abstract adapter from pool {@link AbstractPoolEntry entries} to
75 * Creates a new connection adapter.
88 * Asserts that this adapter is still attached.
95 throw new IllegalStateException("Adapter is detached.");
100 * Detaches this adapter from the wrapped connection.
101 * This adapter becomes useless.
  /external/autotest/client/tests/kvm/
base.cfg.sample 114 test_device = VirtIO Ethernet Adapter$
116 dp_regex_testdev = VirtIO Ethernet Adapter$
117 dp_regex_clientmsgdev = VirtIO Ethernet Adapter #2$
118 dp_regex_clientsupportdev = VirtIO Ethernet Adapter #3$
120 dp_regex_servermsgdev = VirtIO Ethernet Adapter$
121 dp_regex_serversupportdev = VirtIO Ethernet Adapter #2$
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
ImmutableMultimapTypeAdapterFactory.java 74 final TypeAdapter<Map<?, List<?>>> adapter = local
80 adapter.write(out, (Map) multimap.asMap());
84 Map<?, List<?>> value = adapter.read(in);
95 final TypeAdapter<Map<?, Set<?>>> adapter = typedefs
101 adapter.write(out, (Map) multimap.asMap());
105 Map<?, Set<?>> value = adapter.read(in);
  /frameworks/av/media/libeffects/testlibs/
AudioFormatAdapter.h 28 // An adapter for an audio processor working on audio_sample_t samples with a
30 // The adapter may work on any processing class which has a processing function
40 // the adapter.
41 // The adapter supports re-configuration to a different format on the fly.
52 // Configure the adapter.
54 // nChannels Number of input and output channels. The adapter does not do
  /frameworks/base/core/java/android/widget/
HeaderViewListAdapter.java 52 ListAdapter adapter) {
53 mAdapter = adapter;
54 mIsFilterable = adapter instanceof Filterable;
153 // Adapter
174 // Adapter
214 // Adapter
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PseudoGridView.java 140 * Usage: {@code ViewGroupAdapterBridge.link(viewGroup, adapter)}
142 * After this call, the ViewGroup's children will be provided by the adapter.
150 public static void link(ViewGroup viewGroup, BaseAdapter adapter) {
151 new ViewGroupAdapterBridge(viewGroup, adapter);
154 private ViewGroupAdapterBridge(ViewGroup viewGroup, BaseAdapter adapter) {
156 mAdapter = adapter;
  /frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
SetupWizardRecyclerLayout.java 50 private RecyclerView.Adapter mAdapter;
109 public RecyclerView.Adapter getAdapter() {
113 public void setAdapter(RecyclerView.Adapter adapter) {
114 mAdapter = adapter;
115 getRecyclerView().setAdapter(adapter);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
GlifListLayout.java 131 public void setAdapter(ListAdapter adapter) {
132 getListView().setAdapter(adapter);
136 final ListAdapter adapter = getListView().getAdapter(); local
137 if (adapter instanceof HeaderViewListAdapter) {
138 return ((HeaderViewListAdapter) adapter).getWrappedAdapter();
140 return adapter;
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
DiffUtilActivity.java 33 import com.example.android.supportv7.widget.adapter.SimpleStringAdapter;
61 final SimpleStringAdapter adapter = local
63 rv.setAdapter(adapter);
90 adapter.setValues(resultPair.first);
91 resultPair.second.dispatchUpdatesTo(adapter);
95 }.execute(adapter.getValues());
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
ItemAnimatorV2ApiTest.java 443 TestAdapter adapter = new TestAdapter(10); local
444 adapter.setHasStableIds(true);
445 setupBasic(10, 0, 10, adapter);
462 TestAdapter adapter = new TestAdapter(10); local
463 adapter.setHasStableIds(false);
464 setupBasic(10, 0, 10, adapter);
485 final TestAdapter adapter = new TestAdapter(10); local
486 adapter.setHasStableIds(true);
487 setupBasic(10, 0, 10, adapter);
494 adapter.addAndNotify(2, 2)
524 final TestAdapter adapter = new TestAdapter(10); local
554 final TestAdapter adapter = new TestAdapter(10) { local
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
LocEngAdapter.cpp 38 LocInternalAdapter::LocInternalAdapter(LocEngAdapter* adapter) :
39 LocAdapterBase(adapter->getMsgTask()),
40 mLocEngAdapter(adapter)
56 inline LocSetUlpProxy(LocAdapterBase* adapter, UlpProxyBase* ulp) :
57 LocMsg(), mAdapter(adapter), mUlp(ulp) {
60 LOC_LOGV("%s] ulp %p adapter %p", __func__,
  /packages/apps/TV/src/com/android/tv/dvr/ui/
SortedArrayAdapter.java 83 * <p><b>NOTE</b> when the item list is empty the adapter has a size of 1 and
93 * <p><b>NOTE</b> when the item list is empty the adapter has a size of 1 and
102 * Adds the objects in the given collection to the adapter keeping the elements sorted.
114 * Adds an item in sorted order to the adapter.
116 * @param item The item to add in sorted order to the adapter.
131 * @param item The item to remove from the adapter.
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
LimitedMultiSelectDialogFragment.java 85 final LimitedMultiSelectAdapter adapter = new LimitedMultiSelectAdapter( local
88 adapter.setSelected(selectedValues);
92 listView.setAdapter(adapter);
103 adapter.removeSelected(entryValue);
107 adapter.addSelected(entryValue);
113 adapter.notifyDataSetChanged();
MiniDrawerView.java 85 final ListAdapter adapter = mController.getMiniDrawerAccountsAdapter(); local
86 adapter.registerDataSetObserver(new Observer());
102 final ListAdapter adapter = local
105 if (adapter.getCount() > 0) {
110 final View newCurrentAccountView = adapter.getView(0, oldCurrentAccountView, this);
125 final int adapterCount = Math.min(adapter.getCount(), NUM_RECENT_ACCOUNTS + 1);
128 final View accountView = adapter.getView(accountIndex, recycleView, this);
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_parameters.py 159 class Adapter(object):
163 func.argtypes = (Adapter(),)
167 class Adapter(object):
171 func.argtypes = (Adapter(),)
176 class Adapter(object):
180 func.argtypes = (Adapter(),)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_parameters.py 159 class Adapter(object):
163 func.argtypes = (Adapter(),)
167 class Adapter(object):
171 func.argtypes = (Adapter(),)
176 class Adapter(object):
180 func.argtypes = (Adapter(),)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_parameters.py 159 class Adapter(object):
163 func.argtypes = (Adapter(),)
167 class Adapter(object):
171 func.argtypes = (Adapter(),)
176 class Adapter(object):
180 func.argtypes = (Adapter(),)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_parameters.py 159 class Adapter(object):
163 func.argtypes = (Adapter(),)
167 class Adapter(object):
171 func.argtypes = (Adapter(),)
176 class Adapter(object):
180 func.argtypes = (Adapter(),)
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 373 protected SuggestionPosition getCurrentSuggestions(SuggestionsAdapter<?> adapter, long id) {
374 SuggestionPosition pos = adapter.getSuggestion(id);
406 private boolean launchSuggestion(SuggestionsAdapter<?> adapter, long id) {
407 SuggestionPosition suggestion = getCurrentSuggestions(adapter, id);
429 protected void refineSuggestion(SuggestionsAdapter<?> adapter, long id) {
431 SuggestionPosition suggestion = getCurrentSuggestions(adapter, id);
492 public void onSuggestionClicked(SuggestionsAdapter<?> adapter, long id) {
493 launchSuggestion(adapter, id);
497 public void onSuggestionQueryRefineClicked(SuggestionsAdapter<?> adapter, long id) {
498 refineSuggestion(adapter, id)
    [all...]
  /hardware/libhardware/include/hardware/
bluetooth.h 64 /** Bluetooth Adapter Visibility Modes*/
71 /** Bluetooth Adapter State */
118 /** Bluetooth Adapter Discovery state */
167 /* Bluetooth Adapter and Remote Device property types */
169 /* Properties common to both adapter and remote device */
172 * Access mode - Adapter name can be GET/SET. Remote device can be GET
207 /* Properties unique to adapter */
209 * Description - Bluetooth Adapter scan mode
222 * Description - Bluetooth Adapter Discovery timeout (in seconds)
259 /** Bluetooth Adapter Property data structure *
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
PagedListView.java 67 private RecyclerView.Adapter<? extends RecyclerView.ViewHolder> mAdapter;
73 * Interface for a {@link android.support.v7.widget.RecyclerView.Adapter} to cap the
75 * <p>NOTE: it is still up to the adapter to use maxItems in
76 * {@link android.support.v7.widget.RecyclerView.Adapter#getItemCount()}.
88 * Sets the maximum number of items available in the adapter. A value less than '0'
197 * Sets the adapter for the list.
202 @NonNull RecyclerView.Adapter<? extends RecyclerView.ViewHolder> adapter) {
203 if (!(adapter instanceof ItemCap)) {
204 throw new IllegalArgumentException("ERROR: adapter "
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
SimpleCursorAdapterTest.java 94 // Now see if we can pull 2 rows from the adapter
105 // The adapter should report zero rows
116 // Now see if we can pull 2 rows from the adapter
124 // Now see if we can pull 5 rows from the adapter
135 // Now see if we can pull 2 rows from the adapter
141 // The adapter should report zero rows
146 * Test changeCursor() with differing column layout. This confirms that the Adapter can
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
FrameworkActionBar.java 143 OverflowMenuAdapter adapter = new OverflowMenuAdapter(menu, mActionBar.getPopupContext()); local
148 measureContentWidth(adapter), LayoutParams.WRAP_CONTENT);
159 listView.setAdapter(adapter);
194 private int measureContentWidth(@NonNull ListAdapter adapter) {
203 final int count = adapter.getCount();
205 final int positionType = adapter.getItemViewType(i);
215 itemView = adapter.getView(i, itemView, mMeasureParent);

Completed in 733 milliseconds

<<11121314151617181920>>