HomeSort by relevance Sort by last modified time
    Searched defs:mCount (Results 1 - 25 of 62) sorted by null

1 2 3

  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
ColorCountVerifier.java 23 private int mCount;
28 mCount = count;
47 if (count != mCount) {
48 Log.d("ColorCountVerifier", ("Color count mismatch " + count) + " != " + mCount);
50 return count == mCount;
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
SineWaveTone.java 28 private int mCount; // counts the total samples produced.
35 mCount = 0;
49 if (mIsGlitchEnabled && (mCount % mSamplingRate == 0)) {
53 mCount++;
70 if (mIsGlitchEnabled && (mCount % mSamplingRate == 0)) {
74 mCount++;
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
AbstractMeanVerification.java 28 private int mCount = 0;
42 mCount++;
49 return mCount;
56 if (mCount < 0) {
62 means[i] = mSums[i] / mCount;
MagnitudeVerification.java 49 private int mCount = 0;
93 if (mCount < 1) {
98 float mean = mSum / mCount;
124 mCount++;
FrequencyVerification.java 48 private int mCount = 0;
131 if (mCount < 2) {
137 ((double) (mMaxTimestamp - mMinTimestamp)) / (mCount - 1), TimeUnit.NANOSECONDS);
172 if (mCount == 0) {
183 mCount++;
StandardDeviationVerification.java 52 private int mCount = 0;
134 if (mCount < 2) {
141 stdDevs[i] = (float) Math.sqrt(mM2s[i] / (mCount - 1));
201 mCount++;
205 mMeans[i] += delta / mCount;
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationActivity.java 27 private int mCount = 1;
39 newButton.setText("Button:" + LayoutAnimationActivity.this.mCount);
42 LayoutAnimationActivity.this.mCount++;
  /cts/tests/tests/assist/common/src/android/assist/common/
AutoResetLatch.java 23 * A [CountDownLatch] that resets itself to [mCount] after every await call.
27 private final int mCount;
35 mCount = count;
43 mLatch = new CountDownLatch(mCount);
51 mLatch = new CountDownLatch(mCount);
  /cts/tests/tests/widget/src/android/widget/cts/
DummyAdapter.java 24 int mCount;
29 mCount = count;
35 return mCount;
BaseAdapterTest.java 145 private int mCount = 0;
148 mCount = count;
152 return mCount;
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
TechFilter.java 29 private int mCount = 0;
41 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
49 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
ForegroundDispatch.java 42 private int mCount = 0;
85 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
  /external/replicaisland/src/com/replica/replicaisland/
FixedSizeArray.java 35 private int mCount;
45 mCount = 0;
55 mCount = 0;
67 assert mCount < mContents.length : "Array exhausted!";
68 if (mCount < mContents.length) {
69 mContents[mCount] = object;
71 mCount++;
93 assert index < mCount;
95 if (index < mCount) {
96 for (int x = index; x < mCount; x++)
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Input.h 33 size_t count() const { return mCount; }
54 size_t mCount;
  /cts/tests/tests/content/src/android/content/cts/
ClipboardManagerListenerTest.java 76 private int mCount = 0;
81 mCount++;
86 return mCount;
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/
MidiFramer.java 36 private int mCount;
59 mCount = 1;
77 mCount = 1;
91 mBuffer[mCount++] = currentByte;
96 mReceiver.send(mBuffer, 0, mCount, timestamp);
98 mCount = 1;
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/
MidiFramer.java 36 private int mCount;
59 mCount = 1;
77 mCount = 1;
91 mBuffer[mCount++] = currentByte;
96 mReceiver.send(mBuffer, 0, mCount, timestamp);
98 mCount = 1;
  /developers/samples/android/common/src/java/com/example/android/common/midi/
MidiFramer.java 36 private int mCount;
59 mCount = 1;
77 mCount = 1;
91 mBuffer[mCount++] = currentByte;
96 mReceiver.send(mBuffer, 0, mCount, timestamp);
98 mCount = 1;
  /development/samples/browseable/MidiScope/src/com.example.android.common.midi/
MidiFramer.java 36 private int mCount;
59 mCount = 1;
77 mCount = 1;
91 mBuffer[mCount++] = currentByte;
96 mReceiver.send(mBuffer, 0, mCount, timestamp);
98 mCount = 1;
  /development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
MidiFramer.java 36 private int mCount;
59 mCount = 1;
77 mCount = 1;
91 mBuffer[mCount++] = currentByte;
96 mReceiver.send(mBuffer, 0, mCount, timestamp);
98 mCount = 1;
  /frameworks/av/media/img_utils/include/img_utils/
TiffEntryImpl.h 57 uint32_t mCount;
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
77 return mCount;
104 uint32_t total = sizeof(T) * mCount;
128 BAIL_ON_FAIL(out->write(&mCount, 0, 1), ret);
134 uint32_t count = mCount;
160 uint32_t count = mCount;
188 BAIL_ON_FAIL(out->write(&mCount, 0, 1), ret);
206 for (uint32_t i = 0; i < mCount; ++i) {
DngUtils.h 194 uint32_t mCount;
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimCtsActivity.java 48 private final int mCount;
51 mCount = count;
73 return mCount;
  /art/test/050-sync-test/src/
Main.java 92 static int mCount = 0;
113 System.out.println(mCount);
118 int count = mCount;
129 mCount = count;
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetService.java 37 private static final int mCount = 10;
52 for (int i = 0; i < mCount; i++) {
73 return mCount;

Completed in 2978 milliseconds

1 2 3