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

<<11121314151617181920>>

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
package-info.java 20 * {@link android.support.v17.leanback.widget.ObjectAdapter}. It is similar to Adapter and the
21 * RecyclerView Adapter, but separates iterating items from presenting them as Views.
30 * complementary piece to ObjectAdapter that corresponds to existing Android adapter classes.
32 * context of an adapter. For example, a UI may represent data from a single Object in several places
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapReceiver.java 69 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
70 if (adapter == null || !adapter.isEnabled()) {
72 adapter + "). Would not start service.");
  /packages/apps/Contacts/src/com/android/contacts/widget/
ContextMenuAdapter.java 22 * An adapter for the contextual menu.
  /packages/apps/ContactsCommon/tests/res/values/
donottranslate_strings.xml 20 <string name="authenticator_basic_label">Test adapter</string>
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothA2dpConnector.java 122 public void openConnection(BluetoothAdapter adapter) {
126 if (!adapter.getProfileProxy(mContext, mServiceConnection, BluetoothProfile.A2DP)) {
134 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
135 adapter.closeProfileProxy(BluetoothProfile.A2DP, mA2dpProfile);
BluetoothInputDeviceConnector.java 135 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); local
136 adapter.closeProfileProxy(BluetoothProfile.INPUT_DEVICE, mInputProxy);
156 public void openConnection(BluetoothAdapter adapter) {
157 if (!adapter.getProfileProxy(mContext, mServiceConnection, BluetoothProfile.INPUT_DEVICE)) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterCustomAlign.java 22 * The adapter can optionally implement ScrollAdapterCustomAlign in addition to ScrollAdapter.
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SingleFolderSelectionDialog.java 81 // adapter.
87 // Create a system folder adapter and an adapter for hierarchical
89 // do not add as a section since a 0-count adapter will result in an
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
cycx_cfm.h 40 /* Adapter Types */
52 * @adapter - compatible adapter types
65 unsigned short adapter[CFM_MAX_CYCX]; member in struct:cycx_fw_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
cycx_cfm.h 40 /* Adapter Types */
52 * @adapter - compatible adapter types
65 unsigned short adapter[CFM_MAX_CYCX]; member in struct:cycx_fw_info
  /system/bt/service/
daemon.cpp 23 #include "service/adapter.h"
83 // The Adapter object needs to be cleaned up before the HAL interfaces.
120 adapter_ = Adapter::Create();
137 std::unique_ptr<Adapter> adapter_;
  /system/bt/service/hal/
bluetooth_interface.h 25 // This class represents the HAL Bluetooth adapter interface, wrapping around
38 // The standard Bluetooth adapter management callback interface. The HAL
104 // The HAL module pointer that represents the standard Bluetooth adapter
113 // The HAL module pointer that represents the underlying Bluetooth adapter.
  /system/bt/service/ipc/binder/
bluetooth_gatt_server_binder_server.h 27 class Adapter;
38 explicit BluetoothGattServerBinderServer(bluetooth::Adapter* adapter);
112 bluetooth::Adapter* adapter_; // weak
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/
README.md 73 Creates new reusable instance of the `Parser`. Optional `treeAdapter` argument specifies resulting tree format. If `treeAdapter` argument is not specified, `default` tree adapter will be used.
85 //Instantiate new parser with default tree adapter
88 //Instantiate new parser with htmlparser2 tree adapter
180 Creates new reusable instance of the `Serializer`. Optional `treeAdapter` argument specifies input tree format. If `treeAdapter` argument is not specified, `default` tree adapter will be used.
191 //Instantiate new serializer with default tree adapter
194 //Instantiate new serializer with htmlparser2 tree adapter
224 ## Custom tree adapter
225 You can create a custom tree adapter so parse5 can work with your own DOM-tree implementation.
226 Just pass your adapter implementation to the parser's constructor as an argument:
232 //Adapter methods..
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
main_winsvc.c 11 * (adapter to confname mapping). Each such mapping is a subkey that has
12 * 'adapter' and 'config' values.
66 TCHAR adapter[TBUFLEN], config[TBUFLEN], ctrl_interface[TBUFLEN]; local
92 buflen = sizeof(adapter);
93 ret = RegQueryValueEx(hk, TEXT("adapter"), NULL, NULL,
94 (LPBYTE) adapter, &buflen);
96 adapter[TBUFLEN - 1] = TEXT('\0');
97 wpa_unicode2ascii_inplace(adapter);
98 printf("adapter[len=%d] '%s'\n",
99 (int) buflen, (char *) adapter);
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/layout/
gridview.jd 24 <p>For an introduction to how you can dynamically insert views using an adapter, read
26 an Adapter</a>.</p>
84 android.widget.GridView#setAdapter(T) setAdapter()} method then sets a custom adapter ({@code
120 // create a new ImageView for each item referenced by the Adapter
155 android.widget.Adapter#getCount()} are self-explanatory. Normally, {@link
156 android.widget.Adapter#getItem(int)} should return the actual object at the specified position in
157 the adapter, but it's ignored for this example. Likewise, {@link
158 android.widget.Adapter#getItemId(int)} should return the row id of the item, but it's not
161 <p>The first method necessary is {@link android.widget.Adapter#getView(int,View,ViewGroup)
180 android.widget.Adapter#getView(int,View,ViewGroup) getView()} is <em>not</em> null, then the loca
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListViewCompat.java 161 final ListAdapter adapter = getAdapter(); local
162 if (adapter == null || isInTouchMode()) {
166 final int count = adapter.getCount();
170 while (position < count && !adapter.isEnabled(position)) {
175 while (position >= 0 && !adapter.isEnabled(position)) {
256 * should be the last available child from the adapter.
283 final ListAdapter adapter = getAdapter(); local
285 if (adapter == null) {
300 int count = adapter.getCount();
302 int newType = adapter.getItemViewType(i)
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewCacheTest.java 103 RecyclerView.Adapter mockAdapter = mock(RecyclerView.Adapter.class);
163 RecyclerView.Adapter mockAdapter = mock(RecyclerView.Adapter.class);
213 RecyclerView.Adapter mockAdapter = mock(RecyclerView.Adapter.class);
259 final RecyclerView.Adapter adapter = new RecyclerView.Adapter() { local
278 mRecyclerView.setAdapter(adapter);
    [all...]
  /art/compiler/optimizing/
side_effects_analysis.h 32 graph->GetArena()->Adapter(kArenaAllocSideEffectsAnalysis)),
34 graph->GetArena()->Adapter(kArenaAllocSideEffectsAnalysis)) {}
ssa_phi_elimination.h 34 worklist_(graph->GetArena()->Adapter(kArenaAllocSsaPhiElimination)) {
63 worklist_(graph->GetArena()->Adapter(kArenaAllocSsaPhiElimination)) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
DialogTestListActivity.java 73 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); local
75 setupTests(adapter);
77 adapter.registerDataSetObserver(new DataSetObserver() {
84 setTestListAdapter(adapter);
94 * Subclasses must add their tests items to the provided adapter(usually instances of
97 * @param adapter The adapter to add test items to.
99 protected abstract void setupTests(ArrayTestListAdapter adapter);
  /developers/build/prebuilts/gradle/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
PlanetAdapter.java 28 * Adapter for the planet data used in our drawer menu,
30 public class PlanetAdapter extends RecyclerView.Adapter<PlanetAdapter.ViewHolder> {
  /developers/samples/android/ui/views/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
PlanetAdapter.java 28 * Adapter for the planet data used in our drawer menu,
30 public class PlanetAdapter extends RecyclerView.Adapter<PlanetAdapter.ViewHolder> {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List2.java 41 ListAdapter adapter = new SimpleCursorAdapter(this, local
50 setListAdapter(adapter);
  /development/samples/XmlAdapters/res/xml/
contacts.xml 17 <cursor-adapter xmlns:android="http://schemas.android.com/apk/res/android"
30 </cursor-adapter>

Completed in 543 milliseconds

<<11121314151617181920>>