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

1 2 3 4 56 7 8 91011>>

  /external/v8/test/message/
syntactic-tail-call-in-binop-rhs.out 1 *%(basename)s:13: SyntaxError: Tail call expression is not allowed here
4 SyntaxError: Tail call expression is not allowed here
syntactic-tail-call-in-comma.out 1 *%(basename)s:13: SyntaxError: Tail call expression is not allowed here
4 SyntaxError: Tail call expression is not allowed here
syntactic-tail-call-in-extends.out 1 *%(basename)s:9: SyntaxError: Tail call expression is not allowed here
4 SyntaxError: Tail call expression is not allowed here
syntactic-tail-call-in-for-in.out 1 *%(basename)s:14: SyntaxError: Tail call expression in for-in/of body
4 SyntaxError: Tail call expression in for-in/of body
syntactic-tail-call-in-for-of.out 1 *%(basename)s:14: SyntaxError: Tail call expression in for-in/of body
4 SyntaxError: Tail call expression in for-in/of body
syntactic-tail-call-in-logical-and.out 1 *%(basename)s:13: SyntaxError: Tail call expression is not allowed here
4 SyntaxError: Tail call expression is not allowed here
syntactic-tail-call-in-try-catch-finally.out 1 *%(basename)s:16: SyntaxError: Tail call expression in catch block when finally block is also present
4 SyntaxError: Tail call expression in catch block when finally block is also present
syntactic-tail-call-inside-member-expr.out 1 *%(basename)s:13: SyntaxError: Tail call expression is not allowed here
4 SyntaxError: Tail call expression is not allowed here
syntactic-tail-call-without-return.out 1 *%(basename)s:13: SyntaxError: Tail call expression is not allowed here
4 SyntaxError: Tail call expression is not allowed here
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
immexpr2.s 1 ! This expression and the associated resolved-expression case is new for SH64.
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 25 * Represents a node of a Java expression.
39 protected JavaExpression cast(JavaExpression expression) {
40 if (expression.getType() == VAR_NAME) {
41 expression = expression.cast(DATA);
43 return call(Type.STRING, "asString", expression);
48 protected JavaExpression cast(JavaExpression expression) {
49 if (expression.getType() == VAR_NAME) {
50 expression = expression.cast(DATA)
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p2-cxx0x.cpp 13 new auto; // expected-error{{new expression for type 'auto' requires a constructor argument}}
14 new (const auto)(); // expected-error{{new expression for type 'const auto' requires a constructor argument}}
15 new (auto) (1,2,3); // expected-error{{new expression for type 'auto' contains multiple constructor arguments}}
16 new auto {1,2,3}; // expected-error{{new expression for type 'auto' cannot use list-initialization}}
17 new auto ({1,2,3}); // expected-error{{new expression for type 'auto' cannot use list-initialization}}
  /external/llvm/test/MC/MachO/
bad-darwin-x86_64-diff-relocs.s 5 // CHECK-ERROR: error: unsupported relocation with subtraction expression
9 // CHECK-ERROR: error: unsupported relocation with subtraction expression, symbol '_b' can not be undefined in a subtraction expression
13 // CHECK-ERROR: error: unsupported relocation with subtraction expression, symbol '_a' can not be undefined in a subtraction expression
  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_breaks_6.opt_test 16 ((if (expression bool > (var_ref a) (constant float (0.000000)))
17 ((if (expression bool > (var_ref ba) (constant float (0.000000)))
18 ((if (expression bool > (var_ref bb) (constant float (0.000000)))
22 (if (expression bool > (var_ref ca) (constant float (0.000000)))
23 ((if (expression bool > (var_ref cb) (constant float (0.000000)))
lower_breaks_6.opt_test.expected 11 (if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref ba) (constant float (0.000000)))
13 ((if (expression bool > (var_ref bb) (constant float (0.000000)))
18 ((if (expression bool > (var_ref ca) (constant float (0.000000)))
19 ((if (expression bool > (var_ref cb) (constant float (0.000000)))
  /ndk/sources/android/support/tests/minitest/
minitest.h 53 // EXPECT_EQ(expected, expression) << "When checking 'foo'";
57 // EXPECT_EQ(expected, expression);
267 #define EXPECT_TRUE(expression) \
269 if (!(expression)) { \
271 "EXPECT_TRUE:%s:%d: expression '%s' returned 'false', expected " \
275 #expression); \
280 #define EXPECT_FALSE(expression) \
282 if (!!(expression)) { \
284 "EXPECT_FALSE:%s:%d: expression '%s' returned 'true', expected " \
288 #expression); \
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
err-byte2.s 10 BYTE -1 % { dg-error "BYTE expression not in the range 0..255" "" }
11 BYTE m1 % { dg-error "BYTE expression not in the range 0..255" "" }
14 BYTE zero+m1 % { dg-error "BYTE expression not in the range 0..255" "" }
16 BYTE 256 % { dg-error "BYTE expression not in the range 0..255" "" }
17 BYTE unk+1 % { dg-error "BYTE expression not a pure number" "" }
  /external/clang/test/Sema/
outof-range-constant-compare.c 9 if (a == 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
11 if (a != 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
13 if (a < 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
15 if (a <= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
17 if (a > 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
19 if (a >= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
22 if (0x1234567812345678L == a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
24 if (0x1234567812345678L != a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always true}}
26 if (0x1234567812345678L < a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}}
28 if (0x1234567812345678L <= a) // expected-warning {{comparison of constant 1311768465173141112 with expression of type 'int' is always false}
    [all...]
bool-compare.c 8 if ((a > 2) > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is always false}}
33 if (!a > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is always false}}
34 if (!a > 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always false}}
37 if (!a > -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always true}}
39 if (!a < 0) {} // expected-warning {{comparison of constant 0 with boolean expression is always false}}
41 if (!a < 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always true}}
44 if (!a < -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always false}}
46 if (!a >= 0) {} // expected-warning {{comparison of constant 0 with boolean expression is always true}}
48 if (!a >= 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always false}}
51 if (!a >= -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always true}
    [all...]
  /frameworks/compile/mclinker/lib/Script/
ScriptScanner.ll 53 %s EXPRESSION
67 case ScriptFile::Expression:
101 <LDSCRIPT,EXPRESSION>"HIDDEN" { return token::HIDDEN; }
102 <LDSCRIPT,EXPRESSION>"PROVIDE" { return token::PROVIDE; }
103 <LDSCRIPT,EXPRESSION>"PROVIDE_HIDDEN" { return token::PROVIDE_HIDDEN; }
111 <EXPRESSION>"ABSOLUTE" { return token::ABSOLUTE; }
112 <EXPRESSION>"ADDR" { return token::ADDR; }
113 <LDSCRIPT,EXPRESSION>"ALIGN" { return token::ALIGN; }
114 <EXPRESSION>"ALIGNOF" { return token::ALIGNOF; }
115 <EXPRESSION>"BLOCK" { return token::BLOCK;
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
WildcardMatcher.java 19 * expression matches if at least one part matches.
26 * Creates a new matcher with the given expression.
28 * @param expression
31 public WildcardMatcher(final String expression) {
32 final String[] parts = expression.split("\\:");
33 final StringBuilder regex = new StringBuilder(expression.length() * 2);
45 private static CharSequence toRegex(final String expression) {
46 final StringBuilder regex = new StringBuilder(expression.length() * 2);
47 for (final char c : expression.toCharArray()) {
68 * @return <code>true</code>, if the expression matche
    [all...]
  /frameworks/data-binding/compilerCommon/
BindingExpression.g4 29 : expression defaults?
41 expression
42 : '(' expression ')' # Grouping
50 | expression '.' Identifier # DotOp
51 // | expression '.' 'this' # ThisReference
52 // | expression '.' explicitGenericInvocation # ExplicitGenericInvocationOp
53 | expression '[' expression ']' # BracketOp
54 | target=expression '.' methodName=Identifier '(' args=expressionList? ')' # MethodInvocation
55 | '(' type ')' expression # CastO
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t042ast.g 34 : 'assert'^ x=expression (':'! y=expression)? ';'!
38 : 'if'^ expression s1=statement ('else'! s2=statement)?
42 : 'while'^ expression statement
46 : 'return'^ expression? ';'!
70 : expression -> ^(EXPR expression)
83 : expression? statement* type+
84 -> ^(EXPR expression? statement* type+)
96 : 'for' '(' start=statement ';' expression ';' next=statement ')' statemen
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t042ast.g 28 : 'assert'^ x=expression (':'! y=expression)? ';'!
32 : 'if'^ expression s1=statement ('else'! s2=statement)?
36 : 'while'^ expression statement
40 : 'return'^ expression? ';'!
64 : expression -> ^(EXPR expression)
77 : expression? statement* type+
78 -> ^(EXPR expression? statement* type+)
90 : 'for' '(' start=statement ';' expression ';' next=statement ')' statemen
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
ExpressionOwner.java 24 * Classes that implement this interface own an expression, which
30 * Get the raw Expression object that this class wraps.
32 * @return the raw Expression object, which should not normally be null.
34 public Expression getExpression();
37 * Set the raw expression object for this object.
39 * @param exp the raw Expression object, which should not normally be null.
41 public void setExpression(Expression exp);

Completed in 617 milliseconds

1 2 3 4 56 7 8 91011>>