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

1234567891011>>

/external/parameter-framework/asio/include/asio/detail/
H A Dassert.hpp19 # define ASIO_ASSERT(expr) assert(expr)
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dassert.hpp19 # define ASIO_ASSERT(expr) assert(expr)
/external/selinux/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/pdfium/third_party/base/
H A Dmacros.h29 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
/external/compiler-rt/lib/builtins/
H A Dint_util.h28 #define COMPILE_TIME_ASSERT(expr) COMPILE_TIME_ASSERT1(expr, __COUNTER__)
29 #define COMPILE_TIME_ASSERT1(expr, cnt) COMPILE_TIME_ASSERT2(expr, cnt)
30 #define COMPILE_TIME_ASSERT2(expr, cnt) \
31 typedef char ct_assert_##cnt[(expr) ? 1 : -1] UNUSED
/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/clang/test/Sema/
H A Dconst-eval-64.c4 #define EVAL_EXPR(testno, expr) int test##testno = sizeof(struct{char qq[expr];});
H A Dwarn-string-conversion.c6 #define assert1(expr) \
7 if (expr) \
12 #define assert2(expr) \
13 ((expr) ? do_nothing() : assert_error())
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/sfntly/cpp/src/sfntly/port/
H A Dlogging.h25 #define CHECK(expr) \
26 if (!(expr)) { \
/external/valgrind/include/
H A Dpub_tool_libcassert.h36 #define tl_assert(expr) \
37 ((void) (LIKELY(expr) ? 0 : \
38 (VG_(assert_fail) (/*isCore?*/False, #expr, \
44 #define tl_assert2(expr, format, args...) \
45 ((void) (LIKELY(expr) ? 0 : \
46 (VG_(assert_fail) (/*isCore?*/False, #expr, \
60 extern void VG_(assert_fail) ( Bool isCore, const HChar* expr, const HChar* file,
/external/mesa3d/src/compiler/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/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_repr.py15 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/toybox/kconfig/
H A Dexpr.h39 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_symbo
[all...]
/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/ltp/testcases/realtime/perf/latency/
H A Dcpunoise2000.sh7 i=`expr $i + 1`
/external/swiftshader/third_party/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/deqp/execserver/
H A DxsDefs.cpp31 static std::string formatError (const char* message, const char* expr, const char* file, int line) argument
35 if (expr)
36 msg << '\'' << expr << '\''; local
41 Error::Error (const char* message, const char* expr, const char* file, int line) argument
42 : std::runtime_error(formatError(message, expr, file, line))
/external/deqp/executor/
H A DxeDefs.cpp31 static std::string formatError (const char* message, const char* expr, const char* file, int line) argument
35 if (expr)
36 msg << '\'' << expr << '\''; local
41 Error::Error (const char* message, const char* expr, const char* file, int line) argument
42 : std::runtime_error(formatError(message, expr, file, line))
/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/clang/test/Analysis/
H A Dbitwise-ops.c4 #define CHECK(expr) if (!(expr)) return; clang_analyzer_eval(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...]

Completed in 697 milliseconds

1234567891011>>