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

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/org/junit/runners/model/
Statement.java 15 public abstract void evaluate() throws Throwable; method in class:Statement
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Predicate.java 19 boolean evaluate(Object arg); method in interface:Predicate
DuplicatesPredicate.java 24 public boolean evaluate(Object arg) { method in class:DuplicatesPredicate
RejectModifierPredicate.java 27 public boolean evaluate(Object arg) { method in class:RejectModifierPredicate
  /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
  /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
XPath.java 38 * If a request is made to evaluate the expression in the absence
184 * <p>Evaluate an <code>XPath</code> expression in the specified context and return the result as the specified type.</p>
213 public Object evaluate(String expression, Object item, QName returnType) method in interface:XPath
217 * <p>Evaluate an XPath expression in the specified context and return the result as a <code>String</code>.</p>
219 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
239 public String evaluate(String expression, Object item) method in interface:XPath
243 * <p>Evaluate an XPath expression in the context of the specified <code>InputSource</code>
247 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.</p>
259 * @param source The input source of the document to evaluate over.
269 public Object evaluate( method in interface:XPath
297 public String evaluate(String expression, InputSource source) method in interface:XPath
    [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
  /external/junit/src/org/junit/rules/
Verifier.java 32 public void evaluate() throws Throwable {
33 base.evaluate();
ExternalResource.java 43 public void evaluate() throws Throwable {
46 base.evaluate();
RunRules.java 17 public void evaluate() throws Throwable { method in class:RunRules
18 statement.evaluate();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
StandardDeviation.java 152 public double evaluate(final double[] values) { method in class:StandardDeviation
153 return FastMath.sqrt(variance.evaluate(values));
175 public double evaluate(final double[] values, final int begin, final int length) { method in class:StandardDeviation
176 return FastMath.sqrt(variance.evaluate(values, begin, length));
203 public double evaluate(final double[] values, final double mean, method in class:StandardDeviation
205 return FastMath.sqrt(variance.evaluate(values, mean, begin, length));
229 public double evaluate(final double[] values, final double mean) { method in class:StandardDeviation
230 return FastMath.sqrt(variance.evaluate(values, mean));
SemiVariance.java 39 * parameters to {@link #evaluate(double[], double, Direction, boolean, int, int)}.</p>
41 * <p>If the input array is null, <code>evaluate</code> methods throw
178 public double evaluate(final double[] values) { method in class:SemiVariance
182 return evaluate(values, 0, values.length);
201 public double evaluate(final double[] values, final int start, final int length) { method in class:SemiVariance
202 double m = (new Mean()).evaluate(values, start, length);
203 return evaluate(values, m, varianceDirection, biasCorrected, 0, values.length);
217 public double evaluate(final double[] values, Direction direction) { method in class:SemiVariance
218 double m = (new Mean()).evaluate(values);
219 return evaluate (values, m, direction, biasCorrected, 0, values.length)
234 public double evaluate(final double[] values, final double cutoff) { method in class:SemiVariance
251 public double evaluate(final double[] values, final double cutoff, final Direction direction) { method in class:SemiVariance
273 public double evaluate (final double[] values, final double cutoff, final Direction direction, method in class:SemiVariance
    [all...]
Variance.java 43 * <li> The <code>evaluate</code> methods leverage the fact that they have the
51 * <code>evaluate</code> with the full array of values. The former approach
57 * returned by the <code>evaluate</code> and <code>getResult</code> methods.
150 * {@link #evaluate(double[])} rather than adding values one at a time
152 * <code>evaluate</code> leverages the fact that is has the full
215 public double evaluate(final double[] values) { method in class:Variance
219 return evaluate(values, 0, values.length);
243 public double evaluate(final double[] values, final int begin, final int length) { method in class:Variance
253 double m = mean.evaluate(values, begin, length);
254 var = evaluate(values, m, begin, length)
302 public double evaluate(final double[] values, final double[] weights, method in class:Variance
358 public double evaluate(final double[] values, final double[] weights) { method in class:Variance
388 public double evaluate(final double[] values, final double mean, method in class:Variance
441 public double evaluate(final double[] values, final double mean) { method in class:Variance
490 public double evaluate(final double[] values, final double[] weights, method in class:Variance
564 public double evaluate(final double[] values, final double[] weights, final double mean) { method in class:Variance
    [all...]
Mean.java 42 * <p> If {@link #evaluate(double[])} is used to compute the mean of an array
154 public double evaluate(final double[] values,final int begin, final int length) { method in class:Mean
160 double xbar = sum.evaluate(values, begin, length) / sampleSize;
201 public double evaluate(final double[] values, final double[] weights, method in class:Mean
207 double sumw = sum.evaluate(weights,begin,length);
208 double xbarw = sum.evaluate(values, weights, begin, length) / sumw;
244 public double evaluate(final double[] values, final double[] weights) { method in class:Mean
245 return evaluate(values, weights, 0, values.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 91 return SUM.evaluate(values);
110 return SUM.evaluate(values, begin, length);
125 return SUM_OF_SQUARES.evaluate(values);
144 return SUM_OF_SQUARES.evaluate(values, begin, length);
158 return PRODUCT.evaluate(values);
177 return PRODUCT.evaluate(values, begin, length);
195 return SUM_OF_LOGS.evaluate(values);
218 return SUM_OF_LOGS.evaluate(values, begin, length);
235 return MEAN.evaluate(values);
257 return MEAN.evaluate(values, begin, length)
    [all...]
  /external/v8/test/mjsunit/
regress-3225.js 16 assertEquals(1, exec_state.frame(0).evaluate('a').value());
17 assertEquals(3, exec_state.frame(0).evaluate('b').value());
18 exec_state.frame(0).evaluate("a = 4").value();
21 assertEquals(4, exec_state.frame(0).evaluate('a').value());
22 assertEquals(3, exec_state.frame(0).evaluate('b').value());
23 exec_state.frame(0).evaluate("b = 5").value();
debug-evaluate-closure.js 37 assertEquals("goo", exec_state.frame(0).evaluate("goo").value());
38 exec_state.frame(0).evaluate("goo = 'goo foo'");
39 assertEquals("bar return", exec_state.frame(0).evaluate("bar()").value());
40 assertEquals("inner bar", exec_state.frame(0).evaluate("inner").value());
41 assertEquals("outer bar", exec_state.frame(0).evaluate("outer").value());
42 assertEquals("baz inner", exec_state.frame(0).evaluate("baz").value());
43 assertEquals("baz outer", exec_state.frame(1).evaluate("baz").value());
44 exec_state.frame(0).evaluate("w = 'w foo'");
45 exec_state.frame(0).evaluate("inner = 'inner foo'");
46 exec_state.frame(0).evaluate("outer = 'outer foo'")
    [all...]
  /external/junit/src/org/junit/internal/runners/statements/
RunBefores.java 25 public void evaluate() throws Throwable { method in class:RunBefores
28 fNext.evaluate();
Fail.java 14 public void evaluate() throws Throwable { method in class:Fail
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
ContinuedFraction.java 25 * Provides a generic means to evaluate continued fractions. Subclasses simply
26 * provided the a and b coefficients to evaluate the continued fraction.
74 public double evaluate(double x) throws MathException { method in class:ContinuedFraction
75 return evaluate(x, DEFAULT_EPSILON, Integer.MAX_VALUE);
85 public double evaluate(double x, double epsilon) throws MathException { method in class:ContinuedFraction
86 return evaluate(x, epsilon, Integer.MAX_VALUE);
96 public double evaluate(double x, int maxIterations) throws MathException { method in class:ContinuedFraction
97 return evaluate(x, DEFAULT_EPSILON, maxIterations);
126 public double evaluate(double x, double epsilon, int maxIterations) method in class:ContinuedFraction

Completed in 460 milliseconds

1 2 3 4 5 6 7 8 91011>>