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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
compile_assert.h 36 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
43 #define COMPILE_ASSERT(expr, msg) \
44 typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
56 // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
67 // - By using the type CompileAssert<(bool(expr))>, we ensures that
68 // expr is a compile-time constant. (Template arguments must be
71 // - The outer parentheses in CompileAssert<(bool(expr))> are necessar
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
swigp4.ml 18 <:expr< $int:_$ >> -> <:expr< (C_int $e$) >>
19 | <:expr< $str:_$ >> -> <:expr< (C_string $e$) >>
20 | <:expr< $chr:_$ >> -> <:expr< (C_char $e$) >>
21 | <:expr< $flo:_$ >> -> <:expr< (C_double $e$) >>
22 | <:expr< True >> -> <:expr< (C_bool $e$) >
    [all...]
  /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_org/third_party/libjingle/source/talk/base/
compile_assert.h 54 #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) ? 1 : -1), instead of simpl
    [all...]
  /external/chromium_org/third_party/webrtc/base/
compile_assert.h 37 #define COMPILE_ASSERT(expr, msg) \
38 typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] // NOLINT
48 // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
59 // - By using the type CompileAssert<(bool(expr))>, we ensures that
60 // expr is a compile-time constant. (Template arguments must be
63 // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
66 // CompileAssert<bool(expr)>
75 // - The array size is (bool(expr) ? 1 : -1), instead of simpl
    [all...]
  /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]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
test_macros.h 26 #define TEST(expr) \
29 if (!(expr)) { \
30 PRINT_ERR_MSG("Assertion failed: " #expr "\n\n"); \
35 #define TEST_EXIT_ON_FAIL(expr) \
38 if (!(expr)) { \
39 PRINT_ERR_MSG("Assertion failed: " #expr "\nExiting...\n\n"); \
  /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...]
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorExpressionEvaluator.java 36 public void evaluate(CharSequence expr, EvaluateCallback callback) {
37 evaluate(expr.toString(), callback);
40 public void evaluate(String expr, EvaluateCallback callback) {
41 expr = mTokenizer.getNormalizedExpression(expr);
44 while (expr.length() > 0 && "+-/*".indexOf(expr.charAt(expr.length() - 1)) != -1) {
45 expr = expr.substring(0, expr.length() - 1)
    [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/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];});
  /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);
42 Expr* expr;
45 Expr** argv;
51 %type <expr> expr
54 %parse-param {Expr** root}
69 input: expr { *root = $1;
72 expr: STRING { label
    [all...]
  /external/valgrind/main/include/
pub_tool_libcassert.h 36 #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/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)

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>