Home
last modified time | relevance | path

Searched refs:howMany (Results 1 – 11 of 11) sorted by relevance

/external/clang/test/SemaObjC/
Ddefault-synthesize.m8 @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 …]
Ddefault-synthesize-1.m11 @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/
Drewrite-modern-default-property-synthesis.mm16 @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/
Dsimplethread.h69 ThreadPool(TestClass *test, int howMany, void (TestClass::*runFnPtr)(int32_t threadNumber)) : in ThreadPool() argument
70 ThreadPoolBase(test, howMany), fRunFnPtr(runFnPtr) {}; in ThreadPool()
Dsimplethread.cpp298 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/
DOneSizeGenerator.java72 public Collection<E> getSampleElements(int howMany) { in getSampleElements() argument
77 return new ArrayList<E>(allSampleElements.subList(0, howMany)); in getSampleElements()
DAbstractContainerTester.java207 protected Collection<E> getSampleElements(int howMany) { in getSampleElements() argument
208 return getSubjectGenerator().getSampleElements(howMany); in getSampleElements()
DAbstractMapTester.java164 protected Collection<Map.Entry<K, V>> getSampleEntries(int howMany) { in getSampleEntries() argument
165 return getSampleElements(howMany); in getSampleEntries()
DOneSizeTestContainerGenerator.java39 Collection<E> getSampleElements(int howMany); in getSampleElements() argument
/external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/
Dtestbench.cpp226 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/
DErrors.java184 int howMany = Math.min(sameTypes.size(), MAX_MATCHING_TYPES_REPORTED); in missingImplementationWithHint() local
185 for (int i = 0; i < howMany; ++i) { in missingImplementationWithHint()