HomeSort by relevance Sort by last modified time
    Searched refs:expr (Results 26 - 50 of 3087) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.g3 56 stat: expr { string result = $expr.value.ToString();
57 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; }
63 expr returns [BigInteger value]
64 : ^('+' a=expr b=expr) { $value = $a.value.add($b.value); }
65 | ^('-' a=expr b=expr) { $value = $a.value.subtract($b.value);
    [all...]
ProfileTreeGrammar.g3 56 stat: expr { string result = $expr.value.ToString();
57 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; }
63 expr returns [BigInteger value]
64 : ^('+' a=expr b=expr) { $value = $a.value.add($b.value); }
65 | ^('-' a=expr b=expr) { $value = $a.value.subtract($b.value);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
ReturnStmt.java 25 import com.github.javaparser.ast.expr.Expression;
26 import com.github.javaparser.ast.expr.NameExpr;
35 private Expression expr; field in class:ReturnStmt
40 public ReturnStmt(final Expression expr) {
41 setExpr(expr);
44 public ReturnStmt(Range range, final Expression expr) {
46 setExpr(expr);
52 * @param expr
54 public ReturnStmt(String expr) {
55 setExpr(new NameExpr(expr));
    [all...]
  /external/toybox/kconfig/
expr.h 39 struct expr *expr; member in union:expr_data
43 struct expr { struct
53 struct expr *expr; member in struct:expr_value
81 struct expr *dep, *dep2;
119 struct expr *expr; member in struct:property
140 struct expr *dep;
161 struct expr *expr_alloc_symbol(struct symbol *sym)
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
expr.c 29 #include "expr.h"
36 ExprResolveLhs(struct xkb_context *ctx, const ExprDef *expr,
40 switch (expr->expr.op) {
43 *field_rtrn = xkb_atom_text(ctx, expr->ident.ident);
47 *elem_rtrn = xkb_atom_text(ctx, expr->field_ref.element);
48 *field_rtrn = xkb_atom_text(ctx, expr->field_ref.field);
52 *elem_rtrn = xkb_atom_text(ctx, expr->array_ref.element);
53 *field_rtrn = xkb_atom_text(ctx, expr->array_ref.field);
54 *index_rtrn = expr->array_ref.entry
    [all...]
expr.h 31 ExprResolveLhs(struct xkb_context *ctx, const ExprDef *expr,
36 ExprResolveModMask(struct xkb_context *ctx, const ExprDef *expr,
46 ExprResolveBoolean(struct xkb_context *ctx, const ExprDef *expr,
50 ExprResolveKeyCode(struct xkb_context *ctx, const ExprDef *expr,
54 ExprResolveInteger(struct xkb_context *ctx, const ExprDef *expr,
58 ExprResolveLevel(struct xkb_context *ctx, const ExprDef *expr,
62 ExprResolveGroup(struct xkb_context *ctx, const ExprDef *expr,
66 ExprResolveButton(struct xkb_context *ctx, const ExprDef *expr,
70 ExprResolveString(struct xkb_context *ctx, const ExprDef *expr,
74 ExprResolveEnum(struct xkb_context *ctx, const ExprDef *expr,
    [all...]
  /external/clang/test/Sema/
i-c-e.c 9 int expr; variable
10 char w[__builtin_constant_p(expr) ? expr : 1];
24 expr // expected-error {{expression is not an integer constant expression}}
52 int expr; variable
53 char y[__builtin_constant_p(expr) ? -1 : 1];
63 char pbcp[__builtin_constant_p(4) ? (intptr_t)&expr : 0]; // expected-error {{variable length array declaration not allowed at file scope}}
73 int chooseexpr[__builtin_choose_expr(1, 1, expr)];
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * expr * expr option * exp
    [all...]
  /external/ltp/testcases/realtime/perf/latency/
cpunoise2000.sh 7 i=`expr $i + 1`
  /external/pdfium/third_party/base/
macros.h 29 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * expr * expr option * exp
    [all...]
  /art/tools/cpp-define-generator/
common.def 20 #define DEFINE_OFFSET_EXPR(holder_type, field_name, field_type, expr) \
21 DEFINE_EXPR(holder_type ## _ ## field_name ## _OFFSET, field_type, expr)
  /external/deqp/execserver/
xsDefs.cpp 31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
35 if (expr)
36 msg << '\'' << expr << '\''; local
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/deqp/executor/
xeDefs.cpp 31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
35 if (expr)
36 msg << '\'' << expr << '\''; local
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/javassist/src/main/javassist/compiler/ast/
InstanceOfExpr.java 24 public InstanceOfExpr(ASTList className, int dim, ASTree expr) {
25 super(className, dim, expr);
28 public InstanceOfExpr(int type, int dim, ASTree expr) {
29 super(type, dim, expr);
  /external/curl/include/curl/
typecheck-gcc.h 423 /* XXX: should evaluate to true iff expr is a pointer */
424 #define _curl_is_any_ptr(expr) \
425 (sizeof(expr) == sizeof(void *))
427 /* evaluates to true if expr is NULL */
428 /* XXX: must not evaluate expr, so this check is not accurate */
429 #define _curl_is_NULL(expr) \
430 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
432 /* evaluates to true if expr is type*, const type* or NULL */
433 #define _curl_is_ptr(expr, type) \
434 (_curl_is_NULL(expr) || \
    [all...]
  /external/clang/test/Analysis/
bitwise-ops.c 4 #define CHECK(expr) if (!(expr)) return; clang_analyzer_eval(expr)
  /external/clang/test/Parser/
builtin_types_compatible.c 9 #define func(expr) \
11 typeof(expr) tmp; \
12 if (__builtin_types_compatible_p(typeof(expr), int)) funcInt(tmp); \
13 else if (__builtin_types_compatible_p(typeof(expr), float)) funcFloat(tmp); \
14 else if (__builtin_types_compatible_p(typeof(expr), double)) funcDouble(tmp); \
16 #define func_choose(expr) \
17 __builtin_choose_expr(__builtin_types_compatible_p(typeof(expr), int), funcInt(expr), \
18 __builtin_choose_expr(__builtin_types_compatible_p(typeof(expr), float), funcFloat(expr), \
    [all...]
  /external/curl/tests/unit/
curlcheck.h 25 #define fail_if(expr, msg) \
26 if(expr) { \
28 __FILE__, __LINE__, #expr, msg); \
32 #define fail_unless(expr, msg) \
33 if(!(expr)) { \
35 __FILE__, __LINE__, #expr, msg); \
59 #define abort_if(expr, msg) \
60 if(expr) { \
62 __FILE__, __LINE__, #expr, msg); \
67 #define abort_unless(expr, msg)
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/expr/
InstanceOfExprTest.java 1 package com.github.javaparser.ast.expr;
11 InstanceOfExpr expr = JavaParser.parseExpression("s instanceof @A @DA String"); local
13 assertThat(expr.getType().getAnnotations()).containsExactly(new MarkerAnnotationExpr("A"), new MarkerAnnotationExpr("DA"));
  /external/javassist/src/main/javassist/compiler/
NoFieldException.java 22 private ASTree expr; field in class:NoFieldException
29 expr = e;
38 public ASTree getExpr() { return expr; }
  /external/vboot_reference/tests/
cgptlib_test.h 21 #define EXPECT(expr) \
23 if (!(expr)) { \
25 #expr, __FUNCTION__, __LINE__); \
  /external/google-breakpad/src/third_party/curl/
typecheck-gcc.h 308 /* XXX: should evaluate to true iff expr is a pointer */
309 #define _curl_is_any_ptr(expr) \
310 (sizeof(expr) == sizeof(void*))
312 /* evaluates to true if expr is NULL */
313 /* XXX: must not evaluate expr, so this check is not accurate */
314 #define _curl_is_NULL(expr) \
315 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
317 /* evaluates to true if expr is type*, const type* or NULL */
318 #define _curl_is_ptr(expr, type) \
319 (_curl_is_NULL(expr) || \
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/blueprint/tests/
test_ast.py 23 from blueprint import Bool, Concat, Dict, Expr, Integer, List, String, VarRef
27 # Expr
31 """Unit tests for the Expr class."""
34 """Test whether Expr.eval() raises NotImplementedError."""
37 Expr().eval({})
105 expr = Integer(0)
106 self.assertFalse(bool(expr))
107 self.assertEqual(0, int(expr))
108 self.assertEqual(0, int(expr.eval({})))
110 expr = Integer(1
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
CastExpr.java 22 package com.github.javaparser.ast.expr;
37 private Expression expr; field in class:CastExpr
42 public CastExpr(Type type, Expression expr) {
44 setExpr(expr);
47 public CastExpr(Range range, Type type, Expression expr) {
50 setExpr(expr);
64 return expr;
72 public CastExpr setExpr(Expression expr) {
73 this.expr = expr;
    [all...]

Completed in 694 milliseconds

12 3 4 5 6 7 8 91011>>