Home
last modified time | relevance | path

Searched refs:shouldDoStuff (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang-tools-extra/test/clang-tidy/infrastructure/
Dobjc-arc-and-properties.m12 @property (nonatomic, assign) int shouldDoStuff; property
18 if(f.shouldDoStuff); [f nop];
20 // CHECK-FIXES: if(f.shouldDoStuff) [f nop];
Dobjc-no-arc-or-properties.m20 - (int)shouldDoStuff; method
26 if([f shouldDoStuff]); [f nop];
28 // CHECK-FIXES: if([f shouldDoStuff]) [f nop];
/external/mockito/src/test/java/org/mockitousage/annotation/
DSpyInjectionTest.java29 public void shouldDoStuff() throws Exception { in shouldDoStuff() method in SpyInjectionTest