| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.h | 248 check::PostStmt<ObjCBoxedExpr>, 301 void checkPostStmt(const ObjCBoxedExpr *BE, CheckerContext &C) const;
|
| H A D | RetainCountDiagnostics.cpp | 399 } else if (const ObjCBoxedExpr *BL = dyn_cast<ObjCBoxedExpr>(S)) { in VisitNode()
|
| H A D | RetainCountChecker.cpp | 326 void RetainCountChecker::checkPostStmt(const ObjCBoxedExpr *Ex, in checkPostStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | TextNodeDumper.h | 264 void VisitObjCBoxedExpr(const ObjCBoxedExpr *Node);
|
| H A D | ExprObjC.h | 117 class ObjCBoxedExpr : public Expr { 125 ObjCBoxedExpr(Expr *E, QualType T, ObjCMethodDecl *method, in ObjCBoxedExpr() function 132 explicit ObjCBoxedExpr(EmptyShell Empty) in ObjCBoxedExpr() function
|
| H A D | RecursiveASTVisitor.h | 2616 DEF_TRAVERSE_STMT(ObjCBoxedExpr, {})
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | BasicObjCFoundationChecks.cpp | 1145 check::PostStmt<ObjCBoxedExpr> > { 1167 void checkPostStmt(const ObjCBoxedExpr *E, CheckerContext &C) const { in checkPostStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 163 def ObjCBoxedExpr : DStmt<Expr>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Index/ |
| H A D | IndexBody.cpp | 336 bool VisitObjCBoxedExpr(ObjCBoxedExpr *E) { in VisitObjCBoxedExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 361 new (Context) ObjCBoxedExpr(Number, NSNumberPointer, Method, in BuildObjCNumericLiteral() 500 ObjCBoxedExpr *BoxedExpr = in BuildObjCBoxedExpr() 501 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR); in BuildObjCBoxedExpr() 733 ObjCBoxedExpr *BoxedExpr = in BuildObjCBoxedExpr() 734 new (Context) ObjCBoxedExpr(ValueExpr, BoxedType, in BuildObjCBoxedExpr()
|
| H A D | SemaExprCXX.cpp | 6394 } else if (ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(E)) { in MaybeBindToTemporary()
|
| H A D | SemaChecking.cpp | 10889 isa<ObjCDictionaryLiteral>(E) || isa<ObjCBoxedExpr>(E)) { in CheckImplicitConversion() 11609 else if (isa<ObjCBoxedExpr>(OriginalE)) in CheckForIntOverflow()
|
| H A D | TreeTransform.h | 11786 TreeTransform<Derived>::TransformObjCBoxedExpr(ObjCBoxedExpr *E) { in TransformObjCBoxedExpr()
|
| H A D | SemaExpr.cpp | 9823 Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens(); in CheckLiteralKind()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | TextNodeDumper.cpp | 931 void TextNodeDumper::VisitObjCBoxedExpr(const ObjCBoxedExpr *Node) { in VisitObjCBoxedExpr()
|
| H A D | StmtProfile.cpp | 1879 void StmtProfiler::VisitObjCBoxedExpr(const ObjCBoxedExpr *E) { in VisitObjCBoxedExpr()
|
| H A D | StmtPrinter.cpp | 2228 void StmtPrinter::VisitObjCBoxedExpr(ObjCBoxedExpr *E) { in VisitObjCBoxedExpr()
|
| H A D | ExprConstant.cpp | 5785 bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) { in VisitObjCBoxedExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngine.cpp | 1423 if (!(isa<ObjCBoxedExpr>(Ex) && in Visit() 1424 !cast<ObjCBoxedExpr>(Ex)->getSubExpr() in Visit()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 356 Stmt *RewriteObjCBoxedExpr(ObjCBoxedExpr *Exp); 2614 Stmt *RewriteModernObjC::RewriteObjCBoxedExpr(ObjCBoxedExpr *Exp) { in RewriteObjCBoxedExpr() 5512 if (ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1078 void ASTStmtReader::VisitObjCBoxedExpr(ObjCBoxedExpr *E) { in VisitObjCBoxedExpr() 2687 S = new (Context) ObjCBoxedExpr(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1026 void ASTStmtWriter::VisitObjCBoxedExpr(ObjCBoxedExpr *E) { in VisitObjCBoxedExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 60 CodeGenFunction::EmitObjCBoxedExpr(const ObjCBoxedExpr *E) { in EmitObjCBoxedExpr()
|
| H A D | CodeGenFunction.h | 3769 llvm::Value *EmitObjCBoxedExpr(const ObjCBoxedExpr *E);
|
| H A D | CGExprScalar.cpp | 793 Value *VisitObjCBoxedExpr(ObjCBoxedExpr *E) { in VisitObjCBoxedExpr()
|