HomeSort by relevance Sort by last modified time
    Searched full:providers (Results 351 - 375 of 1126) sorted by null

<<11121314151617181920>>

  /frameworks/base/docs/html/training/sync-adapters/
index.jd 23 <a href="{@docRoot}guide/topics/providers/content-providers.html">Content Providers</a>
  /frameworks/base/location/java/android/location/
LocationProvider.java 23 * An abstract superclass for location providers. A location provider
28 * for example, some providers require GPS hardware and visibility to
33 * Criteria} class allows providers to be selected based on
  /packages/apps/Email/src/com/android/email/preferences/
EmailPreferenceMigrator.java 29 import com.android.mail.providers.Account;
30 import com.android.mail.providers.Folder;
31 import com.android.mail.providers.UIProvider;
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
FromAddressSpinner.java 26 import com.android.mail.providers.Account;
27 import com.android.mail.providers.Message;
28 import com.android.mail.providers.ReplyFromAccount;
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MessageModification.java 17 package com.android.mail.providers;
22 import com.android.mail.providers.UIProvider.DraftType;
23 import com.android.mail.providers.UIProvider.MessageColumns;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SecureConversationViewFragment.java 35 import com.android.mail.providers.Account;
36 import com.android.mail.providers.Address;
37 import com.android.mail.providers.Conversation;
SuppressNotificationReceiver.java 20 import com.android.mail.providers.Account;
21 import com.android.mail.providers.Folder;
22 import com.android.mail.providers.UIProvider;
  /packages/providers/CalendarProvider/
AndroidManifest.xml 18 package="com.android.providers.calendar"
104 <action android:name="com.android.providers.calendar.intent.CalendarProvider2" />
105 <category android:name="com.android.providers.calendar"/>
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 17 package com.android.providers.contacts.database;
20 import static com.android.providers.contacts.ContactsDatabaseHelper.Tables;
29 import com.android.providers.contacts.util.Clock;
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
TrampolineActivity.java 17 package com.android.providers.downloads.ui;
35 import com.android.providers.downloads.Constants;
36 import com.android.providers.downloads.OpenHelper;
  /cts/tests/tests/location2/src/android/location2/cts/
