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

12 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 682 /* Use gcc_assert(EXPR) to test invariants. */
684 #define gcc_assert(EXPR) \
685 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
687 #define gcc_assert(EXPR) \
688 ((void)(__builtin_expect(!(EXPR), 0) ? __builtin_unreachable(), 0 : 0))
690 /* Include EXPR, so that unused variable warnings do not occur. */
691 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
695 #define gcc_checking_assert(EXPR) gcc_assert (EXPR)
    [all...]
line-map.h 569 #define linemap_assert(EXPR) \
571 if (! (EXPR)) \
581 #define linemap_assert(EXPR)
c-tree.h 109 #define CONSTRUCTOR_NON_CONST(EXPR) TREE_LANG_FLAG_1 (CONSTRUCTOR_CHECK (EXPR))
188 tree expr; member in struct:c_typespec
266 tree expr; member in struct:c_declspecs
  /external/libnl/lib/fib_lookup/
request.c 63 #define REQ_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, REQUEST_ATTR_##ATTR, a, b, EXPR)
  /external/libnl/lib/netfilter/
queue_obj.c 171 #define NFNL_QUEUE_DIFF(ATTR, EXPR) \
172 ATTR_DIFF(attrs, QUEUE_ATTR_##ATTR, a, b, EXPR)
log_obj.c 239 #define NFNL_LOG_DIFF(ATTR, EXPR) \
240 ATTR_DIFF(attrs, LOG_ATTR_##ATTR, a, b, EXPR)
ct_obj.c 280 #define CT_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, CT_ATTR_##ATTR, a, b, EXPR)
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
construction.rb 18 EXPR;
82 : expression -> ^(EXPR expression)
83 | -> EXPR
96 -> ^(EXPR expression? statement* type+)
200 ( 'else' s2=statement -> ^('if' ^(EXPR expression) $s1 $s2)
201 | -> ^('if' ^(EXPR expression) $s1)
422 ast_test :input => "1+2", :rule => :r11, :ast => "(EXPR (+ 1 2))"
424 ast_test :input => "", :rule => :r11, :ast => "EXPR"
434 ast_test :input => "1+2 int", :rule => :r14, :ast => "(EXPR (+ 1 2) int)"
436 ast_test :input => "1+2 int bool", :rule => :r14, :ast => "(EXPR (+ 1 2) int bool)
    [all...]
rewrites.rb 1026 example "arbitrary expr type" do
1136 tokens {EXPR;}
1137 decl : type ID '=' INT ';' -> ^(EXPR type ID INT) ;
1145 result.should == '(EXPR int x 1)'
1153 tokens {EXPR;}
1154 decl : type ID '=' INT ';' -> ^(EXPR type ID INT) ;
1162 result.should == '(EXPR int <missing ID> 1)'
1170 tokens {EXPR;}
1171 decl : type ID '=' INT ';' -> ^(EXPR type ID INT) ;
1179 result.should == '(EXPR <error: x> x 1)
    [all...]
auto-ast.rb 558 tokens {EXPR;}
573 tokens {EXPR;}
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 64 static inline T checkGLX(T value, const char* expr, const char* file, int line)
67 throw tcu::TestError("GLX call failed", expr, file, line);
71 #define TCU_CHECK_GLX(EXPR) checkGLX(EXPR, #EXPR, __FILE__, __LINE__)
72 #define TCU_CHECK_GLX_CONFIG(EXPR) checkGLX((EXPR) == Success, #EXPR, __FILE__, __LINE__)
  /external/avahi/avahi-compat-howl/include/salt/
platform.h 429 #define SW_TRY(EXPR) { sw_result result; if ((result = EXPR) != SW_OKAY) return result; } ((void) 0)
430 #define SW_TRY_GOTO(EXPR) { if ((result = EXPR) != SW_OKAY) goto exit; } ((void) 0)
  /external/deqp/framework/platform/android/
tcuAndroidExecService.cpp 57 #define JNI_CHECK(EXPR) do { checkJniException(env, __FILE__, __LINE__); TCU_CHECK_INTERNAL(EXPR); } while (deGetFalse())
  /external/libnl/lib/genl/
family.c 135 #define FAM_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, FAMILY_ATTR_##ATTR, a, b, EXPR)
  /external/libnl/lib/route/
nexthop.c 88 #define NH_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, NH_ATTR_##ATTR, a, b, EXPR)
tc.c 252 #define TC_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, TCA_ATTR_##ATTR, a, b, EXPR)
neigh.c 206 #define NEIGH_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, NEIGH_ATTR_##ATTR, a, b, EXPR)
neightbl.c 64 #define NT_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, NEIGHTBL_ATTR_##ATTR, a, b, EXPR)
rule.c 284 #define RULE_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, RULE_ATTR_##ATTR, a, b, EXPR)
addr.c 485 #define ADDR_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, ADDR_ATTR_##ATTR, a, b, EXPR)
  /external/mesa3d/src/glsl/
s_expression.cpp 60 s_expression *expr = NULL; local
72 expr = new(ctx) s_float(std::numeric_limits<float>::infinity());
82 expr = new(ctx) s_float(f);
84 expr = new(ctx) s_int(i);
88 expr = new(ctx) s_symbol(symbol_buffer, n);
95 return expr;
111 s_expression *expr; local
113 while ((expr = __read_expression(ctx, src, symbol_buffer)) != NULL) {
114 list->subexpressions.push_tail(expr);
166 s_expression *expr = (s_expression*) it.get() local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/c-family/
c-common.h 849 #define EXPR_INT_CONST_OPERANDS(EXPR) \
850 (INTEGRAL_TYPE_P (TREE_TYPE (EXPR)) \
851 && (TREE_CODE (EXPR) == INTEGER_CST \
852 || (TREE_CODE (EXPR) == C_MAYBE_CONST_EXPR \
853 && C_MAYBE_CONST_EXPR_INT_OPERANDS (EXPR))))
    [all...]
  /external/javassist/src/main/javassist/compiler/
Parser.java 77 ASTree expr = null; local
80 expr = parseExpression(tbl);
85 return new FieldDecl(mods, new ASTList(d, new ASTList(expr)));
305 ASTree expr = parseParExpression(tbl); local
315 return new Stmnt(t, expr, new ASTList(thenp, new ASTList(elsep)));
324 ASTree expr = parseParExpression(tbl); local
326 return new Stmnt(t, expr, body);
337 ASTree expr = parseExpression(tbl); local
341 return new Stmnt(t, expr, body);
344 /* for.statement : FOR "(" decl.or.expr expression ";" expression ")
394 ASTree expr = parseParExpression(tbl); local
457 ASTree expr = parseExpression(tbl); local
518 ASTree expr = parseExpression(tbl); local
586 Stmnt expr; local
601 Stmnt expr = null; local
667 ASTree expr = parseExpression(tbl); local
687 ASTree expr = parseExpression(tbl); local
774 ASTree expr = parseUnaryExpr(tbl); local
1029 ASTree expr = parsePrimaryExpr(tbl); local
1196 Expr expr = (Expr)name; local
1222 ASTree expr; local
    [all...]
  /external/clang/lib/AST/
ExprClassification.cpp 10 // This file implements Expr::classify.
14 #include "clang/AST/Expr.h"
24 typedef Expr::Classification Cl;
26 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E);
32 const Expr *trueExpr,
33 const Expr *falseExpr);
34 static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
37 Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
89 const Expr *E,
102 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E)
    [all...]
  /external/opencv3/modules/core/src/
matrix.cpp 1136 if( k == EXPR )
    [all...]

Completed in 1312 milliseconds

12 3 4