/external/guava/guava/src/com/google/common/collect/ |
AbstractMapBasedMultiset.java | 240 long newCount = (long) oldCount + (long) occurrences; 241 checkArgument(newCount <= Integer.MAX_VALUE, 242 "too many occurrences: %s", newCount);
|
Multiset.java | 166 * @param newCount the desired count of the element in this multiset 169 * {@code oldCount == newCount}. 170 * @throws IllegalArgumentException if {@code oldCount} or {@code newCount} is 174 * oldCount} and {@code newCount} are both zero, the implementor may 177 boolean setCount(E element, int oldCount, int newCount);
|
ComputingConcurrentHashMap.java | 101 int newCount = this.count - 1; 129 this.count = newCount; // write-volatile
|
Constraints.java | 363 @Override public boolean setCount(E element, int oldCount, int newCount) { 365 return delegate.setCount(element, oldCount, newCount);
|
Synchronized.java | 456 public boolean setCount(E element, int oldCount, int newCount) { 458 return delegate().setCount(element, oldCount, newCount);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
AbstractMapBasedMultiset.java | 237 long newCount = (long) oldCount + (long) occurrences; 238 checkArgument(newCount <= Integer.MAX_VALUE, 239 "too many occurrences: %s", newCount);
|
/external/webrtc/src/system_wrappers/source/ |
trace_impl.cc | 668 const WebRtc_UWord32 newCount) const 703 static_cast<long unsigned int> (newCount), 711 const WebRtc_UWord32 newCount) const 736 static_cast<long unsigned int> (newCount),
|
/external/webkit/Source/WebKit/win/ |
WebHistory.cpp | 507 int newCount = CFArrayGetCount(entries); 510 *count = newCount; 514 if (*count < newCount) { 515 *count = newCount; 519 *count = newCount; 520 for (int i = 0; i < newCount; i++) { [all...] |
/packages/apps/Email/src/com/android/email/provider/ |
ContentCache.java | 131 int newCount; 136 newCount = refCount - 1; 137 mMap.put(object, newCount); 139 newCount = 0; 142 return newCount;
|
/external/srec/portable/src/ |
pmemory_ext.c | 359 void PortMemGetCount(int *newCount, int *deleteCount) 361 *newCount = portNewCount;
|
/packages/inputmethods/LatinIME/native/jni/src/ |
unigram_dictionary.h | 92 const uint8_t *bigramFilter, Correction *correction, int *newCount,
|
unigram_dictionary.cpp | [all...] |
/external/compiler-rt/BlocksRuntime/ |
runtime.c | 461 int32_t newCount; 463 newCount = latching_decr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK; 464 if (newCount > 0) return;
|
/frameworks/base/core/jni/ |
android_util_Process.cpp | 622 jsize newCount = (curCount == 0) ? 10 : (curCount*2); 623 jintArray newArray = env->NewIntArray(newCount); 635 curCount = newCount;
|
/frameworks/compile/libbcc/runtime/BlocksRuntime/ |
runtime.c | 462 int32_t newCount; 464 newCount = latching_decr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK; 465 if (newCount > 0) return;
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
SlotView.java | 286 int newCount = 0; 291 if ((r & RENDER_MORE_PASS) != 0) requestedSlot[newCount++] = i; 293 requestCount = newCount;
|
/external/bison/build-aux/ |
texinfo.tex | [all...] |
/external/e2fsprogs/doc/ |
texinfo.tex | [all...] |
/external/grub/docs/ |
texinfo.tex | [all...] |
/external/libffi/ |
texinfo.tex | [all...] |
/ndk/sources/host-tools/make-3.81/config/ |
texinfo.tex | [all...] |
/libcore/luni/src/main/java/java/io/ |
RandomAccessFile.java | 660 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count); 661 seek(currentPos + newCount); 662 return newCount;
|
/libcore/luni/src/main/java/java/util/ |
Vector.java | 831 int newCount = elementCount - (end - start); 832 Arrays.fill(elementData, newCount, elementCount, null); 833 elementCount = newCount; [all...] |
/external/e2fsprogs/lib/et/ |
texinfo.tex | 473 \newcount\fontdepth \fontdepth=0 720 \newcount \itemno [all...] |
/frameworks/base/core/java/android/widget/ |
RemoteViewsAdapter.java | [all...] |