/prebuilts/tools/common/m2/internal/jdom/jdom/1.0/ |
jdom-1.0-sources.jar | |
/development/samples/browseable/BasicSyncAdapter/ |
_index.jd | 13 <p>To learn more about creating and using sync adapters, see 14 <a href="{@docRoot}training/sync-adapters/index.html">Transferring Data Using Sync Adapters</a>.</p>
|
/external/chromium_org/chromeos/dbus/ |
fake_nfc_manager_client.cc | 76 // will copy all members of |adapters_| to |adapters|. 77 std::vector<dbus::ObjectPath> adapters(adapters_.begin(), adapters_.end()); 78 properties_->adapters.ReplaceValue(adapters); 89 std::vector<dbus::ObjectPath> adapters(adapters_.begin(), adapters_.end()); 90 properties_->adapters.ReplaceValue(adapters);
|
nfc_manager_client.h | 25 dbus::Property<std::vector<dbus::ObjectPath> > adapters; member in struct:chromeos::NfcManagerClient::Properties 33 // to be notified when NFC adapters get added or removed. 36 // NFC adapters, use NfcAdapterClient::Observer instead.
|
fake_nfc_manager_client.h | 43 // Methods to simulate adapters getting added and removed. 57 // Set containing the currently simulated adapters.
|
nfc_adapter_client.cc | 151 // Ignore changes to properties other than "Adapters". 152 if (property_name != manager_properties->adapters.name()) 155 // Update the known adapters. 156 VLOG(1) << "NFC adapters changed."; 158 manager_properties->adapters.value(); 195 // new NFC adapters that appear.
|
fake_nfc_adapter_client.h | 58 // The object paths for the adapters that are being emulated. 70 // Fake properties that are returned for the emulated adapters.
|
/development/samples/XmlAdapters/res/values/ |
attrs.xml | 31 <!-- Attributes used in bind items for XML cursor adapters. --> 47 android.widget.Adapters.CursorBinder.</li> 53 <!-- Attributes used in select items for XML cursor adapters.--> 59 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. --> 67 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. --> 72 android.widget.Adapters.CursorTransformation. Mandatory if "withExpression"
|
strings.xml | 18 <string name="app_name">Xml Adapters</string>
|
/development/samples/XmlAdapters/ |
_index.html | 1 <p>This sample demonstrates the use of XML adapters.</p> 7 <a href="../../../reference/android/widget/Adapters.html"><code>Adapters</code></a>
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
UrlImageBinder.java | 28 public class UrlImageBinder extends Adapters.CursorBinder { 32 public UrlImageBinder(Context context, Adapters.CursorTransformation transformation) {
|
ContactsListActivity.java | 35 setListAdapter(Adapters.loadAdapter(this, R.xml.contacts));
|
PhotosListActivity.java | 36 setListAdapter(Adapters.loadCursorAdapter(this, R.xml.photos,
|
RssReaderActivity.java | 38 setListAdapter(Adapters.loadCursorAdapter(this, R.xml.rss_feed,
|
Adapters.java | 47 * <p>This class can be used to load {@link android.widget.Adapter adapters} defined in 48 * XML resources. XML-defined adapters can be used to easily create adapters in your 49 * own application or to pass adapters to other processes.</p> 51 * <h2>Types of adapters</h2> 52 * <p>Adapters defined using XML resources can only be one of the following supported 53 * types. Arbitrary adapters are not supported to guarantee the safety of the loaded 54 * code when adapters are loaded across packages.</p> 80 * {@link Adapters#loadCursorAdapter(android.content.Context, int, String, Object[])}. 84 * {@link Adapters#loadCursorAdapter(android.content.Context, int, String, Object[])} [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
system_network.idl | 26 // Retrieves information about local adapters on this system.
|
/external/chromium_org/net/proxy/ |
dhcp_proxy_script_fetcher_win.cc | 24 // adapters enabled for DHCP in total. 28 // systems reporting up to 100+ adapters (this must be some very weird 32 // report a huge number of network adapters should not run out of 34 // getting back results for any responsive adapters. 36 // The ~99.8% of systems that have 6 or fewer network adapters will 196 // If the only pending adapters are those less preferred than one 323 scoped_ptr_malloc<IP_ADAPTER_ADDRESSES> adapters; local 329 adapters.reset( 338 adapters.get(), 358 // There are no adapters that we care about [all...] |
/frameworks/opt/mailcommon/java/com/android/mailcommon/ |
MultiAdapterSpinner.java | 37 * <p>A spinner-like widget that combines data and views from multiple adapters (via MergedAdapter) 38 * and forwards certain events to those adapters. This widget also supports clickable but 46 * <p>Clients must provide a set of adapters which the widget will use to load dropdown views, 108 public void setAdapters(FancySpinnerAdapter... adapters) { 109 mAdapter.setAdapters(adapters);
|
MergedAdapter.java | 32 * An adapter that combines items from multiple provided adapters into a single list. 67 public void setAdapters(T... adapters) { 74 mAdapters = Arrays.asList(adapters); 101 * Adapter by iterating through Adapters and summing their counts until the merged position is
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
MultiAdapterSpinner.java | 36 * <p>A spinner-like widget that combines data and views from multiple adapters (via MergedAdapter) 37 * and forwards certain events to those adapters. This widget also supports clickable but 45 * <p>Clients must provide a set of adapters which the widget will use to load dropdown views, 107 public void setAdapters(FancySpinnerAdapter... adapters) { 108 mAdapter.setAdapters(adapters);
|
MergedAdapter.java | 31 * An adapter that combines items from multiple provided adapters into a single list. 66 public void setAdapters(T... adapters) { 73 mAdapters = Arrays.asList(adapters); 100 * Adapter by iterating through Adapters and summing their counts until the merged position is
|
/external/chromium/net/base/ |
net_util_win.cc | 93 IP_ADAPTER_ADDRESSES *adapters = local 95 result = GetAdaptersAddresses(AF_UNSPEC, 0, NULL, adapters, &len); 101 for (IP_ADAPTER_ADDRESSES *adapter = adapters; adapter != NULL;
|
/packages/apps/Settings/src/com/android/settings/ |
AccountPreference.java | 35 public static final int SYNC_ENABLED = 0; // all know sync adapters are enabled and OK 36 public static final int SYNC_DISABLED = 1; // no sync adapters are enabled 37 public static final int SYNC_ERROR = 2; // one or more sync adapters have a problem
|
/packages/apps/Email/emailsync/src/com/android/emailsync/ |
MailboxAlarmReceiver.java | 27 * also be used for individual sync adapters, but this isn't implemented at the present time.
|
/external/chromium_org/device/nfc/ |
nfc_adapter.h | 21 // NFC tags and remote NFC adapters on platforms that support NFC. Through 26 // notified when new adapters are added/removed and when remote NFC tags and 29 // A system can contain more than one NFC adapter (e.g. external USB adapters) 31 // its best to represent all underlying adapters but will only allow 37 // Interface for observing changes from NFC adapters. 98 // multiple adapters, check the |adapter| parameter of observer methods to 105 // present, for example, if all physical adapters that can back it up were
|