HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 276 - 300 of 6680) sorted by null

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncExtFunction.java 26 import org.apache.xpath.Expression;
38 * An object of this class represents an extension call expression. When
39 * the expression executes, it calls ExtensionsTable#extFunction, and then
94 Expression arg = (Expression) m_argVec.elementAt(i);
135 * @return The Expression object at the given index.
137 public Expression getArg(int n) {
139 return (Expression) m_argVec.elementAt(n);
197 Expression arg = (Expression) m_argVec.elementAt(i)
    [all...]
  /external/e2fsprogs/intl/
plural.y 2 /* Expression parsing for plural form selection.
52 struct expression *exp;
62 static struct expression *
63 new_exp (int nargs, enum operator op, struct expression * const *args)
66 struct expression *newp;
73 /* Allocate a new expression. */
74 newp = (struct expression *) malloc (sizeof (*newp));
91 static inline struct expression *
97 static inline struct expression *
98 new_exp_1 (enum operator op, struct expression *right
    [all...]
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/imports/
Ruleb.g 10 | expression SEMI!
  /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/Lexer/
eof-file.c 7 // expected-error@+1{{expected expression}} expected-error@+1{{expected ';'}}
  /external/clang/test/OpenMP/
target_data_device_messages.cpp 14 #pragma omp target data device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
15 #pragma omp target data device () // expected-error {{expected expression}}
18 #pragma omp target data device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
24 #pragma omp target device (3.14) // expected-error {{expression must have integral or unscoped enumeration type, not 'double'}}
target_device_messages.cpp 14 #pragma omp target device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
15 #pragma omp target device () // expected-error {{expected expression}}
18 #pragma omp target device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
24 #pragma omp target device (3.14) // expected-error {{expression must have integral or unscoped enumeration type, not 'double'}}
  /external/clang/test/Parser/
objc-messaging-neg-1.m 12 [] {}; // expected-error {{expected expression}}
  /external/clang/test/Preprocessor/
pr19649-signed-wchar_t.c 5 # error "Unexpected expression evaluation result"
pr19649-unsigned-wchar_t.c 5 # error "Unexpected expression evaluation result"
  /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 14 ++b; // expected-warning {{incrementing expression of type bool is deprecated}}
15 b++; // expected-warning {{incrementing expression of type bool is deprecated}}
16 --b; // expected-error {{cannot decrement expression of type bool}}
17 b--; // expected-error {{cannot decrement expression of type bool}}
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/
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/libxml2/result/XPath/tests/
usr1check 3 Expression: //ITEM[1]
  /external/libxml2/result/XPath/xptr/
vidchildseq 3 Expression: /1/2/3
12 Expression: element(/1/2/3)
21 Expression: chapter1/3
30 Expression: element(chapter1/3)
viderror 3 Expression: xpointer(non-existing-fn()/range-to(id('chapter2')))
  /external/llvm/test/MC/AArch64/
error-location-ldr-pseudo.s 4 // CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: expected relocatable expression
  /external/llvm/test/MC/ARM/
arm-elf-relocation-diagnostics.s 7 @ CHECK: error: relocated expression must be 32-bit
12 @ CHECK: error: relocated expression must be 32-bit
17 @ CHECK: error: relocated expression must be 32-bit
22 @ CHECK: error: relocated expression must be 32-bit

Completed in 542 milliseconds

<<11121314151617181920>>