HomeSort by relevance Sort by last modified time
    Searched full:provider (Results 276 - 300 of 4854) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/provider/
AndroidManifest.xml 19 package="com.android.cts.provider">
30 <service android:name="android.provider.cts.contacts.account.MockAccountService"
31 process="com.android.cts.provider"
45 android:label="CTS tests of android.provider"/>
47 <instrumentation android:name="android.provider.cts.CalendarTest$CalendarEmmaTestRunner"
49 android:label="Augmented CTS tests of Calendar provider"/>
  /development/samples/WeatherListWidget/
AndroidManifest.xml 28 <!-- The widget provider -->
33 <!-- This specifies the widget provider info -->
34 <meta-data android:name="android.appwidget.provider"
43 <!-- The content provider serving the (fake) weather data -->
44 <provider android:name="WeatherDataProvider"
45 android:authorities="com.example.android.weatherlistwidget.provider" />
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProviderContract.java 4 import android.provider.BaseColumns;
8 * Defines constants for accessing the content provider defined in DataProvider. A content provider
9 * contract assists in accessing the provider's available content URIs, column names, MIME types,
19 // The provider's authority
94 // The content provider database name
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
SecretKeyFactoryTest.java 27 import java.security.Provider;
60 private static Provider defaultProvider = null;
129 assertEquals("Incorrect provider", secKF.getProvider(), defaultProvider);
135 assertNull("Provider must be null", secKF.getProvider());
183 * Test for <code>getInstance(String algorithm, String provider)</code>
213 * Test for <code>getInstance(String algorithm, String provider)</code>
216 * throws IllegalArgumentException when provider is null or empty;
217 * throws NoSuchProviderException when provider has invalid value
230 .concat(validValues[i]).concat(" provider: null"));
236 .concat(validValues[i]).concat(" provider: empty"))
    [all...]
  /external/chromium/chrome/browser/autocomplete/
search_provider.h 5 // This file contains the Search autocomplete provider. This provider is
34 // Autocomplete provider for searches and suggestions from a search engine.
40 // Initially the provider creates a match that searches for the current input
42 // comes back, the provider creates and returns matches for the best
60 // This method also marks the search provider as no longer needing to wait for
78 // ID used in creating URLFetcher for default provider's suggest results.
81 // ID used in creating URLFetcher for keyword provider's suggest results.
89 // . The default provider. This corresponds to the user's default search
92 // . The keyword provider. This is used if the user has typed in a keyword
    [all...]
autocomplete.h 25 // finished processing the query. When a provider gets more matches or finishes
48 // Search Primary Provider (past query in history within 2 days) | 1399**
49 // Search Primary Provider (what you typed) | 1300
53 // Search Primary Provider (past query in history older than 2 days) | 1050--
56 // Search Primary Provider (navigational suggestion) | 800++
58 // Search Primary Provider (suggestion) | 600++
63 // Search Secondary Provider (what you typed) | 250
64 // Search Secondary Provider (past query in history) | 200--
65 // Search Secondary Provider (navigational suggestion) | 150++
66 // Search Secondary Provider (suggestion) | 100+
    [all...]
  /external/chromium/chrome/browser/net/
service_providers_win.cc 38 WinsockNamespaceProvider provider; local
40 provider.name = namespace_providers[i].lpszIdentifier;
41 provider.active = TRUE == namespace_providers[i].fActive;
42 provider.version = namespace_providers[i].dwVersion;
43 provider.type = namespace_providers[i].dwNameSpace;
45 namespace_list->push_back(provider);
  /external/chromium_org/cc/layers/
