/hardware/qcom/gps/msmcobalt/core/ |
LocApiBase.cpp | 160 void LocApiBase::addAdapter(LocAdapterBase* adapter) 162 for (int i = 0; i < MAX_ADAPTERS && mLocAdapters[i] != adapter; i++) { 164 mLocAdapters[i] = adapter; 166 (adapter->getEvtMask()))); 172 void LocApiBase::removeAdapter(LocAdapterBase* adapter) 177 if (mLocAdapters[i] == adapter) { 190 // i now should point to a none NULL adapter within valid 323 // loop through adapters, and deliver to the first handling adapter. 330 // loop through adapters, and deliver to the first handling adapter. 336 // loop through adapters, and deliver to the first handling adapter [all...] |
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
AddPrinterActivity.java | 45 import android.widget.Adapter; 225 * Marks an adapter that can can perform an action for a position in it's list. 242 * An adapter presenting multiple sub adapters as a single combined adapter. 249 * Create a combined adapter. 285 * Find the sub adapter and the position in the sub-adapter the position in the combined 286 * adapter refers to. 288 * @param position The position in the combined adapter 290 * @return The pair of adapter and position in sub adapte 295 ActionAdapter adapter = mAdapters.get(i); local 313 Adapter adapter = mAdapters.get(i); local [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ExpandableListViewBasicTest.java | 116 assertTrue("Adapter is not an instance of the base adapter", 118 final BaseExpandableListAdapter adapter = (BaseExpandableListAdapter) mAdapter; local 122 adapter.notifyDataSetChanged();
|
/developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/Application/src/main/java/com/example/android/actionbarcompat/listpopupmenu/ |
PopupListFragment.java | 74 final PopupAdapter adapter = (PopupAdapter) getListAdapter(); local 91 // Remove the item from the adapter 92 adapter.remove(item); 105 * A simple array adapter that creates a list of cheeses.
|
/developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
MainActivity.java | 42 listView.setAdapter(new Adapter(this)); 79 private static final class Adapter extends WearableListView.Adapter { 83 private Adapter(Context context) {
|
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-ListPopupMenu/Application/src/main/java/com/example/android/actionbarcompat/listpopupmenu/ |
PopupListFragment.java | 74 final PopupAdapter adapter = (PopupAdapter) getListAdapter(); local 91 // Remove the item from the adapter 92 adapter.remove(item); 105 * A simple array adapter that creates a list of cheeses.
|
/developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
MainActivity.java | 42 listView.setAdapter(new Adapter(this)); 79 private static final class Adapter extends WearableListView.Adapter { 83 private Adapter(Context context) {
|
/development/samples/browseable/ActionBarCompat-ListPopupMenu/src/com.example.android.actionbarcompat.listpopupmenu/ |
PopupListFragment.java | 74 final PopupAdapter adapter = (PopupAdapter) getListAdapter(); local 91 // Remove the item from the adapter 92 adapter.remove(item); 105 * A simple array adapter that creates a list of cheeses.
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
MainActivity.java | 42 listView.setAdapter(new Adapter(this)); 79 private static final class Adapter extends WearableListView.Adapter { 83 private Adapter(Context context) {
|
/development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/ |
ListViewAnimations.java | 56 final StableArrayAdapter adapter = new StableArrayAdapter(this, local 58 listview.setAdapter(adapter); 71 adapter.notifyDataSetChanged(); 94 adapter.notifyDataSetChanged();
|
/external/autotest/client/cros/cellular/ |
emulator_config.py | 25 adapter = c['gpib_adapter'] 29 hostname=adapter['address'], 30 port=adapter['ip_port'], 31 gpib_address=adapter['gpib_address']),
|
/external/autotest/client/cros/multimedia/ |
local_facade_factory.py | 15 """Initializes the local facade adapter objects."""
|
/external/autotest/server/site_tests/bluetooth_Sanity_AdapterPresent/ |
control | 15 Verify that the device has a Bluetooth adapter and that it's visible to both
|
/external/autotest/server/site_tests/bluetooth_Sanity_ValidAddress/ |
control | 15 Verify that the device's Bluetooth adapter has a valid address.
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/ |
CHANGELOG.md | 5 * Fix: htmlparser2 tree adapter `DocumentType.data` property rendering (GH [#45](https://github.com/inikulin/parse5/issues/45)). 20 * Fix: text node in `<template>` serialization problem with custom tree adapter (GH [#38](https://github.com/inikulin/parse5/issues/38)). 56 * Fix: siblings calculation bug in `appendChild` in `htmlparser2` tree adapter. 60 * Add: [htmlparser2 tree adapter](https://github.com/inikulin/parse5/#-treeadaptershtmlparser2).
|
/external/google-tv-pairing-protocol/cpp/src/polo/wire/ |
polowireadapter.cc | 15 // Abstract adapter for sending and receiving Polo protocol messages.
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
TreeTraverserTest.java | 60 private static final TreeTraverser<Tree> ADAPTER = new TreeTraverser<Tree>() { 129 assertThat(iterationOrder(ADAPTER.preOrderTraversal(h))).isEqualTo("hdabcegf"); 134 assertThat(iterationOrder(ADAPTER.postOrderTraversal(h))).isEqualTo("abcdefgh"); 139 assertThat(iterationOrder(ADAPTER.breadthFirstTraversal(h))).isEqualTo("hdegabcf");
|
/external/guice/extensions/dagger-adapter/ |
build.xml | 3 <project name="guice-dagger-adapter" basedir="." default="jar">
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/ |
TableItemComparator.java | 19 * Adapter to sort table items based on their coverage nodes.
|
/external/kernel-headers/original/uapi/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
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/ |
DirectReadOnlyFloatBufferAdapter.java | 27 * <li>After a byte buffer instance is wrapped, it becomes privately owned by the adapter. It must NOT be accessed outside the 28 * adapter any more.</li> 29 * <li>The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position
|
DirectReadOnlyIntBufferAdapter.java | 27 * <li>After a byte buffer instance is wrapped, it becomes privately owned by the adapter. It must NOT be accessed outside the 28 * adapter any more.</li> 29 * <li>The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position
|
DirectReadOnlyShortBufferAdapter.java | 27 * <li>After a byte buffer instance is wrapped, it becomes privately owned by the adapter. It must NOT be accessed outside the 28 * adapter any more.</li> 29 * <li>The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position
|
DirectReadWriteFloatBufferAdapter.java | 27 * <li>After a byte buffer instance is wrapped, it becomes privately owned by the adapter. It must NOT be accessed outside the 28 * adapter any more.</li> 29 * <li>The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position
|
DirectReadWriteIntBufferAdapter.java | 27 * <li>After a byte buffer instance is wrapped, it becomes privately owned by the adapter. It must NOT be accessed outside the 28 * adapter any more.</li> 29 * <li>The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position
|