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

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/system_wrappers/include/
compile_assert_c.h 19 // The argument is the boolean expression to evaluate.
22 #define COMPILE_ASSERT(expression) switch (0) {case 0: case expression:;}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
missing.l 2 [^:]*:1: Error: missing expression -- `bl'
3 [^:]*:2: Error: missing expression -- `blx'
  /external/jsilver/src/com/google/streamhtmlparser/impl/
StateTableTransition.java 25 * <li>An expression which consists of one or more characters and/or
37 private final String expression; field in class:StateTableTransition
50 return String.format("Expression: %s; From: %s; To: %s",
51 expression, from, to);
54 StateTableTransition(String expression, InternalState from,
57 Preconditions.checkNotNull(expression);
60 this.expression = expression;
66 return expression;
  /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/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...]
  /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());
  /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/tensorflow/tensorflow/compiler/xla/
test_helpers.h 62 #define EXPECT_IS_OK(expression) \
64 xla::testing::internal_status::GetStatus(expression))
65 #define EXPECT_IS_NOT_OK(expression) \
67 xla::testing::internal_status::GetStatus(expression))
69 #define ASSERT_IS_OK(expression) \
71 xla::testing::internal_status::GetStatus(expression))
73 #define ASSERT_IS_NOT_OK(expression) \
75 xla::testing::internal_status::GetStatus(expression))
  /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/skia/src/sksl/ast/
SkSLASTIndexSuffix.h 17 * A bracketed expression, as in '[0]', indicating an array access. Empty brackets (as occur in
25 ASTIndexSuffix(std::unique_ptr<ASTExpression> expression)
26 : INHERITED(expression ? expression->fOffset : -1, ASTSuffix::kIndex_Kind)
27 , fExpression(std::move(expression)) {}
SkSLASTExpressionStatement.h 16 * A lone expression being used as a statement.
19 ASTExpressionStatement(std::unique_ptr<ASTExpression> expression)
20 : INHERITED(expression->fOffset, kExpression_Kind)
21 , fExpression(std::move(expression)) {}
  /external/skqp/src/sksl/ast/
SkSLASTIndexSuffix.h 17 * A bracketed expression, as in '[0]', indicating an array access. Empty brackets (as occur in
25 ASTIndexSuffix(std::unique_ptr<ASTExpression> expression)
26 : INHERITED(expression ? expression->fOffset : -1, ASTSuffix::kIndex_Kind)
27 , fExpression(std::move(expression)) {}
SkSLASTExpressionStatement.h 16 * A lone expression being used as a statement.
19 ASTExpressionStatement(std::unique_ptr<ASTExpression> expression)
20 : INHERITED(expression->fOffset, kExpression_Kind)
21 , fExpression(std::move(expression)) {}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
rel-2.s 1 ! Like rel-1.s, but using "$", not "datalabel $" as self expression. It's
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
Main.java 19 for (String expression : args) {
20 ExpressionParser parser = new ExpressionParser(expression);
22 System.out.printf("%s = %s%n", expression, result);
  /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;
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;
  /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;
  /frameworks/data-binding/compilerCommon/
BindingExpression.g4 29 : expression defaults? # RootExpr
44 : args=lambdaParameters '->' expr=expression
56 expression
57 : '(' expression ')' # Grouping
66 | expression '.' Identifier # DotOp
67 | expression '::' Identifier # FunctionRef
68 // | expression '.' 'this' # ThisReference
69 // | expression '.' explicitGenericInvocation # ExplicitGenericInvocationOp
70 | expression '[' expression ']' # BracketO
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
ExpressionParser.y 16 This file contains the Yacc grammar for GLSL ES preprocessor expression.
19 WHICH GENERATES THE GLSL ES preprocessor expression parser.
125 : expression {
131 expression
144 | expression TOK_OP_OR {
147 // Ignore errors in the short-circuited part of the expression.
154 } expression {
165 | expression TOK_OP_AND {
168 // Ignore errors in the short-circuited part of the expression.
175 } expression {
    [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...]
  /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/google-breakpad/src/processor/
cfi_frame_info.h 72 // Set the expression for computing a call frame address, return
75 void SetCFARule(const string &expression) { cfa_rule_ = expression; }
76 void SetRARule(const string &expression) { ra_rule_ = expression; }
77 void SetRegisterRule(const string &register_name, const string &expression) {
78 register_rules_[register_name] = expression;
82 // this rule set. Use ValueType in expression evaluation; this
112 // In this type, a "postfix expression" is an expression of the sor
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
NodeWithExpression.java 25 import com.github.javaparser.ast.expr.Expression;
30 * A node that has an expression in it.
33 Expression getExpression();
35 N setExpression(Expression expression);
37 default N setExpression(String expression) {
38 return setExpression(parseExpression(expression));

Completed in 287 milliseconds

1 2 3 4 5 6 7 8 91011>>