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

1 2 3 4 56 7 8 91011>>

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAbsSpinner.java 17 public void setAdapter(SpinnerAdapter adapter) {
18 super.setAdapter(adapter);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ListFragmentTest.java 25 ListAdapter adapter = new CountingAdapter(5); local
26 listFragment.setListAdapter(adapter);
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
PlaybackTransportControlGlueSample.java 50 protected void onCreateSecondaryActions(ArrayObjectAdapter adapter) {
51 adapter.add(mThumbsUpAction);
52 adapter.add(mThumbsDownAction);
54 adapter.add(mPipAction);
59 protected void onCreatePrimaryActions(ArrayObjectAdapter adapter) {
60 super.onCreatePrimaryActions(adapter);
61 adapter.add(mRepeatAction);
62 adapter.add(mClosedCaptioningAction);
  /hardware/interfaces/graphics/allocator/2.0/default/
Android.bp 41 name: "libgralloc1-adapter",
43 srcs: ["gralloc1-adapter.cpp", "Gralloc1On0Adapter.cpp"],
  /system/bt/service/doc/
IBluetoothCallback.txt 19 * high-level Bluetooth adapter state.
23 * Called when the adapter state changes from |prev_state| to |new_state|.
  /system/bt/service/ipc/binder/
bluetooth_binder_server.h 34 #include "service/adapter.h"
54 public bluetooth::Adapter::Observer {
56 explicit BluetoothBinderServer(bluetooth::Adapter* adapter);
91 // bluetooth::Adapter::Observer overrides:
92 void OnAdapterStateChanged(bluetooth::Adapter* adapter,
97 bluetooth::Adapter* adapter_; // weak
bluetooth_gatt_client_binder_server.cc 21 #include "service/adapter.h"
33 bluetooth::Adapter* adapter)
34 : adapter_(adapter) {
bluetooth_gatt_client_binder_server.h 33 class Adapter;
43 explicit BluetoothGattClientBinderServer(bluetooth::Adapter* adapter);
69 bluetooth::Adapter* adapter_; // weak
  /system/bt/test/suite/
BUILD.gn 20 "adapter/adapter_unittest.cc",
21 "adapter/bluetooth_test.cc",
  /system/core/trusty/nvram/
trusty_nvram_device.cpp 28 nvram::NvramDeviceAdapter* adapter = new nvram::NvramDeviceAdapter( local
30 *device_ptr = adapter->as_device();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleAdvertiserTestActivity.java 41 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
43 if (adapter == null || !adapter.isOffloadedFilteringSupported()) {
50 if (!adapter.isEnabled()) {
BleScannerTestActivity.java 41 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
43 if (adapter == null || !adapter.isOffloadedFilteringSupported()) {
51 if (!adapter.isEnabled()) {
BleInsecureClientTestListActivity.java 40 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
42 if (adapter == null || !adapter.isOffloadedFilteringSupported()) {
BleInsecureServerTestListActivity.java 38 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
40 if (adapter == null || !adapter.isOffloadedFilteringSupported()) {
BleSecureClientTestListActivity.java 38 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
40 if (adapter == null || !adapter.isOffloadedFilteringSupported()) {
BleSecureServerTestListActivity.java 38 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
40 if (adapter == null || !adapter.isOffloadedFilteringSupported()) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hcef/
HceFEmulatorTestActivity.java 40 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); local
46 adapter.add(TestListItem.newCategory(this, R.string.nfc_hce_f_emulator_tests));
48 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_f_emulator,
53 setTestListAdapter(adapter);
HceFReaderTestActivity.java 37 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); local
41 adapter.add(TestListItem.newCategory(this, R.string.nfc_hce_f_reader_tests));
43 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_f_reader,
49 setTestListAdapter(adapter);
  /development/samples/browseable/BluetoothChat/
_index.jd 11 (2) Querying the local Bluetooth adapter for paired Bluetooth devices
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
TextDisplayPropertyEditor.java 52 public <T> T getAdapter(Class<T> adapter) {
54 if (adapter == PropertyTooltipProvider.class) {
55 return adapter.cast(createPropertyTooltipProvider());
57 return super.getAdapter(adapter);
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
ViewPropertyAnimation.java 33 * @param adapter {@inheritDoc}
37 public boolean animate(R current, ViewAdapter adapter) {
38 final View view = adapter.getView();
40 animator.animate(adapter.getView());
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceRecyclerViewAccessibilityDelegate.java 56 RecyclerView.Adapter adapter = mRecyclerView.getAdapter();
57 if (!(adapter instanceof PreferenceGroupAdapter)) {
61 PreferenceGroupAdapter preferenceGroupAdapter = (PreferenceGroupAdapter) adapter;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsView.java 41 public void setSuggestionsAdapter(SuggestionsAdapter<ListAdapter> adapter) {
42 super.setAdapter(adapter == null ? null : adapter.getListAdapter());
43 mSuggestionsAdapter = adapter;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DeviceOwnerRequestingBugreportTestActivity.java 91 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); local
92 adapter.add(TestListItem.newCategory(this,
95 addTestsToAdapter(adapter);
97 adapter.registerDataSetObserver(new DataSetObserver() {
104 setTestListAdapter(adapter);
133 private void addTestsToAdapter(final ArrayTestListAdapter adapter) {
134 adapter.add(createTestItem(this, CHECK_DEVICE_OWNER_TEST_ID,
140 adapter.add(createInteractiveTestItem(this, BUGREPORT_SHARING_DECLINED_WHILE_BEING_TAKEN,
148 adapter.add(createInteractiveTestItem(this, BUGREPORT_SHARING_ACCEPTED_WHILE_BEING_TAKEN,
156 adapter.add(createInteractiveTestItem(this
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
P2pTestListActivity.java 68 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); local
70 adapter.add(TestListItem.newCategory(this, R.string.p2p_group_formation));
71 adapter.add(TestListItem.newTest(this,
75 adapter.add(TestListItem.newTest(this,
80 adapter.add(TestListItem.newCategory(this, R.string.p2p_join));
81 adapter.add(TestListItem.newTest(this,
85 adapter.add(TestListItem.newTest(this,
90 adapter.add(TestListItem.newCategory(this, R.string.p2p_service_discovery));
91 adapter.add(TestListItem.newTest(this,
95 adapter.add(TestListItem.newTest(this
    [all...]

Completed in 379 milliseconds

1 2 3 4 56 7 8 91011>>