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/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
DScheduler.java108 public boolean runTasks(int howMany) { in runTasks() argument
109 if (enqueuedTaskCount() < howMany) { in runTasks()
113 while (howMany > 0) { in runTasks()
117 howMany--; in runTasks()
/external/syslinux/win/
Dsyslinux.c112 DWORD howMany; in FixMBR() local
122 if (ReadFile(drive, sector, sizeof(sector), &howMany, NULL) == 0) { in FixMBR()
125 } else if (howMany != sizeof(sector)) { in FixMBR()
128 (int)howMany, sizeof(sector)); in FixMBR()
156 if (WriteFile(drive, sector, sizeof(sector), &howMany, NULL) == 0) { in FixMBR()
159 } else if (howMany != sizeof(sector)) { in FixMBR()
162 (int)howMany, sizeof(sector)); in FixMBR()
/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()
DOneSizeTestContainerGenerator.java39 Collection<E> getSampleElements(int howMany); in getSampleElements() argument
DAbstractMapTester.java164 protected Collection<Map.Entry<K, V>> getSampleEntries(int howMany) { in getSampleEntries() argument
165 return getSampleElements(howMany); in getSampleEntries()