video_frame_provider.h 27 // Provider will call this method to tell the client to stop using it.
32 // Notifies the provider's client that a call to GetCurrentFrame() will
36 // Notifies the provider's client of a new UV transform matrix to be used.
44 // that the provider is not destroyed before this call returns.
50 // Only the current provider client should call this function.
56 // provider client should call this function.
video_frame_provider_client_impl.cc 16 VideoFrameProvider* provider) {
18 new VideoFrameProviderClientImpl(provider));
24 VideoFrameProvider* provider)
25 : provider_(provider) {
28 // frame provider client that does not require a lock. The same is true of
69 // Block the provider from shutting down until this client is done
  /external/chromium_org/chrome/browser/net/
service_providers_win.cc 38 WinsockNamespaceProvider provider; local
40 provider.name = namespace_providers[i].lpszIdentifier;
41 provider.active = TRUE == namespace_providers[i].fActive;
42 provider.version = namespace_providers[i].dwVersion;
43 provider.type = namespace_providers[i].dwNameSpace;
45 namespace_list->push_back(provider);
  /external/chromium_org/chrome/browser/resources/net_internals/
modules_view.js 9 * For each layered service provider, shows the name, dll, and type
10 * information. For each namespace provider, shows the name and
73 * Returns type of a layered service provider.
92 * Returns socket type of a layered service provider as a string.
106 * Returns protocol type of a layered service provider as a string.
124 * Returns the type of a namespace provider as a string.
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 77 IGeocodeProvider provider = getService(); local
78 if (provider != null) {
80 return provider.getFromLocation(latitude, longitude, maxResults, params, addrs);
92 IGeocodeProvider provider = getService(); local
93 if (provider != null) {
95 return provider.getFromLocationName(locationName, lowerLeftLatitude,
  /libcore/luni/src/test/java/tests/security/cert/
CertPathValidator1Test.java 30 import java.security.Provider;
59 private static Provider defaultProvider;
160 * Test for <code>getInstance(String algorithm, String provider)</code> method
161 * Assertion: throws IllegalArgumentException when provider is null or empty
163 * FIXME: verify what exception will be thrown if provider is empty
171 String provider = null; local
174 CertPathValidator.getInstance(validValues[i], provider);
186 * Test for <code>getInstance(String algorithm, String provider)</code> method
188 * throws NoSuchProviderException when provider has invalid value
208 * Test for <code>getInstance(String algorithm, String provider)</code> metho
    [all...]
  /libcore/luni/src/test/java/tests/targets/security/
MessageDigestTestMD2.java 21 import java.security.Provider;
48 Provider provider = new MyProvider(); local
49 Security.addProvider(provider);
56 Security.removeProvider(provider.getName());
60 public final class MyProvider extends Provider {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 32 import android.provider.BaseColumns;
33 import android.provider.Contacts.ContactMethods;
34 import android.provider.Contacts.Extensions;
35 import android.provider.Contacts.People;
36 import android.provider.ContactsContract;
37 import android.provider.ContactsContract.CommonDataKinds.Email;
38 import android.provider.ContactsContract.CommonDataKinds.GroupMembership;
39 import android.provider.ContactsContract.CommonDataKinds.Im;
40 import android.provider.ContactsContract.CommonDataKinds.Note;
41 import android.provider.ContactsContract.CommonDataKinds.Organization
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLContext1Test.java 25 import java.security.Provider;
64 private static Provider defaultProvider = null;
70 private static final String NotSupportedMsg = "There is no suitable provider for SSLContext";
147 fail("NoSuchAlgorithmException was not thrown as expected for provider: "
155 * Test for <code>getInstance(String protocol, String provider)</code>
156 * method Assertion: throws IllegalArgumentException when provider is null
165 String provider = null; local
168 SSLContext.getInstance(defaultProtocol, provider);
169 fail("IllegalArgumentException must be thrown when provider is null");
174 fail("IllegalArgumentException must be thrown when provider is empty")
261 Provider provider = null; local
    [all...]
KeyManagerFactory2Test.java 25 import java.security.Provider;
60 Provider mProv;
66 "Provider for testing", srvKeyManagerFactory.concat(".")
152 assertEquals("Incorrect provider", keyMF.getProvider(), mProv);
158 * Test for <code>getInstance(String algorithm, String provider)</code>
163 * throws IllegalArgumentException when provider is null or empty;
164 * throws NoSuchProviderException when provider is available;
187 fail("IllegalArgumentException must be thrown when provider is null (algorithm: "
193 fail("IllegalArgumentException must be thrown when provider is empty (algorithm: "
204 .concat(invalidValues[i]).concat(" provider: "
    [all...]
SSLContext2Test.java 23 import java.security.Provider;
60 Provider mProv;
65 mProv = (new SpiEngUtils()).new MyProvider("MySSLContextProvider", "Provider for testing",
178 assertEquals("Incorrect provider", sslC.getProvider(), mProv);
184 * Test for <code>getInstance(String protocol, String provider)</code>
189 * throws IllegalArgumentException when provider is null or empty;
190 * throws NoSuchProviderException when provider is available;
214 fail("IllegalArgumentException must be thrown when provider is null (protocol: "
220 fail("IllegalArgumentException must be thrown when provider is empty (protocol: "
230 .concat(invalidValues[i]).concat(" provider: "
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationManagerTest.java 38 import android.provider.Settings;
45 * android.permission.ACCESS_MOCK_LOCATION to mock provider
46 * android.permission.ACCESS_COARSE_LOCATION to access network provider
47 * android.permission.ACCESS_FINE_LOCATION to access GPS provider
48 * android.permission.ACCESS_LOCATION_EXTRA_COMMANDS to send extra commands to GPS provider
81 // remove test provider if left over from an aborted run
91 * Helper method to add a test provider with given name.
108 LocationProvider provider = mManager.getProvider(TEST_MOCK_PROVIDER_NAME); local
109 if (provider != null) {
123 LocationProvider provider = mManager.getProvider(TEST_MOCK_PROVIDER_NAME) local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.provider.Contacts.ContactMethods.html 10 android.provider.Contacts.ContactMethods
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html" target="_top"><font size="+2"><code>Contacts.ContactMethods</code></font></A>
87 <A NAME="android.provider.Contacts.ContactMethods.addPostalLocation_changed(android.content.Context, long, double, double)"></A>
88 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#addPostalLocation(android.content.Context, long, double, double)" target="_top"><code>addPostalLocation</code></A>(<code>Context,</nobr> long<nobr>,</nobr> double<nobr>,</nobr> double<nobr><nobr></code>) </nobr>
97 <A NAME="android.provider.Contacts.ContactMethods.decodeImProtocol_changed(java.lang.String)"></A>
98 <nobr><code>Object</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#decodeImProtocol(java.lang.String)" target="_top"><code>decodeImProtocol</code></A>(<code>String</code>) </nobr>
107 <A NAME="android.provider.Contacts.ContactMethods.encodeCustomImProtocol_changed(java.lang.String)"></A>
108 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#encodeCustomImProtocol(java.lang.String)" target="_top"><code>encodeCustomImProtocol</code></A>(<code>String</code>) </nobr>
117 <A NAME="android.provider.Contacts.ContactMethods.encodePredefinedImProtocol_changed(int)"></A
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/17/changes/
fields_index_changes.html 69 <nobr><A HREF="android.provider.Settings.Secure.html#android.provider.Settings.Secure.ADB_ENABLED" class="hiddenlink" target="rightframe">ADB_ENABLED</A>
71 <nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.AIRPLANE_MODE_ON" class="hiddenlink" target="rightframe">AIRPLANE_MODE_ON</A>
73 <nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.AIRPLANE_MODE_RADIOS" class="hiddenlink" target="rightframe">AIRPLANE_MODE_RADIOS</A>
75 <nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ALWAYS_FINISH_ACTIVITIES" class="hiddenlink" target="rightframe">ALWAYS_FINISH_ACTIVITIES</A>
77 <nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ANIMATOR_DURATION_SCALE" class="hiddenlink" target="rightframe">ANIMATOR_DURATION_ (…)
    [all...]
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanism_ImplTest.java 26 import java.security.Provider;
66 Provider mProv;
71 "Provider for ExemptionMechanism testing",
173 assertEquals("Incorrect provider", exMech.getProvider(), mProv);
179 * Test for <code>getInstance(String algorithm, String provider)</code>
184 * throws IllegalArgumentException when provider is null;
185 * throws NoSuchProviderException when provider is available;
211 fail("IllegalArgumentException must be thrown when provider is null (algorithm: "
222 .concat(invalidValues[i]).concat(" provider: ")
234 assertEquals("Incorrect provider", exMech.getProvider().getName()
    [all...]
KeyAgreement_ImplTest.java 29 import java.security.Provider;
67 Provider mProv;
71 mProv = (new SpiEngUtils()).new MyProvider("MyKAProvider", "Testing provider",
149 assertEquals("Incorrect provider", keyAgr.getProvider(), mProv);
154 * Test for <code>getInstance(String algorithm, String provider)</code>
159 * throws IllegalArgumentException when provider is null or null;
160 * throws NoSuchProviderException when provider is available;
186 fail("IllegalArgumentException must be thrown when provider is null (algorithm: "
192 fail("IllegalArgumentException must be thrown when provider is empty (algorithm: "
201 .concat(invalidValues[i]).concat(" provider: "
    [all...]
KeyGenerator_ImplTest.java 28 import java.security.Provider;
65 Provider mProv;
69 mProv = (new SpiEngUtils()).new MyProvider("MyKGProvider", "Testing provider",
153 assertEquals("Incorrect provider", keyGen.getProvider(), mProv);
159 * Test for <code>getInstance(String algorithm, String provider)</code>
164 * throws IllegalArgumentException when provider is null or empty;
165 * throws NoSuchProviderException when provider is available;
190 fail("IllegalArgumentException must be thrown when provider is null (algorithm: "
196 fail("IllegalArgumentException must be thrown when provider is empty (algorithm: "
205 .concat(invalidValues[i]).concat(" provider: "
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathValidator2Test.java 27 import java.security.Provider;
60 Provider mProv;
65 "Provider for testing", CertPathValidator1Test.srvCertPathValidator
138 assertEquals("Incorrect provider", cerPV.getProvider(), mProv);
144 * Test for <code>getInstance(String algorithm, String provider)</code> method
148 * throws IllegalArgumentException when provider is null or empty;
149 * throws NoSuchProviderException when provider is available;
174 fail("IllegalArgumentException must be thrown when provider is null (type: "
180 fail("IllegalArgumentException must be thrown when provider is empty (type: "
191 .concat(validValues[i]).concat(" provider: "
    [all...]

Completed in 883 milliseconds

<<11121314151617181920>>