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

1 2 3 4 5 6 7

  /packages/apps/DeskClock/src/com/android/deskclock/data/
WidgetDAO.java 39 final int oldCount = prefs.getInt(key, 0);
45 return count - oldCount;
  /external/icu/icu4c/source/test/intltest/
numbertest_modifiers.cpp 161 int32_t oldCount = sb.codePointCount();
168 sb.codePointCount() - oldCount, mod.getCodePointCount(status));
  /external/skia/src/core/
SkCachedData.cpp 18 int32_t oldCount = sk_atomic_inc(&gCachedDataCounter);
19 SkDebugf("SkCachedData inc %d\n", oldCount + 1);
23 int32_t oldCount = sk_atomic_dec(&gCachedDataCounter);
24 SkDebugf("SkCachedData dec %d\n", oldCount - 1);
SkPath.cpp     [all...]
  /external/skqp/src/core/
SkCachedData.cpp 18 int32_t oldCount = sk_atomic_inc(&gCachedDataCounter);
19 SkDebugf("SkCachedData inc %d\n", oldCount + 1);
23 int32_t oldCount = sk_atomic_dec(&gCachedDataCounter);
24 SkDebugf("SkCachedData dec %d\n", oldCount - 1);
SkPath.cpp     [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
MultisetRemoveTester.java 106 int oldCount = getMultiset().count(samples.e0);
108 oldCount, getMultiset().remove(samples.e0, 0));
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetRemoveTester.java 109 int oldCount = getMultiset().count(samples.e0);
111 oldCount, getMultiset().remove(samples.e0, 0));
  /external/javassist/src/main/javassist/bytecode/
ByteStream.java 52 int oldCount = count;
53 buf[oldCount] = (byte)b;
54 count = oldCount + 1;
59 int oldCount = count;
60 buf[oldCount] = (byte)(s >>> 8);
61 buf[oldCount + 1] = (byte)s;
62 count = oldCount + 2;
67 int oldCount = count;
68 buf[oldCount] = (byte)(i >>> 24);
69 buf[oldCount + 1] = (byte)(i >>> 16)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Frame.java 187 int oldCount = oldDims == null ? 0 : oldDims.length;
189 if (oldCount != newCount) {
190 throw new IllegalArgumentException("Cannot resize " + oldCount + "-dimensional "
  /external/deqp/framework/delibs/decpp/
deSharedPtr.hpp 485 deInt32 oldCount, newCount;
490 oldCount = state->strongRefCount;
491 if (oldCount == 0)
493 newCount = oldCount+1;
494 } while (deAtomicCompareExchange32((deUint32 volatile*)&state->strongRefCount, (deUint32)oldCount, (deUint32)newCount) != (deUint32)oldCount);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
ModifierTest.java 150 int oldCount = sb.codePointCount();
151 mod.apply(sb, 0, oldCount);
156 sb.codePointCount() - oldCount, mod.getCodePointCount());
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
ModifierTest.java 147 int oldCount = sb.codePointCount();
148 mod.apply(sb, 0, oldCount);
153 sb.codePointCount() - oldCount, mod.getCodePointCount());
  /external/skia/include/private/
SkTDArray.h 177 int oldCount = fCount;
180 src + count <= fArray || fArray + oldCount <= src);
184 memcpy(fArray + oldCount, src, sizeof(T) * count);
187 return fArray + oldCount;
202 size_t oldCount = fCount;
205 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
  /external/skqp/include/private/
SkTDArray.h 177 int oldCount = fCount;
180 src + count <= fArray || fArray + oldCount <= src);
184 memcpy(fArray + oldCount, src, sizeof(T) * count);
187 return fArray + oldCount;
202 size_t oldCount = fCount;
205 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
RecyclerViewActivity.java 201 final int oldCount = getChildCount();
203 if (oldCount == 0) {
AnimatedRecyclerView.java 575 final int oldCount = getChildCount();
577 if (oldCount == 0) {
  /libcore/tools/upstream/src/main/java/libcore/
CompareUpstreams.java 91 Integer oldCount = result.get(match);
92 if (oldCount == null) {
93 oldCount = 0;
95 result.put(match, oldCount + 1);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CollationElementIterator.java 600 Integer oldCount = maxExpansions.get(lastHalf);
601 if (oldCount == null || count > oldCount) {
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
CollationElementIterator.java 617 Integer oldCount = maxExpansions.get(lastHalf);
618 if (oldCount == null || count > oldCount) {
  /packages/experimental/KBars/app/src/main/java/js/kbars/
TouchTrackingLayout.java 278 int oldCount = this.mScribbleCounts[pid];
279 if (oldCount + 4 >= MAX_POINTS) {
283 if (oldCount == 0) {
284 pts[oldCount + 0] = x;
285 pts[oldCount + 1] = y;
290 pts[oldCount + 0] = x;
291 pts[oldCount + 1] = y;
292 pts[oldCount + 2] = x;
293 pts[oldCount + 3] = y;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UnicodeSetStringSpan.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeSetStringSpan.java     [all...]
  /frameworks/native/libs/gui/tests/
Surface_test.cpp     [all...]
  /external/tpm2/
CryptUtil.c     [all...]

Completed in 639 milliseconds

1 2 3 4 5 6 7