/external/clang/test/Index/ |
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
|
/external/llvm-project/clang/test/Index/ |
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
|
/external/clang/lib/Sema/ |
D | SemaFixItUtils.cpp | 84 isa<ObjCProtocolExpr>(Expr) || in tryToFixConversion()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaFixItUtils.cpp | 83 isa<ObjCProtocolExpr>(Expr) || in tryToFixConversion()
|
/external/llvm-project/clang/include/clang/AST/ |
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
|
D | TextNodeDumper.h | 293 void VisitObjCProtocolExpr(const ObjCProtocolExpr *Node);
|
D | JSONNodeDumper.h | 296 void VisitObjCProtocolExpr(const ObjCProtocolExpr *OPE);
|
/external/clang/include/clang/AST/ |
D | ExprObjC.h | 441 class ObjCProtocolExpr : public Expr { 445 ObjCProtocolExpr(QualType T, ObjCProtocolDecl *protocol, 450 explicit ObjCProtocolExpr(EmptyShell Empty)
|
/external/clang/lib/Index/ |
D | IndexBody.cpp | 211 bool VisitObjCProtocolExpr(ObjCProtocolExpr *E) { in VisitObjCProtocolExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 161 def ObjCProtocolExpr : DStmt<Expr>;
|
/external/llvm-project/clang/lib/Index/ |
D | IndexBody.cpp | 321 bool VisitObjCProtocolExpr(ObjCProtocolExpr *E) { in VisitObjCProtocolExpr()
|
/external/clang/lib/Edit/ |
D | RewriteObjCFoundationAPI.cpp | 901 isa<ObjCProtocolExpr>(Expr) || in subscriptOperatorNeedsParens() 928 isa<ObjCProtocolExpr>(Expr) || in castOperatorNeedsParens()
|
/external/llvm-project/clang/lib/Edit/ |
D | RewriteObjCFoundationAPI.cpp | 903 isa<ObjCProtocolExpr>(Expr) || in subscriptOperatorNeedsParens() 930 isa<ObjCProtocolExpr>(Expr) || in castOperatorNeedsParens()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 181 def ObjCProtocolExpr : StmtNode<Expr>;
|
/external/clang/lib/AST/ |
D | ASTDumper.cpp | 553 void VisitObjCProtocolExpr(const ObjCProtocolExpr *Node); 2238 void ASTDumper::VisitObjCProtocolExpr(const ObjCProtocolExpr *Node) { in VisitObjCProtocolExpr()
|
D | StmtProfile.cpp | 1576 void StmtProfiler::VisitObjCProtocolExpr(const ObjCProtocolExpr *S) { in VisitObjCProtocolExpr()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | FindTarget.cpp | 508 void VisitObjCProtocolExpr(const ObjCProtocolExpr *OPE) { in add()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 300 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp); 3037 Stmt *RewriteObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) { in RewriteObjCProtocolExpr() 4663 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
D | RewriteModernObjC.cpp | 358 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp); 3589 Stmt *RewriteModernObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) { in RewriteObjCProtocolExpr() 5568 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
/external/llvm-project/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 300 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp); 3049 Stmt *RewriteObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) { in RewriteObjCProtocolExpr() 4673 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
D | RewriteModernObjC.cpp | 358 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp); 3592 Stmt *RewriteModernObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) { in RewriteObjCProtocolExpr() 5567 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
/external/llvm-project/clang/lib/AST/ |
D | JSONNodeDumper.cpp | 1111 void JSONNodeDumper::VisitObjCProtocolExpr(const ObjCProtocolExpr *OPE) { in VisitObjCProtocolExpr()
|
D | TextNodeDumper.cpp | 1278 void TextNodeDumper::VisitObjCProtocolExpr(const ObjCProtocolExpr *Node) { in VisitObjCProtocolExpr()
|
D | StmtProfile.cpp | 2108 void StmtProfiler::VisitObjCProtocolExpr(const ObjCProtocolExpr *S) { in VisitObjCProtocolExpr()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1462 void ASTStmtReader::VisitObjCProtocolExpr(ObjCProtocolExpr *E) { in VisitObjCProtocolExpr() 3023 S = new (Context) ObjCProtocolExpr(Empty); in ReadStmtFromStream()
|