Searched defs:nextInt (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DATResponseParser.java59 nextInt() method in class:ATResponseParser
/frameworks/base/core/java/com/android/internal/util/
H A DProcFileReader.java221 public int nextInt() throws IOException { method in class:ProcFileReader
/frameworks/base/core/java/android/util/
H A DJsonReader.java154 * followersCount = reader.nextInt();
166 * [1, "1"]} may be read using either {@link #nextInt} or {@link #nextString}.
509 public int nextInt() throws IOException { method in class:JsonReader
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DOpReorderTest.java162 randOp(nextInt(random, nextInt(random, 4)));
229 int s = nextInt(random, updatedItemCount - 1);
230 int len = Math.max(1, nextInt(random, updatedItemCount - s));
235 int s = updatedItemCount == 0 ? 0 : nextInt(random, updatedItemCount);
236 add(s, nextInt(random, 50));
240 int from = nextInt(random, updatedItemCount);
243 to = nextInt(random, updatedItemCount);
250 s = nextInt(random, updatedItemCount - 1);
251 int len = Math.max(1, nextInt(rando
258 int nextInt(Random random, int n) { method in class:OpReorderTest
[all...]
H A DAdapterHelperTest.java764 randomTest(random, Math.max(40, 10 + nextInt(random, i)));
777 final int count = 10;// + nextInt(random,100);
778 final int start = nextInt(random, count - 1);
779 final int layoutCount = Math.max(1, nextInt(random, count - start));
783 final int op = nextInt(random, 4);
787 int s = nextInt(random, mTestAdapter.mItems.size() - 1);
788 int len = Math.max(1, nextInt(random, mTestAdapter.mItems.size() - s));
794 nextInt(random, mTestAdapter.mItems.size());
795 add(s, nextInt(random, 50));
799 int from = nextInt(rando
819 int nextInt(Random random, int n) { method in class:AdapterHelperTest
[all...]

Completed in 504 milliseconds