/external/clang/test/SemaObjC/ |
D | default-synthesize.m | 8 @property int howMany; property 14 @synthesize howMany, what; 20 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one… property 26 @synthesize howMany, what; 29 - (int) howMany { method in objc_default_synthesize_properties 30 return self.howMany; 42 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one… property 48 @synthesize howMany, what; 51 // - (int) howMany 53 self.howMany = value; [all …]
|
D | default-synthesize-1.m | 11 @property int howMany; // expected-warning {{auto property synthesis is synthesizing property not e… property 16 //@synthesize howMany, what; 21 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing … property 26 //@synthesize howMany, what; 28 - (int) howMany { method 41 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing pr… property 46 //@synthesize howMany, what; 48 // - (int) howMany 64 @property int howMany; property 69 //@synthesize howMany, what; // REM: Redundant anyway [all …]
|
/external/clang/test/Rewriter/ |
D | rewrite-modern-default-property-synthesis.mm | 16 @property int howMany; 25 @property (nonatomic) int howMany; 31 - (int) howMany { 44 @property (nonatomic) int howMany; property 49 // - (int) howMany 78 // CHECK: (*(int *)((char *)self + OBJC_IVAR_$_SynthItAll$_howMany)) = howMany;
|
/external/icu/icu4c/source/test/intltest/ |
D | simplethread.h | 69 ThreadPool(TestClass *test, int howMany, void (TestClass::*runFnPtr)(int32_t threadNumber)) : in ThreadPool() argument 70 ThreadPoolBase(test, howMany), fRunFnPtr(runFnPtr) {}; in ThreadPool()
|
D | simplethread.cpp | 298 ThreadPoolBase::ThreadPoolBase(IntlTest *test, int32_t howMany) : in ThreadPoolBase() argument 299 fIntlTest(test), fNumThreads(howMany), fThreads(NULL) { in ThreadPoolBase()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | OneSizeGenerator.java | 72 public Collection<E> getSampleElements(int howMany) { in getSampleElements() argument 77 return new ArrayList<E>(allSampleElements.subList(0, howMany)); in getSampleElements()
|
D | AbstractContainerTester.java | 207 protected Collection<E> getSampleElements(int howMany) { in getSampleElements() argument 208 return getSubjectGenerator().getSampleElements(howMany); in getSampleElements()
|
D | AbstractMapTester.java | 164 protected Collection<Map.Entry<K, V>> getSampleEntries(int howMany) { in getSampleEntries() argument 165 return getSampleElements(howMany); in getSampleEntries()
|
D | OneSizeTestContainerGenerator.java | 39 Collection<E> getSampleElements(int howMany); in getSampleElements() argument
|
/external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/ |
D | testbench.cpp | 226 vector<int> some_primes(std::size_t howMany) in some_primes() argument 230 .take(howMany); in some_primes()
|
/external/guice/core/src/com/google/inject/internal/ |
D | Errors.java | 184 int howMany = Math.min(sameTypes.size(), MAX_MATCHING_TYPES_REPORTED); in missingImplementationWithHint() local 185 for (int i = 0; i < howMany; ++i) { in missingImplementationWithHint()
|