| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | annotate-tokens.m | 460 // CHECK: Punctuation: "@" [88:9 - 88:10] ObjCProtocolExpr=Proto:85:1 461 // CHECK: Keyword: "protocol" [88:10 - 88:18] ObjCProtocolExpr=Proto:85:1 462 // CHECK: Punctuation: "(" [88:18 - 88:19] ObjCProtocolExpr=Proto:85:1 463 // CHECK: Identifier: "Proto" [88:19 - 88:24] ObjCProtocolExpr=Proto:85:1 464 // CHECK: Punctuation: ")" [88:24 - 88:25] ObjCProtocolExpr=Proto:85:1
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaFixItUtils.cpp | 83 isa<ObjCProtocolExpr>(Expr) || in tryToFixConversion()
|
| H A D | SemaExprObjC.cpp | 1411 return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, ProtoIdLoc, RParenLoc); in ParseObjCProtocolExpression()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ExprObjC.h | 504 class ObjCProtocolExpr : public Expr { 512 ObjCProtocolExpr(QualType T, ObjCProtocolDecl *protocol, SourceLocation at, in ObjCProtocolExpr() function 518 explicit ObjCProtocolExpr(EmptyShell Empty) in ObjCProtocolExpr() function
|
| H A D | TextNodeDumper.h | 296 void VisitObjCProtocolExpr(const ObjCProtocolExpr *Node);
|
| H A D | JSONNodeDumper.h | 301 void VisitObjCProtocolExpr(const ObjCProtocolExpr *OPE);
|
| H A D | RecursiveASTVisitor.h | 2786 DEF_TRAVERSE_STMT(ObjCProtocolExpr, {})
|
| /llvm-project-15.0.7/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 903 isa<ObjCProtocolExpr>(Expr) || in subscriptOperatorNeedsParens() 930 isa<ObjCProtocolExpr>(Expr) || in castOperatorNeedsParens()
|
| /llvm-project-15.0.7/clang/lib/Index/ |
| H A D | IndexBody.cpp | 322 bool VisitObjCProtocolExpr(ObjCProtocolExpr *E) { in VisitObjCProtocolExpr()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 182 def ObjCProtocolExpr : StmtNode<Expr>;
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | FindTarget.cpp | 332 void VisitObjCProtocolExpr(const ObjCProtocolExpr *OPE) { in add()
|
| /llvm-project-15.0.7/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 300 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp); 3037 Stmt *RewriteObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) { in RewriteObjCProtocolExpr() 4661 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| H A D | RewriteModernObjC.cpp | 359 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp); 3583 Stmt *RewriteModernObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) { in RewriteObjCProtocolExpr() 5556 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | JSONNodeDumper.cpp | 1158 void JSONNodeDumper::VisitObjCProtocolExpr(const ObjCProtocolExpr *OPE) { in VisitObjCProtocolExpr()
|
| H A D | TextNodeDumper.cpp | 1341 void TextNodeDumper::VisitObjCProtocolExpr(const ObjCProtocolExpr *Node) { in VisitObjCProtocolExpr()
|
| H A D | StmtProfile.cpp | 2244 void StmtProfiler::VisitObjCProtocolExpr(const ObjCProtocolExpr *S) { in VisitObjCProtocolExpr()
|
| H A D | StmtPrinter.cpp | 2605 void StmtPrinter::VisitObjCProtocolExpr(ObjCProtocolExpr *Node) { in VisitObjCProtocolExpr()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1458 void ASTStmtReader::VisitObjCProtocolExpr(ObjCProtocolExpr *E) { in VisitObjCProtocolExpr() 3126 S = new (Context) ObjCProtocolExpr(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1343 void ASTStmtWriter::VisitObjCProtocolExpr(ObjCProtocolExpr *E) { in VisitObjCProtocolExpr()
|
| /llvm-project-15.0.7/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 227 isa<ObjCProtocolExpr>(Expr) || isa<MemberExpr>(Expr) || in subscriptOperatorNeedsParens()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 262 llvm::Value *CodeGenFunction::EmitObjCProtocolExpr(const ObjCProtocolExpr *E) { in EmitObjCProtocolExpr()
|
| H A D | CodeGenFunction.h | 4264 llvm::Value *EmitObjCProtocolExpr(const ObjCProtocolExpr *E);
|
| H A D | CGExprScalar.cpp | 512 Value *VisitObjCProtocolExpr(ObjCProtocolExpr *E) { in VisitObjCProtocolExpr()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndex.cpp | 4705 if (const ObjCProtocolExpr *PE = dyn_cast<ObjCProtocolExpr>(E)) in getDeclFromExpr()
|
| /llvm-project-15.0.7/clang/test/AST/ |
| H A D | ast-dump-expr-json.m | 871 // CHECK-NEXT: "kind": "ObjCProtocolExpr",
|