HomeSort by relevance Sort by last modified time
    Searched full:howmany (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/clang/test/SemaObjC/
default-synthesize-1.m 11 @property int howMany; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
16 //@synthesize howMany, what;
21 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
26 //@synthesize howMany, what;
28 - (int) howMany {
41 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
46 //@synthesize howMany, what;
48 // - (int) howMany
64 @property int howMany;
69 //@synthesize howMany, what; // REM: Redundant anywa
    [all...]
default-synthesize.m 8 @property int howMany;
14 @synthesize howMany, what;
20 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one of the pair
26 @synthesize howMany, what;
29 - (int) howMany {
30 return self.howMany;
42 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one of the pair
48 @synthesize howMany, what;
51 // - (int) howMany
53 self.howMany = value
    [all...]
  /external/clang/test/Rewriter/
rewrite-modern-default-property-synthesis.mm 16 @property int howMany;
25 @property (nonatomic) int howMany;
31 - (int) howMany {
44 @property (nonatomic) int howMany;
49 // - (int) howMany
78 // CHECK: (*(int *)((char *)self + OBJC_IVAR_$_SynthItAll$_howMany)) = howMany;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xpoll.h 113 #ifndef howmany
114 #define howmany(x,y) (((x)+((y)-1))/(y)) macro
119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
155 * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the
160 ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \
161 (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \
162 (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \
163 (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \
164 (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \
165 (howmany(FD_SETSIZE, NFDBITS) > 5 && (__XFDS_BITS(p, 5))) ||
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 113 #ifndef howmany
114 #define howmany(x,y) (((x)+((y)-1))/(y)) macro
119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
155 * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the
160 ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \
161 (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \
162 (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \
163 (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \
164 (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \
165 (howmany(FD_SETSIZE, NFDBITS) > 5 && (__XFDS_BITS(p, 5))) ||
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 113 #ifndef howmany
114 #define howmany(x,y) (((x)+((y)-1))/(y)) macro
119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
155 * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the
160 ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \
161 (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \
162 (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \
163 (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \
164 (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \
165 (howmany(FD_SETSIZE, NFDBITS) > 5 && (__XFDS_BITS(p, 5))) ||
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSourcePlexor.java 61 protected Collection<ImageData> findImages(int howMany) {
65 foundImages.addAll(mPicasaSource.findImages(howMany));
68 foundImages.addAll(mLocalSource.findImages(howMany));
LocalSource.java 117 protected Collection<ImageData> findImages(int howMany) {
142 if (cursor.getCount() > howMany && mNextPosition == -1) {
143 mNextPosition = mRNG.nextInt() % (cursor.getCount() - howMany);
158 while (foundImages.size() < howMany && !cursor.isAfterLast()) {
PicasaSource.java 106 protected Collection<ImageData> findImages(int howMany) {
110 howMany = Math.min(howMany, mMaxRecycleSize);
111 log(TAG, "METERED: " + howMany);
165 if (cursor.getCount() > howMany && mNextPosition == -1) {
167 (int) Math.abs(mRNG.nextInt() % (cursor.getCount() - howMany));
183 while (foundImages.size() < howMany && !cursor.isAfterLast()) {
StockSource.java 65 protected Collection<ImageData> findImages(int howMany) {
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 142 int howMany = random.nextInt(32);
143 if (pos + howMany >= input.length) {
144 howMany = input.length - pos;
146 Arrays.fill(input, pos, pos + howMany, what);
147 pos += howMany;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
OneSizeGenerator.java 72 public Collection<E> getSampleElements(int howMany) {
77 return new ArrayList<E>(allSampleElements.subList(0, howMany));
OneSizeTestContainerGenerator.java 39 Collection<E> getSampleElements(int howMany);
AbstractMapTester.java 163 protected Collection<Map.Entry<K, V>> getSampleEntries(int howMany) {
164 return getSampleElements(howMany);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
param.h 51 #ifndef howmany
52 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
param.h 51 #ifndef howmany
52 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
param.h 51 #ifndef howmany
52 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) macro
  /external/llvm/test/CodeGen/ARM/
divmod.ll 61 define i32 @howmany(i32 %x, i32 %y) nounwind {
63 ; CHECK: howmany:
  /external/openssh/
authfd.h 66 int howmany; member in struct:__anon11178
authfd.c 212 auth->howmany = 0;
296 auth->howmany = buffer_get_int(&auth->identities);
297 if ((u_int)auth->howmany > 1024)
299 auth->howmany);
301 return auth->howmany;
323 if (auth->howmany <= 0)
352 auth->howmany--;
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 99 * @param howMany - shows how many TestCerts must contain the CertPath generated
103 public static CertPath genCertPath(int howMany, int startID) {
104 Certificate[] certs = new Certificate[howMany];
105 for (int i = 0; i < howMany; i++) {
766 * @param howMany
769 public static String[] genNames(int howMany) {
774 for (int i = 0; i < howMany;) {
815 * @param howMany
818 public static X500Principal[] genX500s(int howMany) {
819 String names[] = genNames(howMany);
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 100 * @param howMany - shows how many TestCerts must contain the CertPath generated
104 public static CertPath genCertPath(int howMany, int startID) {
105 Certificate[] certs = new Certificate[howMany];
106 for (int i = 0; i < howMany; i++) {
767 * @param howMany
770 public static String[] genNames(int howMany) {
775 for (int i = 0; i < howMany;) {
816 * @param howMany
819 public static X500Principal[] genX500s(int howMany) {
820 String names[] = genNames(howMany);
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DetailedHeapshotGridNodes.js 63 populateChildren: function(provider, howMany, atIndex, afterPopulate, suppressNotifyAboutCompletion)
65 if (!howMany && provider) {
66 howMany = provider.instanceCount;
72 howMany = howMany || this._defaultPopulateCount;
110 provider.getNextItems(howMany, childrenRetrieved.bind(this));
609 populateChildren: function(provider, howMany, atIndex, afterPopulate)
611 if (!provider && !howMany) {
617 } else if (!howMany) {
624 WebInspector.HeapSnapshotGridNode.prototype.populateChildren.call(this, provider, howMany, atIndex, afterPopulate)
    [all...]
  /external/chromium/third_party/libevent/
select.c 59 #ifndef howmany
60 #define howmany(x, y) (((x)+((y)-1))/(y)) macro
111 select_resize(sop, howmany(32 + 1, NFDBITS)*sizeof(fd_mask));
285 (howmany(ev->ev_fd + 1, NFDBITS) * sizeof(fd_mask)))
  /external/openssh/openbsd-compat/
bsd-poll.c 57 nmemb = howmany(maxfd + 1 , NFDBITS);

Completed in 1802 milliseconds

1 2 3