Home
last modified time | relevance | path

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

12345678910>>...16

/external/chromium_org/third_party/WebKit/Source/platform/animation/
DTimingFunctionTest.cpp217 EXPECT_EQ(0.2, linearTiming->evaluate(0.2, 0)); in TEST_F()
218 EXPECT_EQ(0.6, linearTiming->evaluate(0.6, 0)); in TEST_F()
219 EXPECT_EQ(-0.2, linearTiming->evaluate(-0.2, 0)); in TEST_F()
220 EXPECT_EQ(1.6, linearTiming->evaluate(1.6, 0)); in TEST_F()
325 EXPECT_NEAR(0.418, cubicEaseTiming->evaluate(0.25, tolerance), tolerance); in TEST_F()
326 EXPECT_NEAR(0.805, cubicEaseTiming->evaluate(0.50, tolerance), tolerance); in TEST_F()
327 EXPECT_NEAR(0.960, cubicEaseTiming->evaluate(0.75, tolerance), tolerance); in TEST_F()
330 EXPECT_NEAR(0.093, cubicEaseInTiming->evaluate(0.25, tolerance), tolerance); in TEST_F()
331 EXPECT_NEAR(0.305, cubicEaseInTiming->evaluate(0.50, tolerance), tolerance); in TEST_F()
332 EXPECT_NEAR(0.620, cubicEaseInTiming->evaluate(0.75, tolerance), tolerance); in TEST_F()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathFunctions.cpp76 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
83 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
90 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
95 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
100 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
107 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
114 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
121 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
128 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
133 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
[all …]
DXPathPredicate.cpp51 Value Number::evaluate(EvaluationContext&) const in evaluate() function in blink::XPath::Number
67 Value StringExpression::evaluate(EvaluationContext&) const in evaluate() function in blink::XPath::StringExpression
72 Value Negative::evaluate(EvaluationContext& context) const in evaluate() function in blink::XPath::Negative
74 Value p(subExpr(0)->evaluate(context)); in evaluate()
85 Value NumericOp::evaluate(EvaluationContext& context) const in evaluate() function in blink::XPath::NumericOp
87 Value lhs(subExpr(0)->evaluate(context)); in evaluate()
88 Value rhs(subExpr(1)->evaluate(context)); in evaluate()
219 Value EqTestOp::evaluate(EvaluationContext& context) const in evaluate() function in blink::XPath::EqTestOp
221 Value lhs(subExpr(0)->evaluate(context)); in evaluate()
222 Value rhs(subExpr(1)->evaluate(context)); in evaluate()
[all …]
DXPathPredicate.h43 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
55 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
63 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
75 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
85 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
102 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
109 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
120 bool evaluate(EvaluationContext&) const;
DXPathPath.cpp60 Value Filter::evaluate(EvaluationContext& evaluationContext) const in evaluate() function in blink::XPath::Filter
62 Value v = m_expr->evaluate(evaluationContext); in evaluate()
78 if (m_predicates[i]->evaluate(evaluationContext)) in evaluate()
108 Value LocationPath::evaluate(EvaluationContext& evaluationContext) const in evaluate() function in blink::XPath::LocationPath
129 evaluate(clonedContext, *nodes); in evaluate()
134 void LocationPath::evaluate(EvaluationContext& context, NodeSet& nodes) const in evaluate() function in blink::XPath::LocationPath
155 step->evaluate(context, nodes[j], *matches); in evaluate()
227 Value Path::evaluate(EvaluationContext& context) const in evaluate() function in blink::XPath::Path
229 Value v = m_filter->evaluate(context); in evaluate()
232 m_path->evaluate(context, nodes); in evaluate()
DXPathPath.h46 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
61 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
63 void evaluate(EvaluationContext&, NodeSet&) const; // nodes is an input/output parameter
80 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
/external/chromium_org/v8/test/mjsunit/
Ddebug-evaluate-closure.js37 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 …]
Ddebug-evaluate-locals.js118 assertEquals(1, exec_state.frame(0).evaluate('a').value());
119 assertEquals(2, exec_state.frame(0).evaluate('b').value());
120 assertEquals(5, exec_state.frame(0).evaluate('eval').value());
121 assertEquals(3, exec_state.frame(1).evaluate('a').value());
122 assertEquals(4, exec_state.frame(1).evaluate('b').value());
124 typeof exec_state.frame(1).evaluate('eval').value());
125 assertEquals(5, exec_state.frame(2).evaluate('a').value());
126 assertEquals(6, exec_state.frame(2).evaluate('b').value());
128 typeof exec_state.frame(2).evaluate('eval').value());
130 exec_state.frame(0).evaluate('a = "foo"').value());
[all …]
Ddebug-evaluate-const.js78 var evaluate = function(something) { function
79 return frame.evaluate(something).value()
96 evaluate('const0 = 10');
97 evaluate('const2 = 12');
98 evaluate('const3 = 13');
99 evaluate('var0 = 30');
100 evaluate('var1 = 31');
Dregress-3225.js16 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();
Ddebug-evaluate-with.js45 assertEquals(2, exec_state.frame(0).evaluate('a').value());
46 assertEquals(2, exec_state.frame(0).evaluate('b').value());
49 assertEquals(3, exec_state.frame(0).evaluate('a').value());
50 assertEquals(1, exec_state.frame(0).evaluate('b').value());
53 assertEquals('local', exec_state.frame(0).evaluate('foo').value());
Ddebug-evaluate-recursive.js77 assertEquals(1, exec_state.frame(0).evaluate('f()', true).value());
78 assertEquals(2, exec_state.frame(0).evaluate('g()', true).value());
117 assertEquals(1, exec_state.frame(0).evaluate('f()', false).value());
123 assertEquals(1, exec_state.frame(0).evaluate('f()', true).value());
/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/chromium_org/third_party/skia/src/core/
DSkBitmapFilter.h49 virtual float evaluate(float x) const = 0;
69 float filter_value = evaluate(fx); in precomputeTable()
82 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
105 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
118 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
130 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
141 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
161 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
/external/skia/src/core/
DSkBitmapFilter.h49 virtual float evaluate(float x) const = 0;
69 float filter_value = evaluate(fx); in precomputeTable()
82 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
105 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
118 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
130 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
141 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
161 virtual float evaluate(float x) const SK_OVERRIDE { in evaluate() function
/external/chromium_org/v8/test/mjsunit/regress/
Dregress-crbug-171715.js37 assertEquals(expected, exec_state.frame(frame_id).evaluate('v').value());
49 exec_state.frame(0).evaluate('arguments').value());
55 exec_state.frame(0).evaluate('arguments').value());
63 exec_state.frame(0).evaluate('arguments').value());
65 exec_state.frame(1).evaluate('arguments').value());
/external/chromium_org/third_party/ocmock/OCMock/
DOCMConstraint.m16 - (BOOL)evaluate:(id)value
57 - (BOOL)evaluate:(id)value
70 - (BOOL)evaluate:(id)value
83 - (BOOL)evaluate:(id)value
96 - (BOOL)evaluate:(id)value
109 - (BOOL)evaluate:(id)value
133 - (BOOL)evaluate:(id)value
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
Dtemplite.py124 self.result.append(str(self.evaluate(args)))
132 if self.evaluate(expr):
136 vals = self.evaluate(lis)
143 def evaluate(self, expr): member in _TempliteEngine
151 value = self.evaluate(pipes[0])
153 value = self.evaluate(func)(value)
156 value = self.evaluate(dots[0])
/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/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/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
Dxpath_util.js54 var xpathIterator = rootNode.ownerDocument.evaluate(
80 var xpathIterator = rootNode.ownerDocument.evaluate(
120 var xpathResult = rootNode.ownerDocument.evaluate(
142 var xpathResult = rootNode.ownerDocument.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/chromium_org/tools/
Dbisect_test.py35 def bisect(self, good_rev, bad_rev, evaluate): argument
38 evaluate=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/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
DExtensionAuditCategory.js153 evaluate: function(expression, evaluateOptions, callback) method in WebInspector.ExtensionAuditCategoryResults
168 …WebInspector.extensionServer.evaluate(expression, false, false, evaluateOptions, this._category._e…
190 this.evaluate(expression, evaluateOptions, onEvaluate);
223 this.evaluate(expression, evaluateOptions, onEvaluate);

12345678910>>...16