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 | 4767 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, in DiagnoseConditionalForNull() argument 4769 Expr *NullExpr = LHSExpr; in DiagnoseConditionalForNull() 4777 NonPointerExpr = LHSExpr; in DiagnoseConditionalForNull() 4850 Expr *LHSExpr = LHS.get(); in checkConditionalVoidType() local 4853 if (!LHSExpr->getType()->isVoidType()) in checkConditionalVoidType() 4857 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) in checkConditionalVoidType() 4858 << LHSExpr->getSourceRange(); in checkConditionalVoidType() 5383 Expr *LHSExpr, in DiagnoseConditionalPrecedence() argument 5414 Expr *CondExpr, Expr *LHSExpr, in ActOnConditionalOp() argument 5420 if (LHSExpr == 0) { in ActOnConditionalOp() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 1177 const AddrLabelExpr *LHSExpr = Value.getAddrLabelDiffLHS(); in EmitConstantValue() local 1179 llvm::Constant *LHS = EmitConstantExpr(LHSExpr, LHSExpr->getType(), CGF); in EmitConstantValue()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3255 tok::TokenKind Kind, Expr *LHSExpr, Expr *RHSExpr); 3257 BinaryOperatorKind Opc, Expr *LHSExpr, Expr *RHSExpr); 3259 Expr *LHSExpr, Expr *RHSExpr); 3265 Expr *CondExpr, Expr *LHSExpr, Expr *RHSExpr); 3302 Expr *CondExpr, Expr *LHSExpr, 6869 Expr *LHSExpr, ExprResult &RHS, SourceLocation Loc, QualType CompoundType); 6901 bool DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 4670 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>(); in VisitBinOp() local 4672 if (!LHSExpr || !RHSExpr) in VisitBinOp() 4674 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinOp() 4940 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr*>(); in VisitBinaryOperator() local 4942 if (!LHSExpr || !RHSExpr) in VisitBinaryOperator() 4944 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); in VisitBinaryOperator()
|