/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/ |
ThrowStmt.java | 24 import com.github.javaparser.ast.expr.Expression; 48 private Expression expression; field in class:ThrowStmt 55 public ThrowStmt(final Expression expression) { 56 this(null, expression); 63 public ThrowStmt(TokenRange tokenRange, Expression expression) { 65 setExpression(expression); 82 public Expression getExpression() [all...] |
ExplicitConstructorInvocationStmt.java | 25 import com.github.javaparser.ast.expr.Expression; 62 private Expression expression; field in class:ExplicitConstructorInvocationStmt 64 private NodeList<Expression> arguments; 70 public ExplicitConstructorInvocationStmt(final boolean isThis, final Expression expression, final NodeList<Expression> arguments) { 71 this(null, new NodeList<>(), isThis, expression, arguments); 75 public ExplicitConstructorInvocationStmt(final NodeList<Type> typeArguments, final boolean isThis, final Expression expression, final NodeList<Expression> arguments) [all...] |
/external/libxml2/result/XPath/expr/ |
equality | 3 Expression: 1=1 7 Expression: 1!=1 11 Expression: 1=0 15 Expression: 1!=0 19 Expression: true()=true() 23 Expression: true()!=true() 27 Expression: true()=false() 31 Expression: false()!=true() 35 Expression: 'test'='test' 39 Expression: 'test'!='test [all...] |
compare | 3 Expression: 0<0 7 Expression: 0<=0 11 Expression: 0>0 15 Expression: 0>=0 19 Expression: 0<1 23 Expression: 0<=1 27 Expression: 0>1 31 Expression: 0>=1 35 Expression: 1<0 39 Expression: 1<= [all...] |
/toolchain/binutils/binutils-2.27/intl/ |
plural.y | 2 /* Expression parsing for plural form selection. 52 struct expression *exp; 57 static struct expression *new_exp PARAMS ((int nargs, enum operator op, 58 struct expression * const *args)); 59 static inline struct expression *new_exp_0 PARAMS ((enum operator op)); 60 static inline struct expression *new_exp_1 PARAMS ((enum operator op, 61 struct expression *right)); 62 static struct expression *new_exp_2 PARAMS ((enum operator op, 63 struct expression *left, 64 struct expression *right)) [all...] |
/art/tools/checker/match/ |
line.py | 27 for index, expression in enumerate(expressions): 28 if expression.variant == TestExpression.Variant.Separator: 50 for expression in checkerWord: 51 # If `expression` is a variable reference, replace it with the value. 52 if expression.variant == TestExpression.Variant.VarRef: 53 pattern = re.escape(getVariable(expression.name, variables, pos)) 55 pattern = expression.text 57 # Match the expression's regex pattern against the remainder of the word. 63 # If `expression` was a variable definition, set the variable's value. 64 if expression.variant == TestExpression.Variant.VarDef [all...] |
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/ |
TTree.g | 35 | expression 43 expression 44 : ^(ADD expression expression)
|
/external/clang/test/CXX/special/class.dtor/ |
p10-0x.cpp | 9 x->~decltype(*x)(); // expected-error{{the type of object expression ('const int') does not match the type being destroyed ('decltype(*x)' (aka 'const int &')) in pseudo-destructor expression}} \ 13 y->~decltype(*y)(); // expected-error{{destructor type 'decltype(*y)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 14 y->~decltype(T())(); // expected-error{{destructor type 'decltype(T())' in object destruction expression does not match the type 'const A' of the object being destroyed}} 21 x->~decltype(*x)(); // expected-error{{destructor type 'decltype(*x)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 22 x->~decltype()(); // expected-error{{expected expression}} 23 x->~decltype(B())(); // expected-error{{destructor type 'decltype(B())' (aka 'B') in object destruction expression does not match the type 'const A' of the object being destroyed}} 24 x->~decltype(x)(); // expected-error{{destructor type 'decltype(x)' (aka 'const A *') in object destruction expression does not match the type 'const A' of the object being destroyed}} 33 expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}} [all...] |
/external/clang/test/Preprocessor/ |
annotate_in_macro_arg.c | 6 #if M1() // expected-error{{expected value in expression}}
|
/external/clang/test/Sema/ |
invalid-init-diag.c | 4 struct {int x;} x = a; // expected-error {{with an expression of incompatible type 'int'}}
|
/external/clang/test/SemaCXX/ |
enum-increment.cpp | 6 a++; // expected-error{{cannot increment expression of enum type 'A'}} 7 a--; // expected-error{{cannot decrement expression of enum type 'A'}} 8 ++a; // expected-error{{cannot increment expression of enum type 'A'}} 9 --a; // expected-error{{cannot decrement expression of enum type 'A'}}
|
/external/clang/test/SemaObjC/ |
warn-write-strings.m | 4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
|
/external/clang/test/SemaOpenCL/ |
invalid-image.cl | 8 i=i; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and '__read_only image1d_t')}} 9 i+1; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and 'int')}} 10 &i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}} 11 *i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}}
|
/external/skia/src/sksl/ir/ |
SkSLVariableReference.h | 28 struct VariableReference : public Expression { 88 static std::unique_ptr<Expression> copy_constant(const IRGenerator& irGenerator, 89 const Expression* expr) { 92 case Expression::kIntLiteral_Kind: 93 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext, 96 case Expression::kFloatLiteral_Kind: 97 return std::unique_ptr<Expression>(new FloatLiteral( 101 case Expression::kBoolLiteral_Kind: 102 return std::unique_ptr<Expression>(new BoolLiteral(irGenerator.fContext, 105 case Expression::kConstructor_Kind: [all...] |
/external/skqp/src/sksl/ir/ |
SkSLVariableReference.h | 28 struct VariableReference : public Expression { 85 static std::unique_ptr<Expression> copy_constant(const IRGenerator& irGenerator, 86 const Expression* expr) { 89 case Expression::kIntLiteral_Kind: 90 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext, 93 case Expression::kFloatLiteral_Kind: 94 return std::unique_ptr<Expression>(new FloatLiteral( 98 case Expression::kBoolLiteral_Kind: 99 return std::unique_ptr<Expression>(new BoolLiteral(irGenerator.fContext, 102 case Expression::kConstructor_Kind: [all...] |
/frameworks/compile/slang/tests/F_foreach_forward_reference/ |
stderr.txt.expect | 2 foreach_forward_reference.rs:6:13: error: expected expression
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
regex_error.h | 67 /** The expression contained an invalid collating element name. */ 70 /** The expression contained an invalid character class name. */ 74 * The expression contained an invalid escaped character, or a trailing 79 /** The expression contained an invalid back reference. */ 82 /** The expression contained mismatched [ and ]. */ 85 /** The expression contained mismatched ( and ). */ 88 /** The expression contained mismatched { and } */ 91 /** The expression contained an invalid range in a {} expression. */ 95 * The expression contained an invalid character range [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
regex_error.h | 67 /** The expression contained an invalid collating element name. */ 70 /** The expression contained an invalid character class name. */ 74 * The expression contained an invalid escaped character, or a trailing 79 /** The expression contained an invalid back reference. */ 82 /** The expression contained mismatched [ and ]. */ 85 /** The expression contained mismatched ( and ). */ 88 /** The expression contained mismatched { and } */ 91 /** The expression contained an invalid range in a {} expression. */ 95 * The expression contained an invalid character range [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/ |
equiv2.s | 1 ;# Re-definition of an already .equiv-ed symbol (to an expression).
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/ |
shexpr-1.s | 1 ; This expression had a bit moved.
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/ |
bad-size.err | 3 .*bad-size\.s:.* Error: \.size expression .* does not evaluate to a constant
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/elf/ |
symtab.d | 3 #name: .set with expression
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/ |
tls-ill.l | 2 .*:6: Error: bad expression 4 .*:7: Error: bad expression 6 .*:8: Error: bad expression 9 .*:9: Error: bad expression
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/ |
err-loc-1.s | 4 LOC #100 % { dg-error "LOC expression stepping backwards" "" }
|
err-loc-10.s | 4 LOC (#80 << 56) + #100 % { dg-error "LOC expression stepping backwards" "" }
|