/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | ExperimentingRunnerModuleTest.java | 51 private Method methodA; field in ExperimentingRunnerModuleTest 56 methodA = TestBenchmark.class.getDeclaredMethod("a"); in setUp() 65 .add(instrumentA.createInstrumentation(methodA)) in provideInstrumentations_noNames() 68 .add(instrumentB.createInstrumentation(methodA)) in provideInstrumentations_noNames() 91 .add(instrumentA.createInstrumentation(methodA)) in provideInstrumentations_withNames() 93 .add(instrumentB.createInstrumentation(methodA)) in provideInstrumentations_withNames()
|
/external/clang/test/SemaObjC/ |
D | attr-availability.m | 216 -(void)methodA __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-n… 223 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 228 -(void)methodA; method 233 [obj methodA]; // okay: availability not inherited 242 -(void)methodA { method 245 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 251 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 260 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 266 -(void)methodA __attribute__((availability(macosx,introduced=10.2))); // expected-warning{{method i… 275 -(void)methodA __attribute__((availability(macosx,introduced=10.2))) // expected-warning{{method in…
|
D | undeclared-selector.m | 7 + (void) methodA; class 16 + (void) methodA {} class 38 SEL a = @selector(methodA); /* Ok */
|
D | protocols-suppress-conformance.m | 176 - (void)methodA; method in objc_protocol_requires_explicit_implementation 186 - (void)methodA; // expected-note {{method 'methodA' declared here}} method 192 - (void)methodA; method 199 - (void)methodA {} method 205 @implementation Ex2ClassB // expected-warning {{method 'methodA' in protocol 'Ex2ProtocolB' not imp…
|
D | comptypes-3.m | 8 - (void) methodA; method
|
D | nullability.m | 91 - (nonnull NSFoo *)methodA:(nonnull NSFoo*)foo; 97 - (NSFoo *)methodA:(NSFoo*)foo {
|
/external/llvm-project/clang/test/SemaObjC/ |
D | undeclared-selector.m | 7 + (void) methodA; class 16 + (void) methodA {} class 38 SEL a = @selector(methodA); /* Ok */
|
D | attr-availability.m | 232 -(void)methodA __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-n… 239 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 244 -(void)methodA; method 249 [obj methodA]; // okay: availability not inherited 258 -(void)methodA { method 261 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 267 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 276 [obj methodA]; // expected-warning{{'methodA' is deprecated: first deprecated in macOS 10.2}} 282 -(void)methodA __attribute__((availability(macosx,introduced=10.2))); // expected-warning{{method i… 291 -(void)methodA __attribute__((availability(macosx,introduced=10.2))) // expected-warning{{method in…
|
D | protocols-suppress-conformance.m | 176 - (void)methodA; method in objc_protocol_requires_explicit_implementation 186 - (void)methodA; // expected-note {{method 'methodA' declared here}} method 192 - (void)methodA; method 199 - (void)methodA {} method 205 @implementation Ex2ClassB // expected-warning {{method 'methodA' in protocol 'Ex2ProtocolB' not imp…
|
D | comptypes-3.m | 8 - (void) methodA; method
|
D | nullability.m | 91 - (nonnull NSFoo *)methodA:(nonnull NSFoo*)foo; 97 - (NSFoo *)methodA:(NSFoo*)foo {
|
/external/llvm-project/clang/test/FixIt/ |
D | typo.m | 25 - (void)methodA; method 26 + (void)methodA; class 42 - (void)methodA { } method 43 + (void)methodA { } class 150 [a methodA] // expected-error{{expected ';' after expression}} 151 [A methodA] // expected-error{{expected ';' after expression}}
|
/external/clang/test/FixIt/ |
D | typo.m | 25 - (void)methodA; method 26 + (void)methodA; class 42 - (void)methodA { } method 43 + (void)methodA { } class 150 [a methodA] // expected-error{{expected ';' after expression}} 151 [A methodA] // expected-error{{expected ';' after expression}}
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/resolution/ |
D | MethodResolutionLogic.java | 453 …private static boolean isMoreSpecific(MethodDeclaration methodA, MethodDeclaration methodB, List<T… in isMoreSpecific() argument 455 if (methodA.getNumberOfParams() < methodB.getNumberOfParams()) { in isMoreSpecific() 458 if (methodA.getNumberOfParams() > methodB.getNumberOfParams()) { in isMoreSpecific() 461 for (int i = 0; i < methodA.getNumberOfParams(); i++) { in isMoreSpecific() 462 Type tdA = methodA.getParam(i).getType(); in isMoreSpecific() 477 if (methodA.hasVariadicParameter() && !methodB.hasVariadicParameter()) { in isMoreSpecific() 487 if (!methodA.hasVariadicParameter() && methodB.hasVariadicParameter()) { in isMoreSpecific() 503 …private static boolean isMoreSpecific(MethodUsage methodA, MethodUsage methodB, TypeSolver typeSol… in isMoreSpecific() argument 505 for (int i = 0; i < methodA.getNoParams(); i++) { in isMoreSpecific() 506 Type tdA = methodA.getParamType(i); in isMoreSpecific()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/ |
D | MethodResolutionLogic.java | 457 …private static boolean isMoreSpecific(ResolvedMethodDeclaration methodA, ResolvedMethodDeclaration… in isMoreSpecific() argument 460 final boolean aVariadic = methodA.hasVariadicParameter(); in isMoreSpecific() 462 final int aNumberOfParams = methodA.getNumberOfParams(); in isMoreSpecific() 480 ResolvedType paramTypeA = getMethodsExplicitAndVariadicParameterType(methodA, i); in isMoreSpecific() 536 private static boolean isMoreSpecific(MethodUsage methodA, MethodUsage methodB) { in isMoreSpecific() argument 538 for (int i = 0; i < methodA.getNoParams(); i++) { in isMoreSpecific() 539 ResolvedType tdA = methodA.getParamType(i); in isMoreSpecific()
|
/external/llvm-project/clang/test/Sema/ |
D | typo-correction-recursive.cpp | 102 DeepAmbiguityHelper& methodA();
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_resolution_MethodResolutionLogic.txt | 285 …Line 455) methodA.getNumberOfParams() ==> com.github.javaparser.symbolsolver.model.declarations.Me… 287 …Line 458) methodA.getNumberOfParams() ==> com.github.javaparser.symbolsolver.model.declarations.Me… 289 …Line 461) methodA.getNumberOfParams() ==> com.github.javaparser.symbolsolver.model.declarations.Me… 290 …Line 462) methodA.getParam(i).getType() ==> com.github.javaparser.symbolsolver.model.declarations.… 291 …Line 462) methodA.getParam(i) ==> com.github.javaparser.symbolsolver.model.declarations.MethodLike… 299 …Line 477) methodA.hasVariadicParameter() ==> com.github.javaparser.symbolsolver.model.declarations… 305 …Line 487) methodA.hasVariadicParameter() ==> com.github.javaparser.symbolsolver.model.declarations… 311 …Line 505) methodA.getNoParams() ==> com.github.javaparser.symbolsolver.model.methods.MethodUsage.g… 312 …Line 506) methodA.getParamType(i) ==> com.github.javaparser.symbolsolver.model.methods.MethodUsage…
|
/external/llvm-project/flang/include/flang/Optimizer/Dialect/ |
D | FIROps.td | 2131 %r = fir.dispatch methodA(%o) : (!fir.box<none>) -> i32
|