HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 301 - 325 of 4888) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
console-str-alert-object.html 5 window.str = window.expression = "alert({})";
  /external/chromium_org/third_party/angle/src/compiler/
debug.h 36 #define ASSERT(expression) do { \
37 if(!(expression)) \
38 Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
39 assert(expression); \
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
lower_breaks_3.opt_test.expected 6 (if (expression bool > (var_ref b) (constant float (0.000000)))
lower_breaks_5.opt_test.expected 6 (if (expression bool > (var_ref b) (constant float (0.000000))) ()
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate.js 74 testRequest(dcp, '{"expression":"1","global"=true}', false);
75 testRequest(dcp, '{"expression":"a","frame":4}', false);
78 testRequest(dcp, '{"expression":"1+2"}', true, 3);
79 testRequest(dcp, '{"expression":"a+2"}', true, 5);
80 testRequest(dcp, '{"expression":"({\\"a\\":1,\\"b\\":2}).b+2"}', true, 4);
83 testRequest(dcp, '{"expression":"a"}', true, 3);
84 testRequest(dcp, '{"expression":"a","frame":0}', true, 3);
85 testRequest(dcp, '{"expression":"a","frame":1}', true, 2);
86 testRequest(dcp, '{"expression":"a","frame":2}', true, 1);
87 testRequest(dcp, '{"expression":"a","global":true}', true, 1)
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p17-crash.cpp 4 // new expression in func()
  /external/clang/test/CodeGen/
fold-const-declref.c 8 __max / 0; // expected-warning{{expression result unused}} expected-warning{{division by zero is undefined}}
  /external/clang/test/CodeGenCXX/
sel-address.mm 11 @selector(dealloc) = s; // expected-error {{expression is not assignable}}
  /external/clang/test/Lexer/
eof-file.c 7 // expected-error@+1{{expected expression}} expected-error@+1{{expected ';'}}
  /external/clang/test/Parser/
objc-messaging-neg-1.m 12 [] {}; // expected-error {{expected expression}}
pragma-fp-contract.c 5 /* expected-error@+1 {{'#pragma fp_contract' should only appear at file scope or at the start of a compound expression}} */
  /external/clang/test/Sema/
va_arg_x86_32.c 4 __builtin_va_arg((char*)0, int); // expected-error {{expression is not assignable}}
warn-write-strings.c 4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
  /external/clang/test/SemaCXX/
bool.cpp 12 ++b; // expected-warning {{incrementing expression of type bool is deprecated}}
13 b++; // expected-warning {{incrementing expression of type bool is deprecated}}
14 --b; // expected-error {{cannot decrement expression of type bool}}
15 b--; // expected-error {{cannot decrement expression of type bool}}
new-array-size-conv.cpp 22 (void)new int[ValueInt(10)]; // expected-warning{{implicit conversion from array size expression of type 'ValueInt' to integral type 'int' is a C++11 extension}}
23 (void)new int[ValueEnum()]; // expected-warning{{implicit conversion from array size expression of type 'ValueEnum' to enumeration type 'E' is a C++11 extension}}
24 (void)new int[ValueBoth()]; // expected-error{{ambiguous conversion of array size expression of type 'ValueBoth' to an integral or enumeration type}}
26 (void)new int[TwoValueInts()]; // expected-error{{ambiguous conversion of array size expression of type 'TwoValueInts' to an integral or enumeration type}}
unused.cpp 3 // PR4103 : Make sure we don't get a bogus unused expression warning
31 *x; // expected-warning {{expression result unused; assign into a variable to force a volatile load}}
32 (void)*x; // expected-warning {{expression result unused; assign into a variable to force a volatile load}}
46 int(1); // expected-warning {{expression result unused}}
  /external/clang/test/SemaObjC/
comptypes-6.m 12 Derived *m = foo(); // expected-warning {{incompatible pointer types initializing 'Derived *' with an expression of type 'Object *'}}
  /external/clang/test/SemaTemplate/
missing-class-keyword-crash.cpp 7 class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.ql_2.0.0.v20100503a.jar 
  /external/eigen/doc/
I01_TopicLazyEvaluation.dox 9 When you write a line of code involving a complex expression such as
13 Eigen determines automatically, for each sub-expression, whether to evaluate it into a temporary variable. Indeed, in certain cases it is better to evaluate immediately a sub-expression into a temporary variable, while in other cases it is better to avoid that.
15 A traditional math library without expression templates always evaluates all sub-expressions into temporaries. So with this code,
21 Expression-templates-based libraries can avoid evaluating sub-expressions into temporaries, which in many cases results in large speed improvements. This is called <i>lazy evaluation</i> as an expression is getting evaluated as late as possible, instead of immediately. However, most other expression-templates-based libraries <i>always</i> choose lazy evaluation. There are two problems with that: first, lazy evaluation is not always a good choice for performance; second, lazy evaluation can be very dangerous, for example with matrix products: doing <tt>matrix = matrix*matrix</tt> gives a wrong result if the matrix product is lazy-evaluated, because of the way matrix product works.
39 <b>The first circumstance</b> in which Eigen chooses immediate evaluation, is when it sees an assignment <tt>a = b;</tt> and the expression \c b has the evaluate-before-assigning \link flags flag\endlink. The most important example of such an expression is the \link GeneralProduct matrix product expression\endlink. For example, when you d
    [all...]
  /external/eigen/doc/examples/
function_taking_eigenbase.cpp 16 // v.asDiagonal() returns a 3x3 diagonal matrix pseudo-expression
  /external/llvm/test/MC/ARM/
bracket-darwin.s 4 // CHECK: error: brackets expression not supported on this target
  /external/llvm/test/MC/ELF/
diff2.s 12 // CHECK: expected relocatable expression
  /external/llvm/test/MC/MachO/
bad-dollar.s 5 // CHECK-ERROR: 4:7: error: invalid token in expression
  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_breaks_3.opt_test.expected 6 (if (expression bool > (var_ref b) (constant float (0.000000)))

Completed in 1584 milliseconds

<<11121314151617181920>>