Home
last modified time | relevance | path

Searched refs:evaluate (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/external/mockito/src/test/java/org/mockitoutil/
DSafeJUnitRuleTest.java20 public void evaluate() throws Throwable { in happy_path_no_exception()
23 }, mock(FrameworkMethod.class), this).evaluate(); in happy_path_no_exception()
33 public void evaluate() throws Throwable { in regular_failing_test()
36 }, mock(FrameworkMethod.class), this).evaluate(); in regular_failing_test()
45 public void evaluate() throws Throwable { in rule_threw_exception()
48 }, mock(FrameworkMethod.class), this).evaluate(); in rule_threw_exception()
58 public void evaluate() throws Throwable { in expected_exception_but_no_exception()
61 }, mock(FrameworkMethod.class), this).evaluate(); in expected_exception_but_no_exception()
77 public void evaluate() throws Throwable { in expected_exception_message_did_not_match()
80 }, mock(FrameworkMethod.class), this).evaluate(); in expected_exception_message_did_not_match()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
DStatUtils.java91 return SUM.evaluate(values); in sum()
110 return SUM.evaluate(values, begin, length); in sum()
125 return SUM_OF_SQUARES.evaluate(values); in sumSq()
144 return SUM_OF_SQUARES.evaluate(values, begin, length); in sumSq()
158 return PRODUCT.evaluate(values); in product()
177 return PRODUCT.evaluate(values, begin, length); in product()
195 return SUM_OF_LOGS.evaluate(values); in sumLog()
218 return SUM_OF_LOGS.evaluate(values, begin, length); in sumLog()
235 return MEAN.evaluate(values); in mean()
257 return MEAN.evaluate(values, begin, length); in mean()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
DSemiVariance.java178 public double evaluate(final double[] values) { in evaluate() method in SemiVariance
182 return evaluate(values, 0, values.length); in evaluate()
201 public double evaluate(final double[] values, final int start, final int length) { in evaluate() method in SemiVariance
202 double m = (new Mean()).evaluate(values, start, length); in evaluate()
203 return evaluate(values, m, varianceDirection, biasCorrected, 0, values.length); in evaluate()
217 public double evaluate(final double[] values, Direction direction) { in evaluate() method in SemiVariance
218 double m = (new Mean()).evaluate(values); in evaluate()
219 return evaluate (values, m, direction, biasCorrected, 0, values.length); in evaluate()
234 public double evaluate(final double[] values, final double cutoff) { in evaluate() method in SemiVariance
235 return evaluate(values, cutoff, varianceDirection, biasCorrected, 0, values.length); in evaluate()
[all …]
DVariance.java215 public double evaluate(final double[] values) { in evaluate() method in Variance
219 return evaluate(values, 0, values.length); in evaluate()
243 public double evaluate(final double[] values, final int begin, final int length) { in evaluate() method in Variance
253 double m = mean.evaluate(values, begin, length); in evaluate()
254 var = evaluate(values, m, begin, length); in evaluate()
302 public double evaluate(final double[] values, final double[] weights, in evaluate() method in Variance
313 double m = mean.evaluate(values, weights, begin, length); in evaluate()
314 var = evaluate(values, weights, m, begin, length); in evaluate()
358 public double evaluate(final double[] values, final double[] weights) { in evaluate() method in Variance
359 return evaluate(values, weights, 0, values.length); in evaluate()
[all …]
DStandardDeviation.java152 public double evaluate(final double[] values) { in evaluate() method in StandardDeviation
153 return FastMath.sqrt(variance.evaluate(values)); in evaluate()
175 public double evaluate(final double[] values, final int begin, final int length) { in evaluate() method in StandardDeviation
176 return FastMath.sqrt(variance.evaluate(values, begin, length)); in evaluate()
203 public double evaluate(final double[] values, final double mean, in evaluate() method in StandardDeviation
205 return FastMath.sqrt(variance.evaluate(values, mean, begin, length)); in evaluate()
229 public double evaluate(final double[] values, final double mean) { in evaluate() method in StandardDeviation
230 return FastMath.sqrt(variance.evaluate(values, mean)); in evaluate()
DMean.java154 public double evaluate(final double[] values,final int begin, final int length) { in evaluate() method in Mean
160 double xbar = sum.evaluate(values, begin, length) / sampleSize; in evaluate()
201 public double evaluate(final double[] values, final double[] weights, in evaluate() method in Mean
207 double sumw = sum.evaluate(weights,begin,length); in evaluate()
208 double xbarw = sum.evaluate(values, weights, begin, length) / sumw; in evaluate()
244 public double evaluate(final double[] values, final double[] weights) { in evaluate() method in Mean
245 return evaluate(values, weights, 0, values.length); in evaluate()
/external/deqp/framework/randomshaders/
DrsgExpression.hpp60 virtual void evaluate (ExecutionContext& ctx) = DE_NULL;
76 void evaluate (ExecutionContext& ctx);
117 void evaluate (ExecutionContext& ctx) { DE_UNREF(ctx); } in evaluate() function in rsg::FloatLiteral
135 void evaluate (ExecutionContext& ctx) { DE_UNREF(ctx); } in evaluate() function in rsg::IntLiteral
153 void evaluate (ExecutionContext& ctx) { DE_UNREF(ctx); } in evaluate() function in rsg::BoolLiteral
171 void evaluate (ExecutionContext& ctx);
196 void evaluate (ExecutionContext& ctx);
218 void evaluate (ExecutionContext& execCtx) { m_child->evaluate(execCtx); } in evaluate() function in rsg::ParenOp
237 void evaluate (ExecutionContext& execCtx);
259 void evaluate (ExecutionContext& execCtx);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DContinuedFraction.java74 public double evaluate(double x) throws MathException { in evaluate() method in ContinuedFraction
75 return evaluate(x, DEFAULT_EPSILON, Integer.MAX_VALUE); in evaluate()
85 public double evaluate(double x, double epsilon) throws MathException { in evaluate() method in ContinuedFraction
86 return evaluate(x, epsilon, Integer.MAX_VALUE); in evaluate()
96 public double evaluate(double x, int maxIterations) throws MathException { in evaluate() method in ContinuedFraction
97 return evaluate(x, DEFAULT_EPSILON, maxIterations); in evaluate()
126 public double evaluate(double x, double epsilon, int maxIterations) in evaluate() method in ContinuedFraction
/external/skia/src/core/
DSkBitmapFilter.h42 virtual float evaluate(float x) const = 0;
47 float filterValue = evaluate(val); in evaluate_n()
69 float filter_value = evaluate(fx); in precomputeTable()
90 float evaluate(float x) const override { in evaluate() function
150 float evaluate(float x) const override { in evaluate() function
159 float evaluate(float x) const override { in evaluate() function
168 float evaluate(float x) const override { in evaluate() function
177 float evaluate(float x) const override { in evaluate() function
195 float evaluate(float x) const override { in evaluate() function
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
Dcalc.rb67 def evaluate( expression ) method in TestCalcParser
70 value = parser.evaluate
87 parser_value, errors = evaluate( expression )
93 val, errors = evaluate "6 - (2*1"
/external/vogar/test/vogar/testing/
DInterceptOutputStreamsTest.java63 public void evaluate() throws Throwable { in testApply()
83 statement.evaluate(); in testApply()
99 public void evaluate() throws Throwable { in testApply_NotIntercepting()
112 statement.evaluate(); in testApply_NotIntercepting()
121 public void evaluate() throws Throwable { in testApply_Nesting()
132 statement.evaluate(); in testApply_Nesting()
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DTemplateInterpreter.java110 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAVarCommand()
122 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAUvarCommand()
146 Value value = expressionEvaluator.evaluate(expression); in evaluateVariable()
210 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseASetCommand()
244 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAIfCommand()
259 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAEscapeCommand()
276 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAAutoescapeCommand()
295 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAWithCommand()
317 int end = expressionEvaluator.evaluate(node.getExpression()).asNumber(); in caseALoopToCommand()
333 int start = expressionEvaluator.evaluate(node.getStart()).asNumber(); in caseALoopCommand()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DAbstractUnivariateStatistic.java91 public double evaluate() { in evaluate() method in AbstractUnivariateStatistic
92 return evaluate(storedData); in evaluate()
98 public double evaluate(final double[] values) { in evaluate() method in AbstractUnivariateStatistic
100 return evaluate(values, 0, values.length); in evaluate()
106 public abstract double evaluate(final double[] values, final int begin, final int length); in evaluate() method in AbstractUnivariateStatistic
/external/swiftshader/third_party/LLVM/utils/TableGen/
DSetTheory.cpp31 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts); in apply()
42 ST.evaluate(*Expr->arg_begin(), Add); in apply()
43 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub); in apply()
56 ST.evaluate(Expr->arg_begin()[0], S1); in apply()
57 ST.evaluate(Expr->arg_begin()[1], S2); in apply()
74 ST.evaluate(Expr->arg_begin()[0], Set); in apply()
196 ST.evaluate(Def->getValueInit(FieldName), Elts); in expand()
225 void SetTheory::evaluate(Init *Expr, RecSet &Elts) { in evaluate() function in SetTheory
236 return evaluate(LI->begin(), LI->end(), Elts); in evaluate()
DSetTheory.h118 void evaluate(Init *Expr, RecSet &Elts);
122 void evaluate(Iter begin, Iter end, RecSet &Elts) { in evaluate() function
124 evaluate(*begin++, Elts); in evaluate()
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
DAdd.java25 public double evaluate() { in evaluate() method in Add
26 return l.evaluate() + r.evaluate(); in evaluate()
DDiv.java25 public double evaluate() { in evaluate() method in Div
26 return l.evaluate() / r.evaluate(); in evaluate()
DMul.java25 public double evaluate() { in evaluate() method in Mul
26 return l.evaluate() * r.evaluate(); in evaluate()
DSub.java25 public double evaluate() { in evaluate() method in Sub
26 return l.evaluate() - r.evaluate(); in evaluate()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
DPercentile.java161 public double evaluate(final double p) { in evaluate() method in Percentile
162 return evaluate(getDataRef(), p); in evaluate()
191 public double evaluate(final double[] values, final double p) { in evaluate() method in Percentile
193 return evaluate(values, 0, values.length, p); in evaluate()
221 public double evaluate( final double[] values, final int start, final int length) { in evaluate() method in Percentile
222 return evaluate(values, start, length, quantile); in evaluate()
255 public double evaluate(final double[] values, final int begin, in evaluate() method in Percentile
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
DSum.java120 public double evaluate(final double[] values, final int begin, final int length) { in evaluate() method in Sum
158 public double evaluate(final double[] values, final double[] weights, in evaluate() method in Sum
192 public double evaluate(final double[] values, final double[] weights) { in evaluate() method in Sum
193 return evaluate(values, weights, 0, values.length); in evaluate()
DProduct.java121 public double evaluate(final double[] values, final int begin, final int length) { in evaluate() method in Product
160 public double evaluate(final double[] values, final double[] weights, in evaluate() method in Product
195 public double evaluate(final double[] values, final double[] weights) { in evaluate() method in Product
196 return evaluate(values, weights, 0, values.length); in evaluate()
/external/llvm/lib/TableGen/
DSetTheory.cpp32 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc); in apply()
44 ST.evaluate(*Expr->arg_begin(), Add, Loc); in apply()
45 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc); in apply()
60 ST.evaluate(Expr->arg_begin()[0], S1, Loc); in apply()
61 ST.evaluate(Expr->arg_begin()[1], S2, Loc); in apply()
79 ST.evaluate(Expr->arg_begin()[0], Set, Loc); in apply()
155 ST.evaluate(Expr->getArg(i), Args[i], Loc); in apply()
237 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc()); in expand()
272 void SetTheory::evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) { in evaluate() function in SetTheory
283 return evaluate(LI->begin(), LI->end(), Elts, Loc); in evaluate()
/external/llvm/include/llvm/TableGen/
DSetTheory.h124 void evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc);
128 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) { in evaluate() function
130 evaluate(*begin++, Elts, Loc); in evaluate()
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
DXPathExpressionImpl.java165 public Object evaluate(Object item, QName returnType) in evaluate() method in XPathExpressionImpl
227 public String evaluate(Object item) in evaluate() method in XPathExpressionImpl
229 return (String)this.evaluate( item, XPathConstants.STRING ); in evaluate()
272 public Object evaluate(InputSource source, QName returnType) in evaluate() method in XPathExpressionImpl
323 public String evaluate(InputSource source) in evaluate() method in XPathExpressionImpl
325 return (String)this.evaluate( source, XPathConstants.STRING ); in evaluate()

12345678910>>...15