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

  /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...]
  /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/Source/WebCore/rendering/
CounterNode.cpp 183 int oldCount = node->m_countInParent;
185 if (oldCount == newCount)
  /external/collada/include/dae/
daeArray.h 371 size_t oldCount = _count;
373 for (size_t i = oldCount; i < _count; i++)
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 751 int oldCount = m_scrollbarsAvoidingResizer;
759 if ((oldCount > 0 && m_scrollbarsAvoidingResizer == 0) ||
760 (oldCount == 0 && m_scrollbarsAvoidingResizer > 0))
    [all...]
  /external/collada/src/dae/
daeElement.cpp 700 size_t oldCount = elts.getCount();
703 elts[oldCount + j] = children[j];
  /frameworks/base/core/java/android/widget/
FastScroller.java 435 void onItemCountChanged(int oldCount, int newCount) {
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 390 milliseconds