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

1 2 3 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
IExpression.java 16 public double evaluate(); method in interface:IExpression
Add.java 25 public double evaluate() { method in class:Add
26 return l.evaluate() + r.evaluate();
Div.java 25 public double evaluate() { method in class:Div
26 return l.evaluate() / r.evaluate();
Mul.java 25 public double evaluate() { method in class:Mul
26 return l.evaluate() * r.evaluate();
Sub.java 25 public double evaluate() { method in class:Sub
26 return l.evaluate() - r.evaluate();
Const.java 22 public double evaluate() { method in class:Const
  /external/junit/src/main/java/org/junit/runners/model/
Statement.java 14 public abstract void evaluate() throws Throwable; method in class:Statement
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
UnivariateStatistic.java 33 double evaluate(double[] values); method in interface:UnivariateStatistic
44 double evaluate(double[] values, int begin, int length); method in interface:UnivariateStatistic
WeightedEvaluation.java 35 double evaluate(double[] values, double[] weights); method in interface:WeightedEvaluation
47 double evaluate(double[] values, double[] weights, int begin, int length); method in interface:WeightedEvaluation
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
PointerCountEvaluator.java 20 public static float evaluate(int value) { method in class:PointerCountEvaluator
AnglesVarianceEvaluator.java 20 public static float evaluate(float value, int type) { method in class:AnglesVarianceEvaluator
DurationCountEvaluator.java 21 public static float evaluate(float value) { method in class:DurationCountEvaluator
SpeedAnglesPercentageEvaluator.java 20 public static float evaluate(float value) { method in class:SpeedAnglesPercentageEvaluator
SpeedEvaluator.java 20 public static float evaluate(float value) { method in class:SpeedEvaluator
SpeedRatioEvaluator.java 20 public static float evaluate(float value) { method in class:SpeedRatioEvaluator
SpeedVarianceEvaluator.java 20 public static float evaluate(float value) { method in class:SpeedVarianceEvaluator
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpression.java 37 * If a request is made to evaluate the expression in the absence
85 * <p>Evaluate the compiled XPath expression in the specified context and return the result as the specified type.</p>
108 public Object evaluate(Object item, QName returnType) method in interface:XPathExpression
112 * <p>Evaluate the compiled XPath expression in the specified context and return the result as a <code>String</code>.</p>
114 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of
131 public String evaluate(Object item) method in interface:XPathExpression
135 * <p>Evaluate the compiled XPath expression in the context of the specified <code>InputSource</code> and return the result as the
139 * {@link #evaluate(Object item, QName returnType)} on the resulting document object.</p>
150 * @param source The <code>InputSource</code> of the document to evaluate over.
160 public Object evaluate(InputSource source, QName returnType method in interface:XPathExpression
183 public String evaluate(InputSource source) method in interface:XPathExpression
    [all...]
XPathFunction.java 35 * <p>Evaluate the function with the specified arguments.</p>
48 public Object evaluate(List args) method in interface:XPathFunction
  /external/mockito/src/test/java/org/mockitoutil/
SafeJUnitRuleTest.java 24 public void evaluate() throws Throwable {
27 }, mock(FrameworkMethod.class), this).evaluate();
37 public void evaluate() throws Throwable {
40 }, mock(FrameworkMethod.class), this).evaluate();
49 public void evaluate() throws Throwable {
52 }, mock(FrameworkMethod.class), this).evaluate();
62 public void evaluate() throws Throwable {
65 }, mock(FrameworkMethod.class), this).evaluate();
81 public void evaluate() throws Throwable {
84 }, mock(FrameworkMethod.class), this).evaluate();
    [all...]
  /frameworks/base/core/java/android/animation/
TypeEvaluator.java 42 public T evaluate(float fraction, T startValue, T endValue); method in interface:TypeEvaluator
FloatEvaluator.java 38 public Float evaluate(float fraction, Number startValue, Number endValue) { method in class:FloatEvaluator
IntEvaluator.java 38 public Integer evaluate(float fraction, Integer startValue, Integer endValue) { method in class:IntEvaluator
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
PointerCountEvaluator.java 20 public static float evaluate(int value) { method in class:PointerCountEvaluator
SpeedClassifier.java 36 return SpeedEvaluator.evaluate(0.0f);
38 return SpeedEvaluator.evaluate(stroke.getTotalLength() / duration);
  /external/junit/src/main/java/org/junit/rules/
Verifier.java 34 public void evaluate() throws Throwable {
35 base.evaluate();

Completed in 504 milliseconds

1 2 3 4 5 6 7 8 91011>>