Searched refs:UO_AddrOf (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/include/clang/AST/
H A DOperationKinds.h333 UO_AddrOf, UO_Deref, // [C99 6.5.3.2] Address and indirection enumerator in enum:clang::UnaryOperatorKind
H A DStmtVisitor.h87 case UO_AddrOf: DISPATCH(UnaryAddrOf, UnaryOperator);
H A DExprCXX.h2326 assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf);
H A DExpr.h1680 : Expr(UnaryOperatorClass, Empty), Opc(UO_AddrOf) { }
/external/clang/lib/Analysis/
H A DPseudoConstantAnalysis.cpp155 case UO_AddrOf: {
H A DThreadSafetyCommon.cpp242 case UO_AddrOf:
H A DConsumed.cpp911 case UO_AddrOf:
H A DThreadSafety.cpp395 if (UOE->getOpcode() == UO_AddrOf) {
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp107 if (UO->getOpcode() == UO_AddrOf) {
H A DSemaTemplate.cpp4354 if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) {
4368 if (FirstOpKind == UO_AddrOf)
4415 if (UnOp->getOpcode() == UO_AddrOf) {
4695 if (UnOp->getOpcode() == UO_AddrOf) {
5222 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
5259 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
H A DSemaChecking.cpp4114 if (UnaryOp->getOpcode() == UO_AddrOf)
4557 if (U->getOpcode() == UO_AddrOf)
5225 case UO_AddrOf: // should be impossible
6274 if (UO->getOpcode() != UO_AddrOf)
7219 case UO_AddrOf:
7946 if (UO->getOpcode() == UO_AddrOf || UO->getOpcode() == UO_Deref) {
H A DSemaExpr.cpp4563 if (UnOp->getOpcode() == UO_AddrOf)
8917 assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf);
9215 case tok::amp: Opc = UO_AddrOf; break;
9817 case UO_AddrOf:
9953 if (Opc != UO_AddrOf && Opc != UO_Deref)
10018 if (Opc == UO_AddrOf &&
10032 !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) {
11240 if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType())
H A DSemaOverload.cpp1488 == UO_AddrOf &&
1495 UO_AddrOf &&
12137 assert(UnOp->getOpcode() == UO_AddrOf &&
12165 return new (Context) UnaryOperator(SubExpr, UO_AddrOf, MemPtrType,
12175 return new (Context) UnaryOperator(SubExpr, UO_AddrOf,
/external/lldb/source/Expression/
H A DASTResultSynthesizer.cpp365 ExprResult address_of_expr = m_sema->CreateBuiltinUnaryOp(SourceLocation(), UO_AddrOf, last_expr);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp407 if (U->getOpcode() != UO_AddrOf)
/external/clang/lib/Parse/
H A DParseStmtAsm.cpp551 Actions.BuildUnaryOp(getCurScope(), AsmLoc, UO_AddrOf, OpExpr).get();
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp2523 Expr *Unop = new (Context) UnaryOperator(DRE, UO_AddrOf,
2731 SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf,
2749 SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf,
2830 SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf,
3072 Expr *DerefExpr = new (Context) UnaryOperator(DRE, UO_AddrOf,
4491 UO_AddrOf,
4511 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue,
4527 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue,
4566 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf,
4584 NewRep = new (Context) UnaryOperator(NewRep, UO_AddrOf,
[all...]
H A DRewriteModernObjC.cpp2624 Expr *Unop = new (Context) UnaryOperator(DRE, UO_AddrOf,
3354 SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf,
3372 SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf,
3453 SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf,
5441 UO_AddrOf,
5461 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue,
5477 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue,
5516 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf,
5542 NewRep = new (Context) UnaryOperator(NewRep, UO_AddrOf,
/external/clang/lib/AST/
H A DExpr.cpp1030 case UO_AddrOf: return "&";
1049 case OO_Amp: return UO_AddrOf;
1062 case UO_AddrOf: return OO_Amp;
1993 case UO_AddrOf:
H A DStmtProfile.cpp701 UnaryOp = UO_AddrOf;
H A DMicrosoftMangle.cpp1071 if (UO->getOpcode() == UO_AddrOf)
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp815 case UO_AddrOf:
/external/clang/lib/CodeGen/
H A DCGClass.cpp1061 if (!DUO || DUO->getOpcode() != UO_AddrOf)
1073 if (!SUO || SUO->getOpcode() != UO_AddrOf)
H A DCGCall.cpp2099 if (uop->getOpcode() == UO_AddrOf)
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc738 if (expr->getOpcode() == clang::UO_AddrOf) {

Completed in 1950 milliseconds

12