Home
last modified time | relevance | path

Searched refs:Name1 (Results 1 – 2 of 2) sorted by relevance

/external/clang/test/SemaObjC/
Dwarning-missing-selector-name.m7 -(void) Name1:(id)Arg1 Name2:(id)Arg2; // Name1:Name2:
8 -(void) Name1:(id) Name2:(id)Arg2; // expected-warning {{'Name2' used as the name of the previous p…
11 -(void) Name1:(id)Arg1 Name2:(id)Arg2 Name3:(id)Arg3; // Name1:Name2:Name3:
12 -(void) Name1:(id)Arg1 Name2:(id) Name3:(id)Arg3; // expected-warning {{'Name3' used as the name of…
23 -(void) Name1:(id)Arg1 Name2:(id)Arg2{}
24 -(void) Name1:(id) Name2:(id)Arg2 {} // expected-warning {{'Name2' used as the name of the previous…
27 -(void) Name1:(id)Arg1 Name2:(id)Arg2 Name3:(id)Arg3 {}
28 -(void) Name1:(id)Arg1 Name2:(id) Name3:(id)Arg3 {} // expected-warning {{'Name3' used as the name …
/external/clang/lib/AST/
DASTImporter.cpp277 static bool IsStructurallyEquivalent(const IdentifierInfo *Name1, in IsStructurallyEquivalent() argument
279 if (!Name1 || !Name2) in IsStructurallyEquivalent()
280 return Name1 == Name2; in IsStructurallyEquivalent()
282 return Name1->getName() == Name2->getName(); in IsStructurallyEquivalent()
859 IdentifierInfo *Name1 = Field1->getIdentifier(); in IsStructurallyEquivalent() local
861 if (!::IsStructurallyEquivalent(Name1, Name2)) in IsStructurallyEquivalent()
1325 IdentifierInfo *Name1 = Record1->getIdentifier(); in Finish() local
1326 if (!Name1 && Record1->getTypedefNameForAnonDecl()) in Finish()
1327 Name1 = Record1->getTypedefNameForAnonDecl()->getIdentifier(); in Finish()
1331 if (!::IsStructurallyEquivalent(Name1, Name2) || in Finish()
[all …]