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

1 2

  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
LongSamplingCounterTest.java 57 private LongSamplingCounter mCounter;
62 mCounter = new LongSamplingCounter(mTimeBase);
70 mCounter.writeToParcel(parcel);
76 mCounter = new LongSamplingCounter(mTimeBase, parcel);
77 assertEquals(COUNT, mCounter.mCount);
78 assertEquals(CURRENT_COUNT, mCounter.mCurrentCount);
86 mCounter.writeSummaryFromParcelLocked(parcel);
92 mCounter.readSummaryFromParcelLocked(parcel);
93 assertEquals(COUNT, mCounter.mCount);
100 mCounter.onTimeStarted(0, 0, 0)
    [all...]
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/
EventIdsTest.java 115 Map<Integer, Integer> mCounter = new HashMap<Integer, Integer>();
119 mCounter.put(propertyId, get(propertyId) + 1);
123 Integer val = mCounter.get(propertyId);
  /developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/
MainActivity.java 38 private int mCounter = 0;
74 mCounter++;
76 mSwitcher.setText(String.valueOf(mCounter));
82 mSwitcher.setCurrentText(String.valueOf(mCounter));
  /developers/samples/android/ui/views/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/
MainActivity.java 38 private int mCounter = 0;
74 mCounter++;
76 mSwitcher.setText(String.valueOf(mCounter));
82 mSwitcher.setCurrentText(String.valueOf(mCounter));
  /development/samples/browseable/TextSwitcher/src/com.example.android.textswitcher/
MainActivity.java 38 private int mCounter = 0;
74 mCounter++;
76 mSwitcher.setText(String.valueOf(mCounter));
82 mSwitcher.setCurrentText(String.valueOf(mCounter));
  /device/google/contexthub/util/common/
ring.h 56 int32_t mCounter;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TextSwitcher1.java 40 private int mCounter = 0;
65 mCounter++;
70 mSwitcher.setText(String.valueOf(mCounter));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
MotionSensorWTime.java 44 private int mCounter = 0;
92 if (mCounter < 3 && mCounter >= 0) {
93 mTemp[0][mCounter] = mValues[0];
94 mTemp[1][mCounter] = mValues[1];
95 mTemp[2][mCounter] = mValues[2];
98 mCounter = (mCounter + 1) % 3;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcFailBringUp.java 38 int mCounter;
53 mCounter = intent.getIntExtra(COUNTER, DEFAULT_COUNTER);
64 mCounter = counter;
71 return "{mCounter=" + mCounter +
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryCommitter.java 45 private int mCounter;
72 mCounter++;
73 if (mCounter >= 20) {
75 mCounter = 0;
  /packages/services/Car/tests/VmsPublisherClientSample/src/com/google/android/car/vms/publisher/
VmsPublisherClientSampleService.java 36 private byte mCounter = 0;
77 publish(TEST_LAYER, PUBLISHER_ID, new byte[]{mCounter});
78 ++mCounter;
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 40 private AtomicInteger mCounter = new AtomicInteger();
75 int val = mCounter.get();
102 mCounter.incrementAndGet();
  /frameworks/wilhelm/tests/sandbox/
multithread.c 32 SLuint32 mCounter;
51 ++ta->mCounter;
141 ta->mCounter = 0;
150 ta->mCounter = 0;
166 printf("[%d]=%u ", j, ta->mCounter);
178 printf("[%d]=%u ", j, ta->mCounter);
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/
TestAccountAuthenticator.java 43 private volatile int mCounter = 0;
170 AccountManager.KEY_AUTHTOKEN, Fixtures.PREFIX_TOKEN + mCounter++);
180 AccountManager.KEY_AUTHTOKEN, Fixtures.PREFIX_TOKEN + mCounter++);
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
CustomArrayAdapter.java 52 int mCounter;
73 mCounter = 0;
75 mIdMap.put(mData.get(i), mCounter++);
80 mIdMap.put(mData.get(position), ++mCounter);
  /frameworks/av/media/libstagefright/foundation/tests/
AData_test.cpp 41 EventCounter(int *counter, int magic=1234) : mCounter(counter), mMagic(magic) { }
42 virtual ~EventCounter() { ++*mCounter; mMagic = 0; }
45 int *mCounter;
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
KeyguardSliceProviderTest.java 151 private int mCounter;
178 return super.getFormattedDate() + mCounter++;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherThread.java 25 private int mCounter = 0;
46 mCounter = 0;
155 return (mCounter < modeAr.length);
168 mCounter = (hasNextMode()) ? mCounter : 0;
169 return modeAr[mCounter++];
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
EventResultPersister.java 67 private int mCounter;
80 if (mCounter == Integer.MAX_VALUE) {
84 mCounter++;
87 return mCounter - 1;
140 mCounter = GENERATE_NEW_ID + 1;
150 mCounter = readIntAttribute(parser, "counter");
232 counter = mCounter;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/anomaly/checker/
WakeupAlarmAnomalyDetectorTest.java 92 private BatteryStats.Counter mCounter;
204 doReturn(NORMAL_WAKEUP_COUNT).when(mCounter).getCountLocked(anyInt());
207 alarms.put("1", mCounter);
208 alarms.put("2", mCounter);
219 doReturn(NORMAL_WAKEUP_COUNT).when(mCounter).getCountLocked(anyInt());
223 alarms.put("allowedTag", mCounter);
  /tools/tradefederation/core/src/com/android/tradefed/util/sl4a/
Sl4aClient.java 60 private Long mCounter = 1L;
303 message.put("id", mCounter);
310 mCounter++;
  /packages/services/Car/tests/DirectRenderingClusterSample/src/android/car/cluster/sample/
NetworkedVirtualDisplay.java 82 private final DebugCounter mCounter = new DebugCounter();
190 mCounter.outputBuffers++;
197 mCounter.bufferErrors++;
253 mCounter.clientsDisconnected++;
318 mCounter.clientsConnected++;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/device/
UsbDeviceTestActivity.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java     [all...]
  /prebuilts/tools/common/m2/repository/com/puppycrawl/tools/checkstyle/5.9/
checkstyle-5.9.jar 

Completed in 2045 milliseconds

1 2