HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 1 - 25 of 11458) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jsoncpp/test/jsonchecker/
fail11.json 1 {"Illegal expression": 1 + 2
  /packages/apps/Test/connectivity/sl4n/rapidjson/bin/jsonchecker/
fail11.json 1 {"Illegal expression": 1 + 2
  /external/ply/ply/test/pkg_test6/parsing/
expression.py 1 # This file contains definitions of expression grammar
4 '''expression : expression PLUS expression
5 | expression MINUS expression
6 | expression TIMES expression
7 | expression DIVIDE expression'''
    [all...]
statement.py 4 'statement : NAME EQUALS expression'
8 'statement : expression'
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/
byte.l 2 [^:]*:1: Error: unexpected `"' in expression
3 [^:]*:2: Error: unexpected `"' in expression
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
080-if-without-expression.c 1 /* Error message for unskipped #if with no expression. */
080-if-without-expression.c.expected 1 0:2(1): preprocessor error: #if with no expression
081-elif-without-expression.c.expected 1 0:2(1): preprocessor error: #elif with no expression
125-es-short-circuit-undefined.c.expected 1 0:10(16): preprocessor error: undefined macro NOT_DEFINED in expression (illegal in GLES)
2 0:14(23): preprocessor error: undefined macro ALSO_NOT_DEFINED in expression (illegal in GLES)
  /external/proguard/src/proguard/util/
package.html 2 This package contains utility classes for regular expression matching,...
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-scripts/
align2c.d 2 # error: undefined symbol.*in expression
expr1.d 2 # error: undefined section .* in expression
  /external/v8/src/ast/
ast-type-bounds.h 5 // A container to associate type bounds with AST Expression nodes.
16 class Expression;
23 AstBounds get(Expression* expression) const {
24 ZoneMap<Expression*, AstBounds>::const_iterator i =
25 bounds_map_.find(expression);
29 void set(Expression* expression, AstBounds bounds) {
30 bounds_map_[expression] = bounds;
34 ZoneMap<Expression*, AstBounds> bounds_map_
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
ExpressionHelper.java 24 public static boolean isStandaloneExpression(Expression expression) {
25 return !isPolyExpression(expression);
32 public static boolean isPolyExpression(Expression expression) {
33 if (expression instanceof EnclosedExpr) {
34 throw new UnsupportedOperationException(expression.toString());
36 if (expression instanceof ObjectCreationExpr) {
37 // A class instance creation expression is a poly expression (§15.2) if it uses the diamond form for typ
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
NodeWithTraversableScopeTest.java 14 NodeWithTraversableScope expression = parseExpression("getAddress().name.startsWith(\"abc\")"); local
16 assertInstanceOf(MethodCallExpr.class, expression);
17 expression = (NodeWithTraversableScope) expression.traverseScope().get();
18 assertInstanceOf(FieldAccessExpr.class, expression);
19 expression = (NodeWithTraversableScope) expression.traverseScope().get();
20 assertInstanceOf(MethodCallExpr.class, expression);
21 assertFalse(expression.traverseScope().isPresent());
  /external/skia/src/sksl/ir/
SkSLExpressionStatement.h 17 * A lone expression being used as a statement.
20 ExpressionStatement(std::unique_ptr<Expression> expression)
21 : INHERITED(expression->fOffset, kExpression_Kind)
22 , fExpression(std::move(expression)) {}
28 std::unique_ptr<Expression> fExpression;
  /external/skqp/src/sksl/ir/
SkSLExpressionStatement.h 17 * A lone expression being used as a statement.
20 ExpressionStatement(std::unique_ptr<Expression> expression)
21 : INHERITED(expression->fOffset, kExpression_Kind)
22 , fExpression(std::move(expression)) {}
28 std::unique_ptr<Expression> fExpression;
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 202 New expression.sequence([expression_list.expression]))}
208 New expression.sequence([expression_list.expression]))}
214 New expression.sequence([expression_list.expression]))}
220 New expression.sequence([expression_list.expression]))}
222 | {set} cs_open set command_delimiter variable assignment expression cs_close
227 expression.expression)
    [all...]
  /system/tools/hidl/c2hal/
Expression.cpp 17 #include "Expression.h"
32 Expression::Type Expression::integralType(const std::string& integer) {
54 Expression::Type Expression::coalesceTypes(Type lhs, Type rhs) {
82 struct ParenthesizedExpression : Expression {
83 ParenthesizedExpression(Expression* inner)
97 Expression* mInner;
102 struct AtomExpression : Expression {
133 struct UnaryExpression : Expression {
    [all...]
  /external/annotation-tools/annotation-file-utilities/tests/
CastInsert.jaif 18 insert-typecast Variable.initializer, Binary.rightOperand, MethodInvocation.methodSelect, MemberSelect.expression: @Nullable String
23 insert-typecast Block.statement 2, ExpressionStatement.expression, Assignment.expression: @Nullable String
24 insert-typecast Block.statement 2, ExpressionStatement.expression, Assignment.expression, Binary.leftOperand: @Nullable String
25 insert-typecast Block.statement 2, ExpressionStatement.expression, Assignment.expression, Binary.rightOperand: @Nullable String
26 insert-typecast Block.statement 4, ExpressionStatement.expression, Assignment.expression, ArrayAccess.index: @Nullable Integer
27 insert-typecast Block.statement 7, Switch.expression, Parenthesized.expression: @Nullable Intege
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
missing.l 2 [^:]*:1: Error: missing expression -- `bl'
3 [^:]*:2: Error: missing expression -- `blx'
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
expr-1.s 1 % Test expression example from TAOCP. Nothing problematic; does not have
2 % the known expression evaluation order mismatch problem.
err-bspec-5.s 10 BSPEC 65536 % { dg-error "invalid BSPEC expression" "" }
13 BSPEC forw % { dg-error "invalid BSPEC expression" "" }
16 BSPEC here % { dg-error "invalid BSPEC expression" "" }
19 BSPEC -1 % { dg-error "invalid BSPEC expression" "" }
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
ConditionalExpr.java 31 public final class ConditionalExpr extends Expression {
33 private Expression condition;
35 private Expression thenExpr;
37 private Expression elseExpr;
42 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) {
48 public ConditionalExpr(Range range, Expression condition, Expression thenExpr, Expression elseExpr)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
ConditionalExpr.java 30 public final class ConditionalExpr extends Expression {
32 private Expression condition;
34 private Expression thenExpr;
36 private Expression elseExpr;
41 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) {
47 public ConditionalExpr(int beginLine, int beginColumn, int endLine, int endColumn, Expression condition, Expression thenExpr, Expression elseExpr)
    [all...]

Completed in 565 milliseconds

1 2 3 4 5 6 7 8 91011>>