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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/s390/
simulator-s390.h 518 #define EVALUATE(name) int Evaluate_##name(Instruction* instr)
519 EVALUATE(BKPT);
520 EVALUATE(SPM);
521 EVALUATE(BALR);
522 EVALUATE(BCTR);
523 EVALUATE(BCR);
524 EVALUATE(SVC);
525 EVALUATE(BSM);
526 EVALUATE(BASSM);
527 EVALUATE(BASR)
    [all...]
  /external/v8/test/mjsunit/harmony/
async-function-debug-evaluate.js 16 "inner", exec_state.frame(0).evaluate("inner").value());
17 assertThrows(() => exec_state.frame(0).evaluate("letInner").value(),
19 assertThrows(() => exec_state.frame(0).evaluate("constInner").value(),
22 assertEquals("outer", exec_state.frame(0).evaluate("outer").value());
24 "const outer", exec_state.frame(0).evaluate("constOuter").value());
26 "let outer", exec_state.frame(0).evaluate("letOuter").value());
28 assertEquals("outer", exec_state.frame(1).evaluate("outer").value());
30 "const outer", exec_state.frame(1).evaluate("constOuter").value());
32 "let outer", exec_state.frame(1).evaluate("letOuter").value());
34 assertThrows(() => exec_state.frame(0).evaluate("withVar").value()
    [all...]
  /external/v8/test/mjsunit/
debug-evaluate-modify-catch-block-scope.js 13 exec_state.frame(0).evaluate("a = 2");
14 exec_state.frame(0).evaluate("e = 3");
15 exec_state.frame(0).evaluate("bar()");
16 exec_state.frame(0).evaluate("a++");
17 exec_state.frame(0).evaluate("e++");
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("set_a_to_5()");
24 exec_state.frame(0).evaluate("b = 5").value();
debug-evaluate-declaration.js 7 // Test that debug-evaluate only resolves variables that are used by
8 // the function inside which we debug-evaluate. This is to avoid
20 exec_state.frame(0).evaluate("var x = 2");
21 exec_state.frame(0).evaluate("'use strict'; let y = 3");
22 exec_state.frame(0).evaluate("var z = 4");
23 exec_state.frame(0).evaluate("function bar() { return 5; }");
debug-evaluate-closure.js 36 assertEquals("goo", exec_state.frame(0).evaluate("goo").value());
37 exec_state.frame(0).evaluate("goo = 'goo foo'");
38 assertEquals("bar return", exec_state.frame(0).evaluate("bar()").value());
39 assertEquals("inner bar", exec_state.frame(0).evaluate("inner").value());
40 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...]
debug-evaluate-shadowed-context.js 7 // Test that debug-evaluate only resolves variables that are used by
8 // the function inside which we debug-evaluate. This is to avoid
22 value = frame.evaluate("x").value();
31 String(exec_state.frame(0).evaluate("this").value()));
32 assertEquals("y", exec_state.frame(0).evaluate("y").value());
33 assertEquals("a", exec_state.frame(0).evaluate("a").value());
34 exec_state.frame(0).evaluate("a = 'A'");
35 assertThrows(() => exec_state.frame(0).evaluate("z"), ReferenceError);
  /external/clang/test/Sema/
warn-overlap.c 21 if (x != 2 || x != 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
22 if (x > 2 || x < 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
26 if (x > 2 || x <= 2) { } // expected-warning {{overlapping comparisons always evaluate to true}}
27 if (x > 2 || x <= 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
30 if (x >= 2 || x < 2) { } // expected-warning {{overlapping comparisons always evaluate to true}}
31 if (x >= 2 || x < 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
33 if (x >= 2 || x <= 1) { } // expected-warning {{overlapping comparisons always evaluate to true}}
34 if (x >= 2 || x <= 2) { } // expected-warning {{overlapping comparisons always evaluate to true}}
35 if (x >= 2 || x <= 3) { } // expected-warning {{overlapping comparisons always evaluate to true}}
36 if (x >= 0 || x <= 0) { } // expected-warning {{overlapping comparisons always evaluate to true}
    [all...]
warn-tautological-compare.c 15 if (!b) {} // expected-warning {{address of array 'b' will always evaluate to 'true'}}
17 if (!c.x) {} // expected-warning {{address of array 'c.x' will always evaluate to 'true'}}
19 if (!str) {} // expected-warning {{address of array 'str' will always evaluate to 'true'}}
26 if (!array) { // expected-warning {{address of array 'array' will always evaluate to 'true'}}
39 if (!&pointer) { // expected-warning {{address of 'pointer' will always evaluate to 'true'}}
43 if (&pointer) { // expected-warning {{address of 'pointer' will always evaluate to 'true'}}
55 if (array) { } // expected-warning {{address of array 'array' will always evaluate to 'true'}}
57 if (!array) { } // expected-warning {{address of array 'array' will always evaluate to 'true'}}
61 array) {} // expected-warning {{address of array 'array' will always evaluate to 'true'}}
64 array) {} // expected-warning {{address of array 'array' will always evaluate to 'true'}
    [all...]
  /external/v8/test/mjsunit/es6/
default-parameters-debug.js 19 assertEquals('default', exec_state.frame(1).evaluate('mode').value());
23 exec_state.frame(1).evaluate('b').value();
27 exec_state.frame(1).evaluate('c');
31 assertEquals('modeFn', exec_state.frame(1).evaluate('a.name').value());
32 assertEquals('default', exec_state.frame(1).evaluate('b').value());
34 exec_state.frame(1).evaluate('c');
38 assertEquals('modeFn', exec_state.frame(0).evaluate('a.name').value());
39 assertEquals('default', exec_state.frame(0).evaluate('b').value());
40 assertEquals('local', exec_state.frame(0).evaluate('d').value());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
bad-size.err 3 .*bad-size\.s:.* Error: \.size expression .* does not evaluate to a constant
  /external/clang/test/SemaCXX/
warn-tautological-undefined-compare.cpp 9 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to false}}
11 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to true}}
19 // expected-warning@-1{{'this' pointer cannot be null in well-defined C++ code; comparison may be assumed to always evaluate to false}}
21 // expected-warning@-1{{'this' pointer cannot be null in well-defined C++ code; comparison may be assumed to always evaluate to true}}
27 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to false}}
29 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to true}}
49 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to false}}
51 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to false}}
54 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to true}}
56 // expected-warning@-1{{reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to true}
    [all...]
