HomeSort by relevance Sort by last modified time
    Searched refs:Criterion (Results 1 - 25 of 43) sorted by null

1 2

  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
Criteria.java 19 * Represents a set of Criterion objects for locating a program element in
24 * Criterion}.
29 /** The set of criterion objects, indexed by kind. */
30 private final Map<Criterion.Kind, Criterion> criteria;
33 * Creates a new {@code Criteria} without any {@code Criterion}.
36 this.criteria = new LinkedHashMap<Criterion.Kind, Criterion>();
40 * Add a {@code Criterion} to this {@code Criteria}.
42 * @param c the criterion to ad
    [all...]
ClassBoundCriterion.java 8 public class ClassBoundCriterion implements Criterion {
12 private final Criterion notInMethodCriterion;
13 private final Criterion boundLocCriterion;
MethodBoundCriterion.java 8 public class MethodBoundCriterion implements Criterion {
12 private final Criterion sigMethodCriterion;
13 private final Criterion boundLocationCriterion;
InFieldInitCriterion.java 9 * Criterion for being within a specific field initializer.
11 public class InFieldInitCriterion implements Criterion {
14 public final Criterion varCriterion;
InInitBlockCriterion.java 10 * Criterion for being within a specific initializer.
14 public class InInitBlockCriterion implements Criterion {
17 public final Criterion notInMethodCriterion;
FieldCriterion.java 6 public class FieldCriterion implements Criterion {
10 public final Criterion varCriterion;
11 public final Criterion notInMethodCriterion;
ReturnTypeCriterion.java 9 public class ReturnTypeCriterion implements Criterion {
12 private final Criterion inClassCriterion;
13 private final Criterion sigMethodCriterion;
Criterion.java 7 * A criterion for locating a program element in an AST. A Criterion does
11 public interface Criterion {
14 * Types of criterion.
62 * Determines if the given tree path is satisfied by this criterion.
65 * @return true if this criterion is satisfied by the given path,
71 * Determines if the given tree path is satisfied by this criterion.
74 * @return true if this criterion is satisfied by the given path,
80 * Gets the type of this criterion.
82 * @return this criterion's kin
    [all...]
NewCriterion.java 10 * Criterion for being a specific object creation expression.
12 public class NewCriterion implements Criterion {
15 private final Criterion inMethodCriterion;
ReceiverCriterion.java 7 public class ReceiverCriterion implements Criterion {
10 private final Criterion isSigMethodCriterion;
EnclosedByCriterion.java 7 * Represents the criterion that a program element is enclosed (directly or
10 final class EnclosedByCriterion implements Criterion {
NotInMethodCriterion.java 9 * Represents the criterion that a program element is not enclosed by any
12 final class NotInMethodCriterion implements Criterion {
CallCriterion.java 9 public class CallCriterion implements Criterion {
CastCriterion.java 10 * Criterion for being a specific type cast expression.
12 public class CastCriterion implements Criterion {
InMethodCriterion.java 11 * Represents the criterion that a program element is in a method with a
14 final class InMethodCriterion implements Criterion {
InPackageCriterion.java 9 * Represents the criterion that a program element is in a package with a
12 final class InPackageCriterion implements Criterion {
IntersectionTypeLocationCriterion.java 15 public class IntersectionTypeLocationCriterion implements Criterion {
IsCriterion.java 9 * Represents the criterion that a program element has a particular type and
12 final class IsCriterion implements Criterion {
MemberReferenceCriterion.java 9 public class MemberReferenceCriterion implements Criterion {
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
ExclusiveCriterion.py 29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.Criterion import InvalidCriterionException
33 class ExclusiveCriterion(Criterion):
36 This file describe Exclusive Criterion Behavior
38 This types of criterion can only have one value at a time
Criterion.py 30 class Criterion:
40 criterion can take.
55 """ Exception raised in case of problem with a criterion """
61 return "Invalid Criterion Error : " + self.__msg
InclusiveCriterion.py 29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.Criterion import InvalidCriterionException
33 class InclusiveCriterion(Criterion):
36 This file describe Inclusive Criterion Behavior
38 This types of criterion can have several values at the same time
52 Criterion current value setter
CriterionClassFactory.py 29 from clientsimulator.criterion.Criterion import Criterion
30 from clientsimulator.criterion.ExclusiveCriterion import ExclusiveCriterion
31 from clientsimulator.criterion.InclusiveCriterion import InclusiveCriterion
41 Private function which allows to dynamically create a new Criterion SubClass
45 :param allowedValues: all values the criterion can take
47 :param base: direct mother class of the created criterion subclass
51 :return: A criterion subclass
56 """ Init Function of a Criterion Child Class ""
    [all...]
  /external/annotation-tools/annotation-file-utilities/src/annotator/specification/
CriterionList.java 4 import annotator.find.Criterion;
11 // GenericArrayLocationCriterion, where the criterion [1] would also match [2
14 // TreePath whether it satisfies a criterion. I have put into place piecemeal
20 * A CriterionList is a singly-linked list of Criterion meant to be treated
23 * all the criterion. A CriterionList is immutable, and so copies
30 private Criterion current;
34 * Creates a new CriterionList with no criterion.
42 * Creates a new CriterionList containing just the given Criterion.
44 * @param c the sole criterion the list contains at the moment
46 public CriterionList(Criterion c)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckTestActivity.java 74 private static class Criterion {
305 Criterion.roll_rms_error);
307 Criterion.roll_max_error);
320 Criterion.pitch_rms_error);
322 Criterion.pitch_max_error);
335 Criterion.yaw_rms_error);
337 Criterion.yaw_max_error);

Completed in 592 milliseconds

1 2