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

1 2

  /external/icu/icu4c/source/layout/
MarkArrays.cpp 22 le_uint16 mCount = SWAPW(markCount);
24 if (coverageIndex < 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/hardware/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++;
StandardDeviationVerification.java 47 private int mCount = 0;
88 if (mCount < 2) {
95 stdDevs[i] = (float) Math.sqrt(mM2s[i] / (mCount - 1));
155 mCount++;
159 mMeans[i] += delta / mCount;
FrequencyVerification.java 48 private int mCount = 0;
118 if (mCount < 2) {
124 ((double) (mMaxTimestamp - mMinTimestamp)) / (mCount - 1), TimeUnit.NANOSECONDS);
159 if (mCount == 0) {
170 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/chromium_org/third_party/angle/src/compiler/preprocessor/
Input.h 25 return mCount;
53 size_t mCount;
  /cts/tests/tests/content/src/android/content/cts/
ClipboardManagerListenerTest.java 75 private int mCount = 0;
80 mCount++;
85 return mCount;
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimCtsActivity.java 49 private final int mCount;
52 mCount = count;
74 return mCount;
  /art/test/051-thread/src/
Main.java 53 System.out.println("testThreadCapacity thread count: " + TestCapacityThread.mCount);
57 static int mCount = 0;
60 ++mCount;
  /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;
  /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;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleScannerPowerLevelActivity.java 46 private Map<Integer, Integer> mCount;
82 mCount = null;
166 if (mCount == null) {
167 mCount = new HashMap<Integer, Integer>();
169 mCount.put(i, 0);
173 Integer t = mCount.get(powerLevelBit) + 1;
174 mCount.put(powerLevelBit, t);
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 234 int mCount;
249 if (mCount <= mLastMessage) {
250 if (msg.what != mCount) {
251 failure(new RuntimeException("Expected message #" + mCount + ", received #"
253 } else if (mCount == mLastMessage) {
257 mCount++;
BinderTest.java 137 private int mCount;
165 mCount++;
168 if (mCount == 1) {
175 if (mCount == 2) {
  /cts/tests/tests/widget/src/android/widget/cts/
BaseAdapterTest.java 103 private int mCount = 0;
106 mCount = count;
110 return mCount;
AbsSpinnerTest.java 274 private int mCount = DEFAULT_COUNT;
282 return mCount;
286 mCount = count;
  /development/samples/Compass/src/com/example/android/compass/
CompassActivity.java 55 private int mCount;
231 if (mCount++ > 50) {
233 mCount = 0;
  /external/chromium_org/base/android/java/src/org/chromium/base/
ObserverList.java 48 private int mCount = 0;
71 ++mCount;
96 --mCount;
97 assert mCount >= 0;
107 mCount = 0;
139 return mCount;
146 return mCount == 0;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
SQLiteCursor.java 25 private int mCount = -1;
49 if (mCount == -1)
50 mCount = nativeGetCount(mNativeSQLiteCursor);
52 return mCount;
  /cts/tests/tests/app/src/android/app/cts/
ServiceTest.java 66 private int mCount;
93 mCount++;
95 if (mCount == 1) {
102 if (mCount == 2) {
  /development/cmds/monkey/src/com/android/commands/monkey/
Monkey.java 203 int mCount = 1000;
529 mCount = 1000;
561 System.out.println(":Monkey: seed=" + mSeed + " count=" + mCount);
608 mCount++;
623 mCount = Integer.MAX_VALUE;
709 // just in case this was latent (after mCount cycles), make sure
711 if (crashedAtCycle >= mCount) {
712 crashedAtCycle = mCount - 1;
733 if (crashedAtCycle < mCount - 1) {
735 + " of " + mCount + " using seed " + mSeed)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
dtitvfmt.cpp 781 int32_t MCount = 0;
785 int32_t mCount = 0;
803 ++MCount;
840 ++mCount;
870 if ( MCount != 0 ) {
871 if ( MCount < 3 ) {
875 for ( i = 0; i < MCount && i < MAX_M_COUNT; ++i ) {
901 if ( mCount != 0 ) {
    [all...]

Completed in 716 milliseconds

1 2