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

1 2 3 4 5 6 7 8 91011>>

  /external/libsepol/src/
constraint.c 28 int constraint_expr_init(constraint_expr_t * expr)
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)
41 if (expr != NULL) {
42 ebitmap_destroy(&expr->names)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/control/
expr_iif.hpp 20 # define BOOST_PP_EXPR_IIF(bit, expr) BOOST_PP_EXPR_IIF_I(bit, expr)
22 # define BOOST_PP_EXPR_IIF(bit, expr) BOOST_PP_EXPR_IIF_OO((bit, expr))
26 # define BOOST_PP_EXPR_IIF_I(bit, expr) BOOST_PP_EXPR_IIF_ ## bit(expr)
28 # define BOOST_PP_EXPR_IIF_0(expr)
29 # define BOOST_PP_EXPR_IIF_1(expr) expr
  /external/chromium/sdch/open-vcdiff/src/
compile_assert.h 45 #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/tools/gyp/test/win/compiler-flags/
default-char-is-unsigned.cc 9 #define COMPILE_ASSERT(expr, msg) \
10 typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
  /system/core/sh/
arith.y 76 exp: expr {
82 expr: ARITH_LPAREN expr ARITH_RPAREN { $$ = $2; } label
83 | expr ARITH_OR expr { $$ = $1 ? $1 : $3 ? $3 : 0; }
84 | expr ARITH_AND expr { $$ = $1 ? ( $3 ? $3 : 0 ) : 0; }
85 | expr ARITH_BOR expr { $$ = $1 | $3; }
86 | expr ARITH_BXOR expr { $$ = $1 ^ $3;
    [all...]
  /external/chromium_org/rlz/lib/
assert.h 18 #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/
DebugGrammar.g3 53 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...]
ProfileGrammar.g3 53 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...]
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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
assert.hpp 2 // boost/assert.hpp - BOOST_ASSERT(expr)
3 // BOOST_ASSERT_MSG(expr, msg)
4 // BOOST_VERIFY(expr)
33 # define BOOST_ASSERT(expr) ((void)0)
41 void assertion_failed(char const * expr,
45 #define BOOST_ASSERT(expr) ((expr) \
47 : ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__))
51 # define BOOST_ASSERT(expr) assert(expr)
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
compile_assert.h 49 #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/
bitwise-ops.c 4 #define CHECK(expr) if (!(expr)) return; clang_analyzer_eval(expr)
  /external/open-vcdiff/src/
compile_assert.h 49 #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/
cld_logging.h 15 #define CHECK(expr)
17 #define DCHECK(expr)
  /external/clang/test/Sema/
const-eval-64.c 4 #define EVAL_EXPR(testno, expr) int test##testno = sizeof(struct{char qq[expr];});
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)];
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
static_cast.hpp 22 # define BOOST_MPL_AUX_STATIC_CAST(T, expr) (T)(expr)
24 # define BOOST_MPL_AUX_STATIC_CAST(T, expr) static_cast<T>(expr)
  /bootable/recovery/edify/
parser.y 22 #include "expr.h"
29 void yyerror(Expr** root, int* error_count, const char* s);
30 int yyparse(Expr** root, int* error_count);
38 Expr* expr;
41 Expr** argv;
47 %type <expr> expr
50 %parse-param {Expr** root}
65 input: expr { *root = $1;
68 expr: STRING { label
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_noise.cpp 46 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/
lower_noise.cpp 46 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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 15 atom < '`' expr=any '`' >
19 expr = results["expr"].clone()
21 if expr.type == self.syms.testlist1:
22 expr = parenthesize(expr)
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 15 atom < '`' expr=any '`' >
19 expr = results["expr"].clone()
21 if expr.type == self.syms.testlist1:
22 expr = parenthesize(expr)
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MediaQueryResult.h 34 MediaQueryResult(const MediaQueryExp& expr, bool result)
35 : m_expression(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...]

Completed in 1211 milliseconds

1 2 3 4 5 6 7 8 91011>>