LocationManagerTest.java 211 List<String> providers = mManager.getProviders(false); local
213 assertFalse(hasProvider(providers, LocationManager.PASSIVE_PROVIDER));
214 assertFalse(hasProvider(providers, LocationManager.GPS_PROVIDER));
217 private boolean hasProvider(List<String> providers, String providerName) {
218 for (String provider : providers) {
  /frameworks/base/docs/html/guide/topics/providers/
document-provider.jd 48 <a href="{@docRoot}guide/topics/providers/content-provider-basics.html">
66 The Android platform includes several built-in document providers, such as
72 files returned by document providers.</li>
75 document providers that satisfy the client app's search criteria.</li>
80 <li>Lets users browse content from all document providers, not just a single app.</li>
85 providers, which only appear if the drive is plugged in. </li>
93 <p><img src="{@docRoot}images/providers/storage_datamodel.png" alt="data model" /></p>
139 <p><img src="{@docRoot}images/providers/storage_dataflow.png" alt="app" /></p>
146 <li>In the Storage Access Framework, providers and clients don't interact
159 though the underlying document providers may be very different. For example, figure
    [all...]
content-provider-basics.jd 111 <a href="{@docRoot}guide/topics/providers/content-provider-creating.html">
115 <a href="{@docRoot}guide/topics/providers/calendar-provider.html">
126 the data. However, content providers are primarily intended to be used by other
127 applications, which access the provider using a provider client object. Together, providers
135 <li>How content providers work.</li>
138 <li>Other API features that facilitate working with providers.</li>
150 For example, one of the built-in providers in the Android platform is the user dictionary, which
315 comparing the authority to a system table of known providers. The
336 Many providers allow you to access a single row in a table by appending an ID value
399 The role of permissions in accessing providers is described in more detail in the sectio
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootsCache.java 100 * Gather roots from all known storage providers.
115 * Gather roots from storage providers belonging to given package name.
125 * Gather roots from storage providers belonging to given authority.
192 final List<ResolveInfo> providers = pm.queryIntentContentProviders(intent, 0); local
193 for (ResolveInfo info : providers) {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SecureRandom2Test.java 155 Provider[] providers = Security local
157 if (providers != null) {
158 for (int i = 0; i < providers.length; i++) {
160 .getInstance("SHA1PRNG", providers[i].getName());
163 fail("No providers support SHA1PRNG");
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 17 package com.android.providers.contacts;
36 import com.android.providers.contacts.ContactsDatabaseHelper.AggregatedPresenceColumns;
37 import com.android.providers.contacts.ContactsDatabaseHelper.ContactsColumns;
38 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
39 import com.android.providers.contacts.ContactsDatabaseHelper.Views;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java 17 package com.android.providers.contacts;
31 import com.android.providers.contacts.testutil.DataUtil;
32 import com.android.providers.contacts.testutil.RawContactUtil;
40 * adb shell am instrument -e class com.android.providers.contacts.GlobalSearchSupportTest -w \
41 * com.android.providers.contacts.tests/android.test.InstrumentationTestRunner
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SelectedConversationsActionMenu.java 31 import com.android.mail.providers.Account;
32 import com.android.mail.providers.AccountObserver;
33 import com.android.mail.providers.Conversation;
34 import com.android.mail.providers.Folder;
35 import com.android.mail.providers.MailAppProvider;
36 import com.android.mail.providers.Settings;
37 import com.android.mail.providers.UIProvider;
38 import com.android.mail.providers.UIProvider.AccountCapabilities;
39 import com.android.mail.providers.UIProvider.ConversationColumns;
40 import com.android.mail.providers.UIProvider.FolderCapabilities
    [all...]
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 93 // providers.
164 // Set up fine and/or coarse location providers depending on whether the fine provider or
165 // both providers button is pressed.
185 // Request updates from both fine (gps) and coarse (network) providers.
191 // If both providers return last known locations, compare the two and use the better
232 // Callback method for the "both providers" button.
329 /** Checks whether two providers are the same */
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_provider.h 31 // change scoring algorithms or add new providers. For example,
34 // idea of how scoring works and what providers are affecting which
116 // There are two possible providers for search suggestions. If the user has
121 // Search providers may supply relevance values along with their results to be
124 // The value column gives the ranking returned from the various providers.
257 // e.g. we convert a Unicode hostname to punycode, other providers will show
260 // providers generally can't do anything with).
autocomplete_provider_unittest.cc 171 // |provider2_ptr| are updated to point to the new providers if non-NULL.
176 // Runs a query on the input "a", and makes sure both providers' input is
248 ACProviders providers; local
250 // Construct two new providers, with either the same or different prefixes.
257 providers.push_back(provider1);
265 providers.push_back(provider2);
267 // Reset the controller to contain our new providers.
269 // We're going to swap the providers vector, but the old vector should be
272 controller_->providers_.swap(providers);
276 // The providers don't complete synchronously, so listen for "result updated
    [all...]
  /external/chromium_org/chrome/browser/policy/
browser_policy_connector.cc 216 // of the policy providers.
272 // Initialization of some of the providers requires the FILE thread; make
387 // |providers| in decreasing order of priority.
388 std::vector<ConfigurationPolicyProvider*> providers; local
390 providers.push_back(g_testing_provider);
393 providers.push_back(platform_provider_.get());
396 providers.push_back(device_cloud_policy_manager_.get());
397 providers.push_back(&global_user_cloud_policy_provider_);
400 policy_service_.reset(new PolicyServiceImpl(providers));
525 // Exclude many of the larger public email providers as we know these user
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 17 package com.android.providers.settings;
819 String providers = ""; local
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl2Test.java 87 * 4 different providers define the same mechanism and refer to the same
138 * 4 different providers define different mechanism and refer to the same
188 * 2 different providers define the same mechanism and refer to the
291 * 4 different providers define different mechanism and refer to the 2
360 * 4 different providers define different mechanism and refer to the same
410 * 2 different providers define the same mechanism and refer to the
  /libcore/luni/src/test/java/libcore/java/security/
KeyPairGeneratorTest.java 57 Provider[] providers = Security.getProviders(); local
58 for (Provider provider : providers) {
233 Provider[] providers = Security.getProviders(); local
234 for (Provider p : providers) {
346 final Provider[] providers = Security.getProviders(); local
347 for (final Provider p : providers) {

Completed in 1240 milliseconds

<<11121314151617181920>>