HomeSort by relevance Sort by last modified time
    Searched refs:oldCount (Results 1 - 20 of 20) sorted by null

  /external/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 247 int oldCount;
249 oldCount = 0;
252 oldCount = frequency.get();
253 long newCount = (long) oldCount + (long) occurrences;
259 return oldCount;
273 int oldCount = frequency.get();
276 if (oldCount > occurrences) {
279 numberRemoved = oldCount;
285 return oldCount;
293 int oldCount;
    [all...]
ForwardingMultiset.java 73 public boolean setCount(E element, int oldCount, int newCount) {
74 return delegate().setCount(element, oldCount, newCount);
Multisets.java 140 @Override public boolean setCount(E element, int oldCount, int newCount) {
252 public boolean setCount(E element, int oldCount, int newCount) {
253 return setCountImpl(this, element, oldCount, newCount);
443 int oldCount = self.count(element);
445 int delta = count - oldCount;
452 return oldCount;
456 Multiset<E> self, E element, int oldCount, int newCount) {
457 checkNonnegative(oldCount, "oldCount");
460 if (self.count(element) == oldCount) {
    [all...]
ConcurrentHashMultiset.java 316 * only if the count is currently {@code oldCount}. If {@code element} does
317 * not appear in the multiset exactly {@code oldCount} times, no changes will
322 * {@code oldCount == newCount}, the method will return {@code true} if
324 * @throws IllegalArgumentException if {@code oldCount} or {@code newCount} is
327 @Override public boolean setCount(E element, int oldCount, int newCount) {
328 checkNonnegative(oldCount, "oldCount");
331 if (oldCount == 0) {
335 return countMap.remove(element, oldCount);
338 if (oldCount == 0)
    [all...]
Multiset.java 152 * current count. If the current count is not {@code oldCount}, no change is
157 * @param oldCount the expected present count of the element in this multiset
161 * {@code oldCount == newCount}.
162 * @throws IllegalArgumentException if {@code oldCount} or {@code newCount} is
166 * oldCount} and {@code newCount} are both zero, the implementor may
169 boolean setCount(E element, int oldCount, int newCount);
AbstractMultiset.java 152 public boolean setCount(E element, int oldCount, int newCount) {
153 return setCountImpl(this, element, oldCount, newCount);
LinkedListMultimap.java 641 int oldCount = count(key);
647 return oldCount;
654 public boolean setCount(K element, int oldCount, int newCount) {
655 return setCountImpl(this, element, oldCount, newCount);
ImmutableMultiset.java 236 public boolean setCount(E element, int oldCount, int newCount) {
Synchronized.java 542 public boolean setCount(E element, int oldCount, int newCount) {
544 return delegate().setCount(element, oldCount, newCount);
    [all...]
  /external/skia/src/animator/
SkAnimateActive.cpp 66 int oldCount = fAnimators.count();
70 int total = oldCount + newCount;
74 memset(&fInterpolators.begin()[oldCount], 0, newCount * sizeof(SkOperandInterpolator*));
75 for (index = oldCount; index < total; index++)
78 memcpy(&fAnimators[oldCount], animates.begin(), sizeof(fAnimators[0]) *
81 initState(apply, oldCount);
86 SkActive::SkState& testState = fState[oldCount + index];
87 for (int inner = 0; inner < oldCount; inner++) {
106 saveIndex -= oldCount;
113 oldCount--
    [all...]
SkTypedArray.cpp 113 unsigned oldCount = fCount;
121 memcpy(fArray + oldCount, src, sizeof(int32_t) * count);
123 return fArray + oldCount;
164 int oldCount = fCount;
167 memmove(dst + count, dst, sizeof(int32_t) * (oldCount - index));
SkAnimateActive.h 47 void appendSave(int oldCount);
SkDisplayApply.cpp 105 int oldCount = fActive->fAnimators.count();
108 fActive->appendSave(oldCount);
110 for (int index = oldCount; index < newCount; index++)
  /external/skia/include/core/
SkTDArray.h 154 unsigned oldCount = fCount;
157 src + count <= fArray || fArray + oldCount <= src);
161 memcpy(fArray + oldCount, src, sizeof(T) * count);
164 return fArray + oldCount;
179 int oldCount = fCount;
182 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
  /external/webkit/WebCore/rendering/
CounterNode.cpp 120 int oldCount = node->m_countInParent;
122 if (oldCount == newCount)
  /frameworks/base/core/java/android/database/
BulkCursorToCursorAdaptor.java 153 int oldCount = mCount;
  /external/webkit/WebCore/platform/
ScrollView.cpp 586 int oldCount = m_scrollbarsAvoidingResizer;
594 if ((oldCount > 0 && m_scrollbarsAvoidingResizer == 0) ||
595 (oldCount == 0 && m_scrollbarsAvoidingResizer > 0))
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AllApps3D.java     [all...]
  /packages/apps/Gallery3D/src/com/cooliris/cache/
CacheService.java     [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 1020 milliseconds