/toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/ |
expr1.d | 2 # error: expr1.t:3: nonconstant expression for load base
|
/external/fio/exp/ |
README.md | 1 simple-expression-parser 4 A simple expression parser for arithmetic expressions made with bison + flex 6 To use, see the example test-expression-parser.c
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/ |
NodeWithCondition.java | 4 import com.github.javaparser.ast.expr.Expression; 7 Expression getCondition(); 9 N setCondition(Expression condition);
|
/system/tools/hidl/c2hal/ |
Expression.h | 30 struct Expression { 31 Expression() {} 32 virtual ~Expression() {} 69 static Expression *parenthesize(Expression *inner); 70 static Expression *atom(Type type, const std::string &value, bool isId = false); 71 static Expression *unary(std::string op, Expression *rhs); 72 static Expression *binary(Expression *lhs, std::string op, Expression *rhs) [all...] |
/test/vts-testcase/hal/tests/expression/V1_0/build/ |
Android.bp | 6 name: "android.hardware.tests.expression@1.0-vts.spec", 9 ":android.hardware.tests.expression@1.0_hal", 12 "android/hardware/tests/expression/1.0/Expression.vts", 13 "android/hardware/tests/expression/1.0/ExpressionExt.vts", 19 name: "android.hardware.tests.expression@1.0-vts.driver_genc++", 21 cmd: "$(location hidl-gen) -o $(genDir) -Lvts -r android.hardware:hardware/interfaces android.hardware.tests.expression@1.0 && $(location vtsc) -mDRIVER -tSOURCE -b$(genDir) android/hardware/tests/expression/1.0/ $(genDir)/android/hardware/tests/expression/1.0/", 23 ":android.hardware.tests.expression@1.0_hal" [all...] |
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/stmt/ |
BlockStmtTest.java | 3 import com.github.javaparser.ast.expr.Expression; 12 Expression exp = new NameExpr("x"); 13 MethodCallExpr expression = new MethodCallExpr(exp, "y"); local 15 blockStmt.addStatement(expression); 16 blockStmt.addStatement(expression.clone());
|
/external/skia/src/sksl/ir/ |
SkSLReturnStatement.h | 23 ReturnStatement(std::unique_ptr<Expression> expression) 24 : INHERITED(expression->fOffset, kReturn_Kind) 25 , fExpression(std::move(expression)) {} 35 std::unique_ptr<Expression> fExpression;
|
SkSLExpression.h | 18 struct Expression; 21 typedef std::unordered_map<const Variable*, std::unique_ptr<Expression>*> DefinitionMap; 26 struct Expression : public IRNode { 47 Expression(int offset, Kind kind, const Type& type) 53 * Returns true if this expression is constant. compareConstant must be implemented for all 61 * Compares this constant expression against another constant expression of the same type. It is 65 virtual bool compareConstant(const Context& context, const Expression& other) const { 70 * For an expression which evaluates to a constant int, returns the value. Otherwise calls 78 * For an expression which evaluates to a constant float, returns the value. Otherwise call [all...] |
/external/skqp/src/sksl/ir/ |
SkSLReturnStatement.h | 23 ReturnStatement(std::unique_ptr<Expression> expression) 24 : INHERITED(expression->fOffset, kReturn_Kind) 25 , fExpression(std::move(expression)) {} 35 std::unique_ptr<Expression> fExpression;
|
SkSLExpression.h | 18 struct Expression; 21 typedef std::unordered_map<const Variable*, std::unique_ptr<Expression>*> DefinitionMap; 26 struct Expression : public IRNode { 47 Expression(int offset, Kind kind, const Type& type) 53 * Returns true if this expression is constant. compareConstant must be implemented for all 61 * Compares this constant expression against another constant expression of the same type. It is 65 virtual bool compareConstant(const Context& context, const Expression& other) const { 70 * For an expression which evaluates to a constant int, returns the value. Otherwise calls 78 * For an expression which evaluates to a constant float, returns the value. Otherwise call [all...] |
/external/libxml2/python/tests/ |
xpathleak.py | 6 expect="""--> Invalid expression 7 --> Invalid expression 8 --> Invalid expression 9 --> Invalid expression 10 --> Invalid expression 11 --> Invalid expression 12 --> Invalid expression 13 --> Invalid expression 14 --> Invalid expression 15 --> Invalid expression [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ |
cr-err.l | 2 .*:[0-9]+: Error: .\(%cr0\). is not a valid base/index expression 3 .*:[0-9]+: Error: .\(%cr7\). is not a valid base/index expression 4 .*:[0-9]+: Error: .\(%cr8\). is not a valid base/index expression 5 .*:[0-9]+: Error: .\(%cr15\). is not a valid base/index expression 6 .*:[0-9]+: Error: .\(%db0\). is not a valid base/index expression 7 .*:[0-9]+: Error: .\(%db7\). is not a valid base/index expression 8 .*:[0-9]+: Error: .\(%dr0\). is not a valid base/index expression 9 .*:[0-9]+: Error: .\(%dr7\). is not a valid base/index expression 10 .*:[0-9]+: Error: .\(%tr0\). is not a valid base/index expression 11 .*:[0-9]+: Error: .\(%tr7\). is not a valid base/index expression [all...] |
/external/annotation-tools/annotation-file-utilities/tests/ |
ASTInsert.jaif | 27 insert-annotation Variable.initializer, Binary.rightOperand, MethodInvocation.methodSelect, MemberSelect.expression: @Nullable 38 insert-annotation Block.statement 2, ExpressionStatement.expression, Assignment.expression: @Nullable 39 insert-annotation Block.statement 2, ExpressionStatement.expression, Assignment.expression, Binary.leftOperand: @Nullable 40 insert-annotation Block.statement 2, ExpressionStatement.expression, Assignment.expression, Binary.rightOperand: @Nullable 41 insert-annotation Block.statement 4, ExpressionStatement.expression, Assignment.expression, ArrayAccess.index: @Nullable 42 insert-annotation Block.statement 7, Switch.expression, Parenthesized.expression: @Nullabl [all...] |
/external/ply/ply/test/ |
yacc_literal.py | 24 'statement : NAME EQUALS expression' 28 'statement : expression' 32 '''expression : expression '+' expression 33 | expression '-' expression 34 | expression '*' expression 35 | expression '/' expressio [all...] |
yacc_unused.py | 24 'statement : NAME EQUALS expression' 28 'statement : expression' 32 '''expression : expression PLUS expression 33 | expression MINUS expression 34 | expression TIMES expression 35 | expression DIVIDE expression'' [all...] |
yacc_badid.py | 24 'statement : NAME EQUALS expression' 28 'statement : expression' 36 'bad&rule : expression' 41 '''expression : expression PLUS expression 42 | expression MINUS expression 43 | expression TIMES expression [all...] |
/external/v8/src/ast/ |
ast-expression-rewriter.cc | 5 #include "src/ast/ast-expression-rewriter.h" 40 ZoneList<Expression*>* expressions) { 44 // undefined expression or literal? Revisit this code if this 47 AST_REWRITE_LIST_ELEMENT(Expression, expressions, i); 74 AST_REWRITE_PROPERTY(Expression, node, expression); 90 AST_REWRITE_PROPERTY(Expression, node, condition); 107 AST_REWRITE_PROPERTY(Expression, node, expression); 112 AST_REWRITE_PROPERTY(Expression, node, expression) [all...] |
/external/clang/test/Sema/ |
warn-unused-value.c | 12 1,foo(); // expected-warning {{expression result unused}} 16 i; // expected-warning {{expression result unused}} 18 i,foo(); // expected-warning {{expression result unused}} 19 foo(),i; // expected-warning {{expression result unused}} 21 i,j,foo(); // expected-warning {{expression result unused}} expected-warning {{expression result unused}} 22 i,foo(),j; // expected-warning {{expression result unused}} expected-warning {{expression result unused}} 23 foo(),i,j; // expected-warning {{expression result unused}} expected-warning {{expression result unused} [all...] |
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/ |
XmlPrinterTest.java | 4 import com.github.javaparser.ast.expr.Expression; 12 Expression expression = JavaParser.parseExpression("1+1"); local 15 String output = xmlOutput.output(expression); 22 Expression expression = JavaParser.parseExpression("1+1"); local 26 String output = xmlOutput.output(expression); 33 Expression expression = JavaParser.parseExpression("a(1,2)"); local 37 String output = xmlOutput.output(expression); [all...] |
/external/annotation-tools/annotation-file-utilities/tests/converted/ |
CastInsert.jaif | 22 insert-typecast Variable.initializer, Binary.rightOperand, MethodInvocation.methodSelect, MemberSelect.expression: @checkers.nullness.quals.Nullable String 27 insert-typecast Block.statement 24, Try.catch 1, Catch.block, Block.statement 0, ExpressionStatement.expression, Assignment.expression: @checkers.nullness.quals.Nullable Integer 28 insert-typecast Block.statement 24, Try.finallyBlock, Block.statement 0, ExpressionStatement.expression, Assignment.expression, Binary.rightOperand: @checkers.nullness.quals.Nullable Integer 29 insert-typecast Block.statement 7, Switch.case 0, Case.statement 0, ExpressionStatement.expression, Assignment.expression, Binary.rightOperand: @checkers.nullness.quals.Nullable Integer 30 insert-typecast Block.statement 25, ExpressionStatement.expression, Assignment.expression, TypeCast.expression, Parenthesized.expression, Binary.rightOperand: @checkers.nullness.quals.Nullable Intege [all...] |
/external/ply/ply/test/pkg_test1/parsing/ |
calcparse.py | 21 'statement : NAME EQUALS expression' 25 'statement : expression' 29 '''expression : expression PLUS expression 30 | expression MINUS expression 31 | expression TIMES expression 32 | expression DIVIDE expression'' [all...] |
/external/ply/ply/test/pkg_test2/parsing/ |
calcparse.py | 21 'statement : NAME EQUALS expression' 25 'statement : expression' 29 '''expression : expression PLUS expression 30 | expression MINUS expression 31 | expression TIMES expression 32 | expression DIVIDE expression'' [all...] |
/external/ply/ply/test/pkg_test3/parsing/ |
calcparse.py | 21 'statement : NAME EQUALS expression' 25 'statement : expression' 29 '''expression : expression PLUS expression 30 | expression MINUS expression 31 | expression TIMES expression 32 | expression DIVIDE expression'' [all...] |
/external/ply/ply/test/pkg_test4/parsing/ |
calcparse.py | 21 'statement : NAME EQUALS expression' 25 'statement : expression' 29 '''expression : expression PLUS expression 30 | expression MINUS expression 31 | expression TIMES expression 32 | expression DIVIDE expression'' [all...] |
/external/ply/ply/test/pkg_test5/parsing/ |
calcparse.py | 21 'statement : NAME EQUALS expression' 25 'statement : expression' 29 '''expression : expression PLUS expression 30 | expression MINUS expression 31 | expression TIMES expression 32 | expression DIVIDE expression'' [all...] |