HomeSort by relevance Sort by last modified time
    Searched refs:getCapacity (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/third_party/icu/source/common/
charstr.cpp 62 if(sLength>=(buffer.getCapacity()-len)) {
69 sLength>=(buffer.getCapacity()-len)
90 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL
96 resultCapacity=buffer.getCapacity()-len-1;
105 len+=s.extract(0, 0x7fffffff, buffer.getAlias()+len, buffer.getCapacity()-len, US_INV);
116 if(capacity>buffer.getCapacity()) {
118 desiredCapacityHint=capacity+buffer.getCapacity();
unistr_case.cpp 139 newLength = ustr_toLower(csp, getArrayStart(), getCapacity(),
143 newLength = ustr_toUpper(csp, getArrayStart(), getCapacity(),
150 newLength = ustr_toTitle(csp, getArrayStart(), getCapacity(),
155 newLength = ustr_foldCase(csp, getArrayStart(), getCapacity(),
locdispnames.cpp 64 buffer, result.getCapacity(),
76 buffer, result.getCapacity(),
104 buffer, result.getCapacity(),
116 buffer, result.getCapacity(),
144 buffer, result.getCapacity(),
156 buffer, result.getCapacity(),
184 buffer, result.getCapacity(),
196 buffer, result.getCapacity(),
224 buffer, result.getCapacity(),
236 buffer, result.getCapacity(),
    [all...]
  /external/icu4c/common/
charstr.cpp 62 if(sLength>=(buffer.getCapacity()-len)) {
69 sLength>=(buffer.getCapacity()-len)
90 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL
96 resultCapacity=buffer.getCapacity()-len-1;
105 len+=s.extract(0, 0x7fffffff, buffer.getAlias()+len, buffer.getCapacity()-len, US_INV);
116 if(capacity>buffer.getCapacity()) {
118 desiredCapacityHint=capacity+buffer.getCapacity();
locdispnames.cpp 64 buffer, result.getCapacity(),
76 buffer, result.getCapacity(),
104 buffer, result.getCapacity(),
116 buffer, result.getCapacity(),
144 buffer, result.getCapacity(),
156 buffer, result.getCapacity(),
184 buffer, result.getCapacity(),
196 buffer, result.getCapacity(),
224 buffer, result.getCapacity(),
236 buffer, result.getCapacity(),
    [all...]
unistr_case.cpp 129 newLength = stringCaseMapper(csm, getArrayStart(), getCapacity(),
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 102 * larger than {@link #getCapacity()} and does nothing else.
108 if (getCapacity() < entryCount) {
109 throw new DirectoryFullException(getCapacity(), entryCount);
AbstractDirectory.java 149 public final int getCapacity() {
215 getCapacity() * FatDirectoryEntry.SIZE);
246 getCapacity() * FatDirectoryEntry.SIZE);
251 for (int i=0; i < getCapacity(); i++) {
271 if (getSize() == getCapacity()) {
272 changeSize(getCapacity() + 1);
281 if (getSize() + entries.length > getCapacity()) {
ClusterChainDirectory.java 131 getCapacity(), entryCount);
  /cts/suite/audio_quality/lib/src/audio/
AudioSignalFactory.cpp 42 buffer->setSize(buffer->getCapacity());
66 buffer->setSize(buffer->getCapacity());
86 buffer->setSize(buffer->getCapacity());
AudioProtocol.cpp 159 if (len > (int)param->mBuffer->getCapacity()) {
160 LOGE("received data %d exceeding buffer capacity %d", len, param->mBuffer->getCapacity());
  /external/replicaisland/src/com/replica/replicaisland/
ObjectPool.java 60 return mAvailable.getCapacity() - mAvailable.getCount();
SpriteAnimation.java 46 assert frames.getCount() == frames.getCapacity();
FixedSizeArray.java 29 * larger than getCount() but smaller than getCapacity() can't be used on their own.
264 public int getCapacity() {
  /external/icu4c/i18n/
sortkey.cpp 63 (count > getCapacity() && reallocate(count, 0) == NULL)) {
84 if (length > getCapacity() && reallocate(length, 0) == NULL) {
113 // U_ASSERT(newLength >= 0 && newLength <= getCapacity());
157 if (length > getCapacity() && reallocate(length, 0) == NULL) {
  /cts/suite/audio_quality/lib/include/audio/
Buffer.h 39 inline size_t getCapacity() {
  /frameworks/base/graphics/java/android/graphics/drawable/
LevelListDrawable.java 167 mLows = new int[getCapacity()];
168 mHighs = new int[getCapacity()];
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 57 public int getCapacity() {
227 + getCapacity();
Frame.java 62 public int getCapacity() {
  /external/icu4c/i18n/unicode/
sortkey.h 261 int32_t getCapacity() const {
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 127 public int getCapacity() {
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 106 public synchronized int getCapacity() {
SparseArrayBitmapPool.java 129 public synchronized int getCapacity() {
  /external/chromium_org/third_party/icu/source/test/intltest/
nptrans.cpp 208 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
216 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
  /external/icu4c/test/intltest/
nptrans.cpp 208 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
216 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);

Completed in 847 milliseconds

1 2 3