Searched refs:expr (Results 1 - 25 of 824) sorted by relevance

1234567891011>>

/external/libsepol/src/
H A Dconstraint.c28 int constraint_expr_init(constraint_expr_t * expr) argument
30 memset(expr, 0, sizeof(*expr));
31 ebitmap_init(&expr->names);
32 if ((expr->type_names = malloc(sizeof(*expr->type_names))) == NULL) {
35 type_set_init(expr->type_names);
39 void constraint_expr_destroy(constraint_expr_t * expr) argument
41 if (expr != NULL) {
42 ebitmap_destroy(&expr
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dcompile_assert.h54 #define COMPILE_ASSERT(expr, msg) \
55 typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] // NOLINT
65 // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
76 // - By using the type CompileAssert<(bool(expr))>, we ensures that
77 // expr is a compile-time constant. (Template arguments must be
80 // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
83 // CompileAssert<bool(expr)>
92 // - The array size is (bool(expr)
[all...]
/external/chromium_org/tools/gyp/test/win/compiler-flags/
H A Ddefault-char-is-unsigned.cc9 #define COMPILE_ASSERT(expr, msg) \
10 typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
/external/chromium_org/rlz/lib/
H A Dassert.h18 #define ASSERT_STRING(expr) LOG_IF(FATAL, false) << (expr)
20 #define ASSERT_STRING(expr) \
22 std::string expr_string(expr); \
24 LOG_IF(FATAL, false) << (expr); \
33 #define VERIFY(expr) LOG_IF(FATAL, !(expr)) << #expr
35 #define VERIFY(expr) (void)(expr)
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammar.g353 stat: expr NEWLINE -> expr
54 | ID '=' expr NEWLINE -> ^('=' ID expr)
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
72 // START:expr
73 expr: multExpr (('+'^|'-'^) multExpr)*
82 | '(' expr ')' -> expr
[all...]
H A DProfileGrammar.g353 stat: expr NEWLINE -> expr
54 | ID '=' expr NEWLINE -> ^('=' ID expr)
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
72 // START:expr
73 expr: multExpr (('+'^|'-'^) multExpr)*
82 | '(' expr ')' -> expr
[all...]
H A DDebugTreeGrammar.g356 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) {
[all...]
H A DProfileTreeGrammar.g356 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) {
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dcompile_assert.h45 #define COMPILE_ASSERT(expr, msg) \
46 typedef CompileAssert<static_cast<bool>(expr)> \
47 msg[static_cast<bool>(expr) ? 1 : -1]
56 // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
67 // - By using the type CompileAssert<(static_cast<bool>(expr))>, we ensure that
68 // expr is a compile-time constant. (Template arguments must be
71 // - The array size is (static_cast<bool>(expr) ? 1 : -1), instead of simply
73 // ((expr) ? 1 : -1).
/external/chromium_org/sdch/open-vcdiff/src/
H A Dcompile_assert.h49 #define VCD_COMPILE_ASSERT(expr, msg) \
50 typedef open_vcdiff::CompileAssert<static_cast<bool>(expr)> \
51 msg[static_cast<bool>(expr) ? 1 : -1]
60 // #define VCD_COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
71 // - By using the type CompileAssert<(static_cast<bool>(expr))>, we ensure that
72 // expr is a compile-time constant. (Template arguments must be
75 // - The array size is (static_cast<bool>(expr) ? 1 : -1), instead of simply
77 // ((expr) ? 1 : -1).
/external/clang/test/Analysis/
H A Dbitwise-ops.c4 #define CHECK(expr) if (!(expr)) return; clang_analyzer_eval(expr)
/external/open-vcdiff/src/
H A Dcompile_assert.h49 #define VCD_COMPILE_ASSERT(expr, msg) \
50 typedef open_vcdiff::CompileAssert<static_cast<bool>(expr)> \
51 msg[static_cast<bool>(expr) ? 1 : -1]
60 // #define VCD_COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
71 // - By using the type CompileAssert<(static_cast<bool>(expr))>, we ensure that
72 // expr is a compile-time constant. (Template arguments must be
75 // - The array size is (static_cast<bool>(expr) ? 1 : -1), instead of simply
77 // ((expr) ? 1 : -1).
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_logging.h15 #define CHECK(expr)
17 #define DCHECK(expr)
/external/clang/test/Sema/
H A Dconst-eval-64.c4 #define EVAL_EXPR(testno, expr) int test##testno = sizeof(struct{char qq[expr];});
H A Di-c-e.c9 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/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_noise.cpp46 ir_expression *expr = (*rvalue)->as_expression();
47 if (!expr)
53 if (expr->operation == ir_unop_noise) {
54 *rvalue = ir_constant::zero(ralloc_parent(expr), expr->type);
/external/mesa3d/src/glsl/
H A Dlower_noise.cpp46 ir_expression *expr = (*rvalue)->as_expression();
47 if (!expr)
53 if (expr->operation == ir_unop_noise) {
54 *rvalue = ir_constant::zero(ralloc_parent(expr), expr->type);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml5 (* 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 * exp
[all...]
/external/chromium_org/tools/gyp/test/mac/framework-dirs/
H A Dcalculate.c6 int CalculatePerformExpression(char* expr,
/external/javassist/src/main/javassist/compiler/ast/
H A DInstanceOfExpr.java24 public InstanceOfExpr(ASTList className, int dim, ASTree expr) { argument
25 super(className, dim, expr);
28 public InstanceOfExpr(int type, int dim, ASTree expr) { argument
29 super(type, dim, expr);
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
H A Dutils.h37 #define assert(expr) ((void)((expr) ? true : __debugbreak()))
39 #define assert(expr) ((void)0)
/external/chromium_org/v8/test/webkit/fast/js/
H A DObject-getOwnPropertyNames.js101 for (var expr in expectedPropertyNamesSet)
102 shouldBe("getSortedOwnPropertyNames(" + expr + ")", expectedPropertyNamesSet[expr]);
/external/clang/test/Parser/
H A Dbuiltin_types_compatible.c9 #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/javassist/src/main/javassist/compiler/
H A DNoFieldException.java22 private ASTree expr; field in class:NoFieldException
29 expr = e;
38 public ASTree getExpr() { return expr; }
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-closures-with-eval.js31 function withEval(expr, filter) {
40 var o = eval(expr);
50 var expr = '([' + makeTagInfoJSON(128).join(', ') + '])'
53 withEval(expr, function(a) { return a; });
56 withEval(expr, function(a) { return a; });

Completed in 8216 milliseconds

1234567891011>>