Home
last modified time | relevance | path

Searched refs:howMany (Results 1 – 18 of 18) 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.h78 ThreadPool(TestClass *test, int howMany, void (TestClass::*runFnPtr)(int32_t threadNumber)) : in ThreadPool() argument
79 ThreadPoolBase(test, howMany), fRunFnPtr(runFnPtr) {} in ThreadPool()
Dsimplethread.cpp46 ThreadPoolBase::ThreadPoolBase(IntlTest *test, int32_t howMany) : in ThreadPoolBase() argument
47 fIntlTest(test), fNumThreads(howMany), fThreads(NULL) { in ThreadPoolBase()
/external/cronet/third_party/icu/source/test/intltest/
Dsimplethread.h78 ThreadPool(TestClass *test, int howMany, void (TestClass::*runFnPtr)(int32_t threadNumber)) : in ThreadPool() argument
79 ThreadPoolBase(test, howMany), fRunFnPtr(runFnPtr) {} in ThreadPool()
Dsimplethread.cpp46 ThreadPoolBase::ThreadPoolBase(IntlTest *test, int32_t howMany) : in ThreadPoolBase() argument
47 fIntlTest(test), fNumThreads(howMany), fThreads(NULL) { in ThreadPoolBase()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DOneSizeGenerator.java68 public Collection<E> getSampleElements(int howMany) { in getSampleElements() argument
73 return new ArrayList<>(allSampleElements.subList(0, howMany)); in getSampleElements()
DAbstractContainerTester.java200 protected Collection<E> getSampleElements(int howMany) { in getSampleElements() argument
201 return getSubjectGenerator().getSampleElements(howMany); in getSampleElements()
DOneSizeTestContainerGenerator.java38 Collection<E> getSampleElements(int howMany); in getSampleElements() argument
DAbstractMapTester.java152 protected Collection<Entry<K, V>> getSampleEntries(int howMany) { in getSampleEntries() argument
153 return getSampleElements(howMany); in getSampleEntries()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DOneSizeGenerator.java68 public Collection<E> getSampleElements(int howMany) { in getSampleElements() argument
73 return new ArrayList<>(allSampleElements.subList(0, howMany)); in getSampleElements()
DAbstractContainerTester.java200 protected Collection<E> getSampleElements(int howMany) { in getSampleElements() argument
201 return getSubjectGenerator().getSampleElements(howMany); in getSampleElements()
DOneSizeTestContainerGenerator.java38 Collection<E> getSampleElements(int howMany); in getSampleElements() argument
DAbstractMapTester.java152 protected Collection<Entry<K, V>> getSampleEntries(int howMany) { in getSampleEntries() argument
153 return getSampleElements(howMany); in getSampleEntries()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/
DDataSpecTest.java319 private static Map<String, String> createHttpRequestHeaders(int howMany) { in createHttpRequestHeaders() argument
320 return createHttpRequestHeaders(0, howMany); in createHttpRequestHeaders()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/
DDataSpecTest.java319 private static Map<String, String> createHttpRequestHeaders(int howMany) { in createHttpRequestHeaders() argument
320 return createHttpRequestHeaders(0, howMany); in createHttpRequestHeaders()
/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()