Home
last modified time | relevance | path

Searched refs:Protocol (Results 1 – 25 of 92) sorted by relevance

1234

/llvm-project-15.0.7/clang/test/ExtractAPI/
H A Dobjc_protocol.m17 @protocol Protocol protocol
20 @protocol AnotherProtocol <Protocol>
52 "target": "c:objc(pl)Protocol"
69 "spelling": "Protocol"
77 "displayName": "Protocol",
91 "spelling": "Protocol"
97 "spelling": "Protocol"
100 "title": "Protocol"
103 "Protocol"
128 "spelling": "Protocol"
[all …]
H A Dobjc_category.m17 @protocol Protocol; protocol
22 @interface Interface (Category) <Protocol>
72 "target": "c:objc(pl)Protocol"
/llvm-project-15.0.7/clang/test/CodeGenObjCXX/
H A Dmsabi-objc-extensions.mm10 // CHECK-LABEL: "?f@@YAXPAU?$objc_object@U?$Protocol@UP@@@__ObjC@@@@PAUobjc_object@@01@Z"
13 // CHECK-LABEL: "?f@@YAXPAUobjc_object@@PAU?$objc_object@U?$Protocol@UP@@@__ObjC@@@@10@Z"
16 // CHECK-LABEL: "?f@@YAXPAU?$objc_object@U?$Protocol@UP@@@__ObjC@@@@0@Z"
19 // CHECK-LABEL: "?f@@YAXPAU?$objc_object@U?$Protocol@UP@@@__ObjC@@@@@Z"
22 // CHECK-LABEL: "?f@@YAXPAU?$objc_object@U?$Protocol@UP@@@__ObjC@@U?$Protocol@UQ@@@2@@@@Z"
25 // CHECK-LABEL: "?f@@YAXPAU?$objc_class@U?$Protocol@UP@@@__ObjC@@@@@Z"
28 // CHECK-LABEL: "?f@@YAXPAU?$objc_class@U?$Protocol@UP@@@__ObjC@@U?$Protocol@UQ@@@2@@@@Z"
31 // CHECK-LABEL: "?f@@YAXPAU?$I@U?$Protocol@UP@@@__ObjC@@@@@Z"
34 // CHECK-LABEL: "?f@@YAXPAU?$I@U?$Protocol@UP@@@__ObjC@@U?$Protocol@UQ@@@2@@@@Z"
76 // CHECK-LABEL: "?f@@YAXPAU?$KindOf@U?$I@U?$Protocol@UP@@@__ObjC@@@@@__ObjC@@@Z"
[all …]
/llvm-project-15.0.7/clang/test/FixIt/Inputs/
H A Dnullability-objc.h3 @protocol Protocol;
9 void objcIdParameterWithProtocolFirstInFile(id<Protocol> i); // expected-warning {{pointer is missi…
23 void objcClassParameterWithProtocol(Item<Protocol> *i); // expected-warning {{pointer is missing a …
30 void objcIdParameterWithProtocol(id<Protocol> i); // expected-warning {{pointer is missing a nullab…
44 void objcParameterizedClassParameterWithProtocol(Container<id<Protocol>> *c); // expected-warning {…
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dprotocol-expr-neg-1.m3 @class Protocol;
14 Protocol *proto = @protocol(p1);
15Protocol *fproto = @protocol(fproto); // expected-error {{@protocol is using a forward protocol de…
16 Protocol *pp = @protocol(i); // expected-error {{cannot find protocol declaration for 'i'}}
17 Protocol *p1p = @protocol(cl); // expected-error {{cannot find protocol declaration for 'cl'}}
25 - (int) conformsToProtocol : (Protocol *)protocl; argument
H A Daccess-property-getter.m3 @protocol Protocol protocol
7 void accessMethodViaPropertySyntaxAndTriggerWarning(id<Protocol> object) {
14 void accessMethodViaPropertySyntaxWhenWarningIsIgnoredDoesNotTriggerWarning(id<Protocol> object) {
H A Dprotocols-suppress-conformance.m6 @protocol Protocol protocol
14 @interface ClassA <Protocol>
19 // This class subclasses ClassA (which also adopts 'Protocol').
20 @interface ClassB : ClassA <Protocol>
26 @interface ClassB_Good : ClassA <Protocol>
34 @interface ClassB_AlsoGood : ClassA <Protocol>
164 @interface Derived (MyCat) <Protocol>
167 @implementation Derived (MyCat) // expected-warning {{method 'theBestOfTimes' in protocol 'Protocol
H A Dprotocol-expr-1.m13 Protocol *proto = @protocol(p1);
14 Protocol *fproto = @protocol(fproto);
H A Dobjc-asm-attribute-neg-test.m12 __attribute__((objc_runtime_name("MySecretNamespace.Protocol")))
13 @protocol Protocol protocol
17 @interface Message <Protocol> {
H A Dclass-protocol.m5 @interface Protocol interface
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dprotocols.m53 Protocol *P0 = @protocol(P0);
54 Protocol *P1 = @protocol(P1);
55 Protocol *P2 = @protocol(P2);
56 Protocol *P3 = @protocol(P3);
H A Dobjc-asm-attribute-test.m4 __attribute__((objc_runtime_name("MySecretNamespace.Protocol")))
5 @protocol Protocol protocol
21 @interface Message <Protocol, Protocol2> {
H A Ddebug-info-ivars-private.m10 @protocol Protocol protocol
13 @interface Delegate : NSObject<Protocol> {
H A Dsection-name.m3 @protocol Protocol protocol
8 @interface Interface<Protocol>
/llvm-project-15.0.7/clang/test/Index/
H A Dreparse-predef-objc-protocol.m5 // CHECK: declare-objc-predef.h:1:8: ObjCInterfaceDecl=Protocol:1:8 Extent=[1:1 - 1:16]
6 // CHECK: declare-objc-predef.h:1:8: ObjCClassRef=Protocol:1:8 Extent=[1:8 - 1:16]
H A Dindex-refs.m2 @class Protocol;
12 Protocol *p = @protocol(Prot);
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Dinstantiate-method-return.mm9 @protocol Protocol protocol
15 @interface I<Protocol>
H A Dlinkage-spec.mm4 @class Protocol;
/llvm-project-15.0.7/clang-tools-extra/clangd/tool/
H A DClangdMain.cpp86 OptionCategory Protocol("clangd protocol and logging options"); variable
88 const OptionCategory *ClangdCategories[] = {&Features, &Protocol,
426 cat(Protocol),
438 cat(Protocol),
446 cat(Protocol),
458 cat(Protocol),
466 cat(Protocol),
476 cat(Protocol),
490 cat(Protocol),
/llvm-project-15.0.7/clang/test/Rewriter/
H A Dprotocol-rewrite-1.m57 + (id)protocolCheckerWithTarget:(NSObject *)anObject protocol:(Protocol *)aProtocol; argument
73 // CHECK: sel_registerName("protocolCheckerWithTarget:protocol:"), (NSObject *)0, (Protocol *)_OBJC…
/llvm-project-15.0.7/clang/test/ASTMerge/interface/Inputs/
H A Dinterface2.m54 // Protocol with mismatching method
66 // Protocol with protocol
H A Dinterface1.m55 // Protocol with mismatching method
67 // Protocol with protocol
/llvm-project-15.0.7/clang/test/Index/Inputs/
H A Ddeclare-objc-predef.h1 @class Protocol;
/llvm-project-15.0.7/mlir/lib/Tools/lsp-server-support/
H A DCMakeLists.txt4 Protocol.cpp
/llvm-project-15.0.7/mlir/lib/Tools/mlir-pdll-lsp-server/
H A DCMakeLists.txt4 Protocol.cpp

1234