Home
last modified time | relevance | path

Searched refs:Name2 (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaObjC/
H A 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…
9 // expected-note {{introduce a parameter name to make 'Name2' part of the selector}} \
10 …// expected-note {{or insert whitespace before ':' to use 'Name2' as parameter name and have an em…
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…
25 // expected-note {{introduce a parameter name to make 'Name2' part of the selector}} \
26 …// expected-note {{or insert whitespace before ':' to use 'Name2' as parameter name and have an em…
[all …]
/llvm-project-15.0.7/clang/lib/AST/
H A DASTStructuralEquivalence.cpp114 if (Name1.getNameKind() != Name2.getNameKind()) in IsStructurallyEquivalent()
412 if (!Name1 || !Name2) in IsStructurallyEquivalent()
413 return Name1 == Name2; in IsStructurallyEquivalent()
415 return Name1->getName() == Name2->getName(); in IsStructurallyEquivalent()
1263 IdentifierInfo *Name2 = Field2->getIdentifier(); in IsStructurallyEquivalent() local
1417 IdentifierInfo *Name2 = D2->getIdentifier(); in IsStructurallyEquivalent() local
1418 if (!Name2 && D2->getTypedefNameForAnonDecl()) in IsStructurallyEquivalent()
1420 if (!IsStructurallyEquivalent(Name1, Name2)) in IsStructurallyEquivalent()
1688 IdentifierInfo *Name2 = D2->getIdentifier(); in IsStructurallyEquivalent() local
1689 if (!Name2 && D2->getTypedefNameForAnonDecl()) in IsStructurallyEquivalent()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/
H A Dflags_test.cpp78 const char *Name2 = "flag2") { in testTwoFlags() argument
83 Parser.registerFlag(Name2, FlagDesc, scudo::FlagType::FT_int, &Flag2); in testTwoFlags()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DScopedPrinterTest.cpp239 "Value": "Name2", in TEST_F()