HomeSort by relevance Sort by last modified time
    Searched full:criteria (Results 1 - 25 of 203) sorted by null

1 2 3 4 5 6 7 8 9

  /cts/tests/tests/location/src/android/location/cts/
CriteriaTest.java 25 import android.location.Criteria;
29 @TestTargetClass(Criteria.class)
34 method = "Criteria",
39 method = "Criteria",
40 args = {android.location.Criteria.class}
46 new Criteria();
48 Criteria c = new Criteria();
49 c.setAccuracy(Criteria.ACCURACY_FINE);
53 c.setPowerRequirement(Criteria.POWER_HIGH)
55 Criteria criteria = new Criteria(c); local
77 Criteria criteria = new Criteria(); local
96 Criteria criteria = new Criteria(); local
136 Criteria criteria = new Criteria(); local
172 Criteria criteria = new Criteria(); local
194 Criteria criteria = new Criteria(); local
216 Criteria criteria = new Criteria(); local
238 Criteria criteria = new Criteria(); local
254 Criteria criteria = new Criteria(); local
    [all...]
LocationProviderTest.java 24 import android.location.Criteria;
54 args = {android.location.Criteria.class}
59 Criteria criteria = new Criteria(); local
60 criteria.setAltitudeRequired(true);
61 criteria.setBearingRequired(true);
62 assertTrue(locationProvider.meetsCriteria(criteria));
LocationManagerTest.java 30 import android.location.Criteria;
102 Criteria.POWER_MEDIUM, // powerRequirement
103 Criteria.ACCURACY_FINE); // accuracy
148 Criteria.POWER_MEDIUM, // powerRequirement
149 Criteria.ACCURACY_FINE); // accuracy
263 args = {Criteria.class, boolean.class}
268 args = {Criteria.class, boolean.class}
272 Criteria criteria = new Criteria(); local
    [all...]
  /frameworks/base/location/java/android/location/
Criteria.java 23 * A class indicating the application criteria for selecting a
28 public class Criteria implements Parcelable {
69 * Constructs a new Criteria object. The new object will have no
74 public Criteria() {}
77 * Constructs a new Criteria object that is a copy of the given criteria.
79 public Criteria(Criteria criteria) {
80 mAccuracy = criteria.mAccuracy
    [all...]
LocationProvider.java 24 * <p> Each provider has a set of criteria under which it may be used;
30 * Criteria} class allows providers to be selected based on
31 * user-specified criteria.
70 * Returns true if this provider meets the given criteria,
73 public boolean meetsCriteria(Criteria criteria) {
74 // We do not want to match the special passive provider based on criteria.
78 if ((criteria.getAccuracy() != Criteria.NO_REQUIREMENT) &&
79 (criteria.getAccuracy() < getAccuracy()))
    [all...]
Criteria.aidl 19 parcelable Criteria;
LocationManager.java 307 * criteria, or null if none do. Only providers that are permitted to be
310 * @param criteria the criteria that the returned providers must match
315 public List<String> getProviders(Criteria criteria, boolean enabledOnly) {
320 if (provider != null && provider.meetsCriteria(criteria)) {
337 case Criteria.POWER_LOW:
338 return Criteria.POWER_MEDIUM;
339 case Criteria.POWER_MEDIUM:
340 return Criteria.POWER_HIGH
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/cert/
CRLSelector.java 21 * The interface specification for determining whether a CRL meets some criteria
25 * criteria for selecting {@code CRL}s from a {@code CertStore}.
40 * Checks whether the defined criteria of this instance match the specified
45 * @return {@code true} if the CRL matches the criteria, {@code false}
CertSelector.java 22 * Certificate} meets some criteria.
25 * criteria for selecting {@code Certificate}s from a {@code CertStore}.
40 * Checks whether the defined criteria of this instance match the specified
45 * @return {@code true} if the certificate matches the criteria, {@code
CertStoreSpi.java 47 * the selector containing the criteria to search for
49 * @return the list of {@code Certificate}s that match the criteria of the
62 * the selector containing the criteria to search for certificate
64 * @return the list of {@code CRL}s that match the criteria of the specified
CertStore.java 245 * the selector containing the criteria to search for
247 * @return the list of {@code Certificate}s that match the criteria of the
262 * the selector containing the criteria to search for certificate
264 * @return the list of {@code CRL}s that match the criteria of the specified
  /frameworks/base/location/tests/locationtests/src/android/location/
LocationManagerTest.java 20 import android.location.Criteria;
57 String p = manager.getBestProvider(new Criteria(), true);
62 Criteria c = new Criteria();
63 c.setPowerRequirement(Criteria.POWER_HIGH);
67 c.setPowerRequirement(Criteria.POWER_MEDIUM);
71 c.setPowerRequirement(Criteria.POWER_LOW);
75 c.setPowerRequirement(Criteria.NO_REQUIREMENT);
  /dalvik/libcore/security/src/test/java/tests/security/cert/
X509CRLSelector2Test.java 96 assertTrue("The CRL should match the selection criteria.", selector
98 assertFalse("The CRL should not match the selection criteria.",
101 assertTrue("The CRL should match the selection criteria.", selector
129 assertTrue("The CRL should match the selection criteria.", selector
131 assertFalse("The CRL should not match the selection criteria.",
139 assertTrue("The CRL should match the selection criteria.", selector
145 * any issuers match the selector in the case of null issuerNames criteria,
188 assertTrue("The CRL should match the selection criteria.", selector
191 assertFalse("The CRL should not match the selection criteria.",
201 * criteria, if specified issuers match the selector, and if not specifie
    [all...]
X509CertSelectorTest.java 654 + "subjectAlternativeNames criteria.", selector
803 assertTrue("The certificate should match the selection criteria.",
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 46 /** The desired media criteria. */
49 /** The desired title criteria. */
52 /** The desired character set criteria. */
55 /** A list of SAXSource objects that match the criteria. */
91 * for xml-stylesheet PIs based on the given criteria.
95 * @param media The desired media criteria.
96 * @param title The desired title criteria.
97 * @param charset The desired character set criteria.
  /external/clearsilver/man/man3/
hdf_sort_obj.3 28 criteria. The arguments to this sort function
  /external/iptables/extensions/
libip6t_LOG.man 10 separate rules with the same matching criteria, first using target LOG
libipt_LOG.man 10 separate rules with the same matching criteria, first using target LOG
  /prebuilt/sdk/4/
framework.aidl 28 parcelable android.location.Criteria;
  /prebuilt/sdk/5/
framework.aidl 31 parcelable android.location.Criteria;
  /frameworks/base/location/java/com/android/internal/location/
DummyLocationProvider.java 153 * constants Criteria.POWER_REQUIREMENT_*.
164 * constants Criteria.ACCURACY_*.
  /external/bison/src/
lalr.h 1 /* Compute look-ahead criteria for bison,
  /prebuilt/sdk/6/
framework.aidl 32 parcelable android.location.Criteria;
  /prebuilt/sdk/7/
framework.aidl 32 parcelable android.location.Criteria;
  /prebuilt/sdk/8/
framework.aidl 34 parcelable android.location.Criteria;

Completed in 128 milliseconds

1 2 3 4 5 6 7 8 9