/external/llvm-project/clang/test/Rewriter/ |
D | instancetype-test.mm | 18 @protocol Proto1 protocol 57 …[[Subclass1<Proto1> alloc] methodInProto2]; // expected-warning{{method '-methodInProto2' not foun… 61 Subclass1<Proto1> *sc1proto1 = 0; 69 // Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init];
|
D | rewrite-protocol-qualified.mm | 20 @protocol Proto1, Proto2; protocol 25 unsigned char func(id<Proto1, Proto2> inProxy);
|
/external/clang/test/Rewriter/ |
D | instancetype-test.mm | 18 @protocol Proto1 protocol 57 …[[Subclass1<Proto1> alloc] methodInProto2]; // expected-warning{{method '-methodInProto2' not foun… 61 Subclass1<Proto1> *sc1proto1 = 0; 69 // Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init];
|
D | rewrite-protocol-qualified.mm | 20 @protocol Proto1, Proto2; protocol 25 unsigned char func(id<Proto1, Proto2> inProxy);
|
/external/protobuf/java/core/src/test/proto/com/google/protobuf/ |
D | test_extra_interfaces.proto | 36 message Proto1 { message 42 "com.google.protobuf.ExtraInterfaces.HasStringValue<Proto1>"; 45 "<Proto1, Builder>";
|
/external/clang/test/SemaObjCXX/ |
D | instancetype.mm | 17 @protocol Proto1 protocol 56 typedef Subclass1<Proto1> SC1Proto1; 62 Subclass1<Proto1> *sc1proto1 = 0; 72 Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init]; 125 @interface Subclass3 <Proto1, Proto2> 137 @protocol Proto3 <Proto1, Proto2>
|
/external/clang/test/SemaObjC/ |
D | instancetype.m | 17 @protocol Proto1 protocol 56 typedef Subclass1<Proto1> SC1Proto1; 62 Subclass1<Proto1> *sc1proto1 = 0; 72 Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init]; 125 @interface Subclass3 <Proto1, Proto2> 137 @protocol Proto3 <Proto1, Proto2>
|
/external/llvm-project/clang/test/SemaObjC/ |
D | instancetype.m | 17 @protocol Proto1 protocol 56 typedef Subclass1<Proto1> SC1Proto1; 62 Subclass1<Proto1> *sc1proto1 = 0; 72 Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init]; 125 @interface Subclass3 <Proto1, Proto2> 137 @protocol Proto3 <Proto1, Proto2>
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | non-runtime-protocol.m | 110 // GNUINHERITANCE-DAG: @[[Proto1:[0-9]]]{{.*}}c"R1\00" 111 // GNUINHERITANCE-DAG: [[P1Name:@.objc_protocol.[0-9]*]]{{.*}}@[[Proto1]] 119 // GNU2INHERITANCE-DAG: @[[Proto1:[0-9]]]{{.*}}c"R1\00" 120 // GNU2INHERITANCE-DAG: _OBJC_PROTOCOL_R1{{.*}}@[[Proto1]]
|
/external/llvm-project/clang/test/SemaObjCXX/ |
D | instancetype.mm | 17 @protocol Proto1 protocol 56 typedef Subclass1<Proto1> SC1Proto1; 62 Subclass1<Proto1> *sc1proto1 = 0; 72 Subclass1<Proto1> *sc1proto1_2 = [[[sc1proto1 class] alloc] init]; 125 @interface Subclass3 <Proto1, Proto2> 137 @protocol Proto3 <Proto1, Proto2>
|
/external/llvm-project/clang/lib/AST/ |
D | ASTStructuralEquivalence.cpp | 609 const FunctionProtoType *Proto1, in IsEquivalentExceptionSpec() argument 612 auto Spec1 = Proto1->getExceptionSpecType(); in IsEquivalentExceptionSpec() 621 if (Proto1->getNumExceptions() != Proto2->getNumExceptions()) in IsEquivalentExceptionSpec() 623 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) { in IsEquivalentExceptionSpec() 624 if (!IsStructurallyEquivalent(Context, Proto1->getExceptionType(I), in IsEquivalentExceptionSpec() 629 if (!IsStructurallyEquivalent(Context, Proto1->getNoexceptExpr(), in IsEquivalentExceptionSpec() 858 const auto *Proto1 = cast<FunctionProtoType>(T1); in IsStructurallyEquivalent() local 861 if (Proto1->getNumParams() != Proto2->getNumParams()) in IsStructurallyEquivalent() 863 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) { in IsStructurallyEquivalent() 864 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I), in IsStructurallyEquivalent() [all …]
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 636 const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1); in IsStructurallyEquivalent() local 638 if (Proto1->getNumParams() != Proto2->getNumParams()) in IsStructurallyEquivalent() 640 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) { in IsStructurallyEquivalent() 641 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I), in IsStructurallyEquivalent() 645 if (Proto1->isVariadic() != Proto2->isVariadic()) in IsStructurallyEquivalent() 647 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType()) in IsStructurallyEquivalent() 649 if (Proto1->getExceptionSpecType() == EST_Dynamic) { in IsStructurallyEquivalent() 650 if (Proto1->getNumExceptions() != Proto2->getNumExceptions()) in IsStructurallyEquivalent() 652 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) { in IsStructurallyEquivalent() 654 Proto1->getExceptionType(I), in IsStructurallyEquivalent() [all …]
|
/external/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 4187 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>(); in isAtLeastAsSpecializedAs() local 4190 assert(Proto1 && Proto2 && "Function templates must have prototypes"); in isAtLeastAsSpecializedAs() 4235 Args1.insert(Args1.end(), Proto1->param_type_begin(), in isAtLeastAsSpecializedAs() 4236 Proto1->param_type_end()); in isAtLeastAsSpecializedAs() 4259 S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(), in isAtLeastAsSpecializedAs()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 5090 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>(); in isAtLeastAsSpecializedAs() local 5093 assert(Proto1 && Proto2 && "Function templates must have prototypes"); in isAtLeastAsSpecializedAs() 5144 Args1.insert(Args1.end(), Proto1->param_type_begin(), in isAtLeastAsSpecializedAs() 5145 Proto1->param_type_end()); in isAtLeastAsSpecializedAs() 5170 S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(), in isAtLeastAsSpecializedAs()
|
/external/protobuf/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/ |
D | descriptor.proto | 251 // outer class with the given name. This applies to both Proto1
|
/external/protobuf/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/ |
D | descriptor.proto | 251 // outer class with the given name. This applies to both Proto1
|
/external/protobuf/python/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/ |
D | descriptor.proto | 251 // outer class with the given name. This applies to both Proto1
|
/external/grpc-grpc/third_party/nanopb/generator/proto/google/protobuf/ |
D | descriptor.proto | 274 // outer class with the given name. This applies to both Proto1
|
/external/nos/host/generic/nugget/proto/google/protobuf/ |
D | descriptor.proto | 297 // outer class with the given name. This applies to both Proto1
|
/external/nanopb-c/generator/proto/google/protobuf/ |
D | descriptor.proto | 328 // outer class with the given name. This applies to both Proto1
|
/external/golang-protobuf/protoc-gen-go/descriptor/ |
D | descriptor.proto | 328 // outer class with the given name. This applies to both Proto1
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.proto | 328 // outer class with the given name. This applies to both Proto1
|
/external/rust/crates/grpcio-sys/grpc/third_party/upb/benchmarks/ |
D | descriptor.proto | 348 // outer class with the given name. This applies to both Proto1
|
D | descriptor_sv.proto | 345 // outer class with the given name. This applies to both Proto1
|