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

1 2

  /frameworks/compile/linkloader/utils/
rsl_assert.h 26 char const *expr);
34 #define rsl_assert(EXPR) \
39 #define rsl_assert(EXPR) \
41 if (!(EXPR)) { \
42 ASSERT_FAILED(__FILE__, __LINE__, #EXPR); \
  /external/libnl-headers/netlink/
object-api.h 155 * #define MY_DIFF(ATTR, EXPR) ATTR_DIFF(attrs, MY_ATTR_##ATTR, a, b, EXPR)
219 * @arg EXPR Comparison expression
229 #define ATTR_MISMATCH(A, B, ATTR, EXPR) (AVAILABLE_MISMATCH(A, B, ATTR) || \
230 (AVAILABLE(A, B, ATTR) && (EXPR)))
238 * @arg EXPR Comparison expression
253 #define ATTR_DIFF(LIST, ATTR, A, B, EXPR) \
255 if (((LIST) & (ATTR)) && ATTR_MISMATCH(A, B, ATTR, EXPR)) \
  /external/llvm/include/llvm/Support/
Compiler.h 65 #define BUILTIN_EXPECT(EXPR, VALUE) __builtin_expect((EXPR), (VALUE))
67 #define BUILTIN_EXPECT(EXPR, VALUE) (EXPR)
  /external/mesa3d/src/pixelflinger2/
pixelflinger2.h 44 #define assert(EXPR) { do { if (!(EXPR)) {LOGD("\n*\n*\n*\n* assert fail: '"#EXPR"' at "__location__"\n*\n*\n*"); exit(EXIT_FAILURE); } } while (false); }
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
ggc.h 97 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
99 #define ggc_test_and_set_mark(EXPR) \
100 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
102 #define ggc_mark(EXPR) \
104 const void *const a__ = (EXPR); \
system.h 574 /* Use gcc_assert(EXPR) to test invariants. */
576 #define gcc_assert(EXPR) \
577 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
579 /* Include EXPR, so that unused variable warnings do not occur. */
580 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
vec.h 444 #define VEC_ASSERT(EXPR,OP,T,A) \
445 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0))
454 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR)
    [all...]
tree.h 967 /* Tests if CODE is a conversion expr (NOP_EXPR or CONVERT_EXPR). */
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
ggc.h 97 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
99 #define ggc_test_and_set_mark(EXPR) \
100 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
102 #define ggc_mark(EXPR) \
104 const void *const a__ = (EXPR); \
system.h 574 /* Use gcc_assert(EXPR) to test invariants. */
576 #define gcc_assert(EXPR) \
577 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
579 /* Include EXPR, so that unused variable warnings do not occur. */
580 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
vec.h 444 #define VEC_ASSERT(EXPR,OP,T,A) \
445 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0))
454 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR)
    [all...]
tree.h 975 /* Tests if CODE is a conversion expr (NOP_EXPR or CONVERT_EXPR). */
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
ggc.h 97 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
99 #define ggc_test_and_set_mark(EXPR) \
100 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
102 #define ggc_mark(EXPR) \
104 const void *const a__ = (EXPR); \
system.h 574 /* Use gcc_assert(EXPR) to test invariants. */
576 #define gcc_assert(EXPR) \
577 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
579 /* Include EXPR, so that unused variable warnings do not occur. */
580 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
vec.h 444 #define VEC_ASSERT(EXPR,OP,T,A) \
445 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0))
454 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR)
    [all...]
tree.h 975 /* Tests if CODE is a conversion expr (NOP_EXPR or CONVERT_EXPR). */
    [all...]
  /external/javassist/src/main/javassist/compiler/
TokenId.java 118 int EXPR = 'E'; // expression statement
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...]
CodeGen.java 227 public void compileExpr(ASTree expr) throws CompileError {
228 doTypeCheck(expr);
229 expr.accept(this);
232 public boolean compileBooleanExpr(boolean branchIf, ASTree expr)
235 doTypeCheck(expr);
236 return booleanExpr(branchIf, expr);
239 public void doTypeCheck(ASTree expr) throws CompileError {
241 expr.accept(typeChecker);
305 if (body != null && body.getOperator() == EXPR) {
306 ASTree expr = body.head() local
328 ASTree expr = st.getLeft(); local
380 ASTree expr = st.head(); local
418 ASTree expr = st.head(); local
462 ASTree expr = p.head(); local
    [all...]
  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 297 #define SET(TYPE, EXPR) \
298 if (repeated) reflection->Add##TYPE(instance, field, EXPR); \
299 else reflection->Set##TYPE(instance, field, EXPR)
  /external/clang/lib/AST/
ExprClassification.cpp 10 // This file implements Expr::classify.
15 #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,
38 const Expr *E,
53 Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
91 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E)
    [all...]
ItaniumMangle.cpp 304 void mangleMemberExpr(const Expr *base, bool isArrow,
309 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
    [all...]
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /external/clang/lib/CodeGen/
CGStmt.cpp 90 #define EXPR(Type, Base) \
98 EmitIgnoredExpr(cast<Expr>(S));
223 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggSlot);
743 const Expr *RV = S.getRetValue();
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h 25 #include "clang/AST/Expr.h"
127 static inline ExprResult Owned(Expr *E) { return E; }
202 bool DropCallArgument(Expr *E) {
322 ExprResult TransformExpr(Expr *E);
347 bool TransformExprs(Expr **Inputs, unsigned NumInputs, bool IsCall,
348 SmallVectorImpl<Expr *> &Outputs,
542 #define EXPR(Node, Parent) \
589 Expr *SizeExpr,
621 Expr *SizeExpr,
632 Expr *SizeExpr
    [all...]

Completed in 1772 milliseconds

1 2