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

12 3

  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vec.h 492 #define VEC_ASSERT(EXPR,OP,T,A) \
493 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0))
502 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR)
    [all...]
gimple.h 56 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
69 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
    [all...]
tree.h 987 /* Tests if CODE is a conversion expr (NOP_EXPR or CONVERT_EXPR). */
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
vec.h 492 #define VEC_ASSERT(EXPR,OP,T,A) \
493 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0))
502 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR)
    [all...]
gimple.h 56 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
69 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
    [all...]
tree.h 987 /* Tests if CODE is a conversion expr (NOP_EXPR or CONVERT_EXPR). */
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vec.h 492 #define VEC_ASSERT(EXPR,OP,T,A) \
493 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0))
502 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR)
    [all...]
gimple.h 56 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
69 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
    [all...]
tree.h 987 /* Tests if CODE is a conversion expr (NOP_EXPR or CONVERT_EXPR). */
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
auto-ast.rb 558 tokens {EXPR;}
573 tokens {EXPR;}
  /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...]
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...]
  /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,
52 Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
90 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E)
    [all...]
ItaniumMangle.cpp 336 void mangleMemberExpr(const Expr *base, bool isArrow,
341 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
    [all...]
Expr.cpp 1 //===--- Expr.cpp - Expression AST Node Implementation --------------------===//
10 // This file implements the Expr class and subclasses.
14 #include "clang/AST/Expr.h"
40 bool Expr::isKnownToHaveBooleanValue() const {
41 const Expr *E = IgnoreParens();
103 SourceLocation getExprLocImpl(const Expr *expr,
105 return static_cast<const E*>(expr)->getExprLoc();
113 SourceLocation getExprLocImpl(const Expr *expr,
    [all...]
ExprConstant.cpp 10 // This file implements the Expr constant evaluator.
43 #include "clang/AST/Expr.h"
65 return B.get<const Expr*>()->getType();
201 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
241 void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E, uint64_t N);
243 void adjustIndex(EvalInfo &Info, const Expr *E, uint64_t N) {
253 // [expr.add]p4: For the purposes of these operators, a pointer to a
290 typedef llvm::DenseMap<const Expr*, APValue> MapTy;
353 Expr::EvalStatus &EvalStatus;
390 EvalInfo(const ASTContext &C, Expr::EvalStatus &S
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 16 #include "clang/AST/Expr.h"
717 bool Sema::CheckExceptionSpecCompatibility(Expr *From, QualType ToType)
766 static CanThrowResult canSubExprsThrow(Sema &S, const Expr *CE) {
767 Expr *E = const_cast<Expr*>(CE);
769 for (Expr::child_range I = E->children(); I && R != CT_Can; ++I)
770 R = mergeCanThrow(R, S.canThrow(cast<Expr>(*I)));
774 static CanThrowResult canCalleeThrow(Sema &S, const Expr *E,
    [all...]
TreeTransform.h 25 #include "clang/AST/Expr.h"
132 static inline ExprResult Owned(Expr *E) { return E; }
207 bool DropCallArgument(Expr *E) {
327 ExprResult TransformExpr(Expr *E);
352 bool TransformExprs(Expr **Inputs, unsigned NumInputs, bool IsCall,
353 SmallVectorImpl<Expr *> &Outputs,
579 #define EXPR(Node, Parent) \
626 Expr *SizeExpr,
658 Expr *SizeExpr,
669 Expr *SizeExpr
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.h     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
cp-tree.h     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.h     [all...]
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree.h 975 /* Tests if CODE is a conversion expr (NOP_EXPR or CONVERT_EXPR). */
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 92 #define EXPR(Type, Base) \
100 EmitIgnoredExpr(cast<Expr>(S));
220 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggSlot);
744 const Expr *RV = S.getRetValue();
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 

Completed in 1616 milliseconds

12 3