HomeSort by relevance Sort by last modified time
    Searched refs:howMany (Results 1 - 21 of 21) sorted by null

  /cts/tests/tests/location/src/android/location/cts/asn1/base/
BitStreamReader.java 80 * Returns next {@code howMany} bits as the low bits in the returned byte.
83 public int readLowBits(int howMany) {
85 for (int i = 0; i < howMany; i++) {
Asn1BMPString.java 190 int howMany) {
192 for (int i = 0; i < howMany; i++) {
  /external/icu/icu4c/source/test/intltest/
simplethread.h 69 ThreadPool(TestClass *test, int howMany, void (TestClass::*runFnPtr)(int32_t threadNumber)) :
70 ThreadPoolBase(test, howMany), fRunFnPtr(runFnPtr) {};
simplethread.cpp 298 ThreadPoolBase::ThreadPoolBase(IntlTest *test, int32_t howMany) :
299 fIntlTest(test), fNumThreads(howMany), fThreads(NULL) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
OneSizeTestContainerGenerator.java 39 Collection<E> getSampleElements(int howMany);
OneSizeGenerator.java 72 public Collection<E> getSampleElements(int howMany) {
77 return new ArrayList<E>(allSampleElements.subList(0, howMany));
AbstractContainerTester.java 207 protected Collection<E> getSampleElements(int howMany) {
208 return getSubjectGenerator().getSampleElements(howMany);
AbstractMapTester.java 164 protected Collection<Map.Entry<K, V>> getSampleEntries(int howMany) {
165 return getSampleElements(howMany);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSourcePlexor.java 56 protected Collection<ImageData> findImages(int howMany) {
60 foundImages.addAll(mPicasaSource.findImages(howMany));
63 foundImages.addAll(mLocalSource.findImages(howMany));
LocalSource.java 178 protected Collection<ImageData> findImages(int howMany) {
182 findImages(internalFirst, howMany, foundImages);
183 findImages(!internalFirst, howMany - foundImages.size(), foundImages);
188 protected void findImages(boolean internal, int howMany, LinkedList<ImageData> foundImages ) {
212 if (cursor.getCount() > howMany && mLastPosition == INVALID) {
213 mLastPosition = pickRandomStart(cursor.getCount(), howMany);
220 while (foundImages.size() < howMany && cursor.moveToNext()) {
PicasaSource.java 163 protected Collection<ImageData> findImages(int howMany) {
167 howMany = Math.min(howMany, mMaxRecycleSize);
168 log(TAG, "METERED: " + howMany);
221 if (cursor.getCount() > howMany && mLastPosition == INVALID) {
222 mLastPosition = pickRandomStart(cursor.getCount(), howMany);
StockSource.java 75 protected Collection<ImageData> findImages(int howMany) {
PhotoSource.java 326 protected abstract Collection<ImageData> findImages(int howMany);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
Scheduler.java 108 public boolean runTasks(int howMany) {
109 if (enqueuedTaskCount() < howMany) {
113 while (howMany > 0) {
117 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;
  /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/syslinux/win/
syslinux.c 112 DWORD howMany;
122 if (ReadFile(drive, sector, sizeof(sector), &howMany, NULL) == 0) {
125 } else if (howMany != sizeof(sector)) {
128 (int)howMany, sizeof(sector));
156 if (WriteFile(drive, sector, sizeof(sector), &howMany, NULL) == 0) {
159 } else if (howMany != sizeof(sector)) {
162 (int)howMany, sizeof(sector));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest2.java 519 public DeepNesting(int howMany) {
522 for (int i = 1; i < howMany; i++) {
566 public DeepNestingWithWriteObject(int howMany) {
570 for (int i = 1; i < howMany; i++) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c     [all...]
  /cts/tests/libcore/javautilcollections/libs/
guava-testlib-20.0.jar 
  /external/guice/lib/build/
guava-testlib-16.0.1.jar 

Completed in 1754 milliseconds