Searched refs:LHSExpr (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
D | APValue.h | 106 const AddrLabelExpr* LHSExpr; member 162 APValue(const AddrLabelExpr* LHSExpr, const AddrLabelExpr* RHSExpr) in APValue() argument 164 MakeAddrLabelDiff(); setAddrLabelDiff(LHSExpr, RHSExpr); in APValue() 334 return ((const AddrLabelDiffData*)(const char*)Data)->LHSExpr; in getAddrLabelDiffLHS() 380 void setAddrLabelDiff(const AddrLabelExpr* LHSExpr, in setAddrLabelDiff() argument 382 ((AddrLabelDiffData*)(char*)Data)->LHSExpr = LHSExpr; in setAddrLabelDiff()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 4629 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, in DiagnoseConditionalForNull() argument 4631 Expr *NullExpr = LHSExpr; in DiagnoseConditionalForNull() 4639 NonPointerExpr = LHSExpr; in DiagnoseConditionalForNull() 4712 Expr *LHSExpr = LHS.get(); in checkConditionalVoidType() local 4715 if (!LHSExpr->getType()->isVoidType()) in checkConditionalVoidType() 4719 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) in checkConditionalVoidType() 4720 << LHSExpr->getSourceRange(); in checkConditionalVoidType() 5245 Expr *LHSExpr, in DiagnoseConditionalPrecedence() argument 5276 Expr *CondExpr, Expr *LHSExpr, in ActOnConditionalOp() argument 5282 if (LHSExpr == 0) { in ActOnConditionalOp() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 1164 const AddrLabelExpr *LHSExpr = Value.getAddrLabelDiffLHS(); in EmitConstantValue() local 1166 llvm::Constant *LHS = EmitConstantExpr(LHSExpr, LHSExpr->getType(), CGF); in EmitConstantValue()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3062 tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr); 3064 BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr); 3066 Expr *LHSExpr, Expr *RHSExpr); 3072 Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr); 3109 Expr *CondExpr, Expr *LHSExpr, 6663 Expr *LHSExpr, ExprResult &RHS, SourceLocation Loc, QualType CompoundType); 6695 bool DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 4652 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>(); in VisitBinOp() local 4654 if (!LHSExpr || !RHSExpr) in VisitBinOp() 4656 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinOp() 4912 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr*>(); in VisitBinaryOperator() local 4914 if (!LHSExpr || !RHSExpr) in VisitBinaryOperator() 4916 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinaryOperator()
|