warn-address.cpp 10 if (foo) {} // expected-warning{{always evaluate to 'true'}} \
12 if (arr) {} // expected-warning{{always evaluate to 'true'}}
13 if (&global) {} // expected-warning{{always evaluate to 'true'}}
warn-bool-conversion.cpp 48 b = f1; // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
50 if (f1) {} // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
52 b = S::f2; // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
54 if (S::f2) {} // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
56 b = f5; // expected-warning {{address of function 'f5' will always evaluate to 'true'}} \
59 b = f6; // expected-warning {{address of function 'f6' will always evaluate to 'true'}} \
85 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}}
87 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}}
89 // expected-warning@-1{{address of array 'c.x' will always evaluate to 'true'}}
91 // expected-warning@-1{{address of array 'str' will always evaluate to 'true'}
    [all...]
  /external/dng_sdk/source/
dng_1d_function.cpp 45 real64 y0 = Evaluate (x0);
48 real64 y1 = Evaluate (x1);
62 real64 y2 = Evaluate (x2);
87 real64 dng_1d_identity::Evaluate (real64 x) const
138 real64 dng_1d_concatenate::Evaluate (real64 x) const
141 real64 y = Pin_real64 (0.0, fFunction1.Evaluate (x), 1.0);
143 return fFunction2.Evaluate (y);
179 real64 dng_1d_inverse::Evaluate (real64 x) const
191 return fFunction.Evaluate (y);
dng_1d_function.h 41 /// Returns true if this function is the map x -> y such that x == y for all x . That is if Evaluate(x) == x for all x.
51 virtual real64 Evaluate (real64 x) const = 0;
55 /// for x such that Evaluate(x) == y.
57 /// \retval A value x such that Evaluate(x) == y (to very close approximation).
77 virtual real64 Evaluate (real64 x) const;
104 /// Create a dng_1d_function which computes y = function2.Evaluate(function1.Evaluate(x)).
105 /// Compose function1 and function2 to compute y = function2.Evaluate(function1.Evaluate(x)). The range of function1.Evaluate must be a subset of 0.0 to 1.0 inclusive
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-323936.js 16 assertEquals("error", exec_state.frame(0).evaluate("e").value());
17 exec_state.frame(0).evaluate("write_0('foo')");
18 exec_state.frame(0).evaluate("write_1('modified')");
20 assertEquals("argument", exec_state.frame(0).evaluate("e").value());
21 exec_state.frame(0).evaluate("write_2('bar')");
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
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();
  /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/junit/src/org/junit/rules/
RunRules.java 17 public void evaluate() throws Throwable { method in class:RunRules
18 statement.evaluate();
  /cts/tests/tests/animation/src/android/animation/cts/
EvaluatorTest.java 42 float result = floatEvaluator.evaluate(0, start, end);
45 result = floatEvaluator.evaluate(fraction, start, end);
48 result = floatEvaluator.evaluate(1, start, end);
58 float[] result = evaluator.evaluate(0, start, end);
62 result = evaluator.evaluate(fraction, start, end);
66 result = evaluator.evaluate(1, start, end);
85 int result = (Integer) evaluator.evaluate(0, RED, BLUE);
95 result = (Integer) evaluator.evaluate(.5f, RED, BLUE);
105 result = (Integer) evaluator.evaluate(1, RED, BLUE);
122 int result = intEvaluator.evaluate(0, start, end)
    [all...]

Completed in 648 milliseconds

1 2 3 4 5 6 7 8 91011>>