Searched refs:UO_Deref (Results 1 - 24 of 24) sorted by relevance
/external/clang/include/clang/AST/ |
H A D | OperationKinds.h | 333 UO_AddrOf, UO_Deref, // [C99 6.5.3.2] Address and indirection enumerator in enum:clang::UnaryOperatorKind
|
H A D | StmtVisitor.h | 88 case UO_Deref: DISPATCH(UnaryDeref, UnaryOperator);
|
/external/clang/lib/Sema/ |
H A D | SemaFixItUtils.cpp | 141 if (UO->getOpcode() == UO_Deref) {
|
H A D | SemaExprMember.cpp | 1377 if (UO->getOpcode() == UO_Deref)
|
H A D | SemaStmt.cpp | 1312 if (E->getOpcode() == UO_Deref) 2074 AdjustedRange = SemaRef.BuildUnaryOp(S, RangeLoc, UO_Deref, Range);
|
H A D | SemaTemplate.cpp | 4366 if (UnOpKind == UO_Deref) 4368 if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) { 4387 assert(FirstOpKind == UO_Deref);
|
H A D | SemaExpr.cpp | 527 if (UO->getOpcode() == UO_Deref && 9603 if (uOp->getOpcode() == UO_Deref) 9874 case tok::star: Opc = UO_Deref; break; 10511 case UO_Deref: { 10644 if (Opc != UO_AddrOf && Opc != UO_Deref)
|
H A D | SemaChecking.cpp | 5432 if (U->getOpcode() == UO_Deref) 5926 case UO_Deref: 8062 case UO_Deref: 9106 if (UO->getOpcode() == UO_AddrOf || UO->getOpcode() == UO_Deref) {
|
H A D | SemaDeclCXX.cpp | 9570 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get()); 10285 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10719 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 11195 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get();
|
H A D | SemaExprCXX.cpp | 5833 if (UO->getOpcode() == UO_Deref)
|
/external/clang/lib/Analysis/ |
H A D | BodyFarm.cpp | 126 return new (C) UnaryOperator(const_cast<Expr*>(Arg), UO_Deref, Ty,
|
H A D | ThreadSafetyCommon.cpp | 441 case UO_Deref:
|
H A D | ThreadSafety.cpp | 1610 if (UO->getOpcode() == clang::UO_Deref)
|
/external/clang/lib/AST/ |
H A D | ExprClassification.cpp | 217 case UO_Deref:
|
H A D | Expr.cpp | 1069 case UO_Deref: return "*"; 1088 case OO_Star: return UO_Deref; 1101 case UO_Deref: return OO_Star; 1173 if (UO->getOpcode() == UO_Deref) 2046 case UO_Deref:
|
H A D | StmtProfile.cpp | 818 UnaryOp = UO_Deref;
|
H A D | ExprConstant.cpp | 8814 case UO_Deref:
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineC.cpp | 814 case UO_Deref:
|
H A D | BugReporterVisitors.cpp | 58 if (U->getOpcode() == UO_Deref)
|
/external/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 2912 UnaryOperator DST(&DstExpr, UO_Deref, DestTy->getPointeeType(), 2917 UnaryOperator SRC(&SrcExpr, UO_Deref, SrcTy->getPointeeType(), 2991 UnaryOperator SRC(&SrcExpr, UO_Deref, SrcTy->getPointeeType(),
|
H A D | CGExprCXX.cpp | 1663 if (UO->getOpcode() == UO_Deref)
|
H A D | CGExpr.cpp | 2045 case UO_Deref: {
|
/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 4807 Expr *Exp = new (Context) UnaryOperator(DRE, UO_Deref, DRE->getType(), 7703 Expr *Exp = new (Context) UnaryOperator(castExpr, UO_Deref, IvarT,
|
H A D | RewriteObjC.cpp | 3902 Expr *Exp = new (Context) UnaryOperator(DRE, UO_Deref, DRE->getType(),
|
Completed in 385 milliseconds