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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringBuffer.h 54 void shrink(unsigned newLength)
56 if (m_data->length() == newLength)
58 m_data->truncateAssumingIsolated(newLength);
61 void resize(unsigned newLength)
65 m_data = StringImpl::createUninitialized(newLength, characters);
68 if (newLength > m_data->length()) {
70 m_data = StringImpl::reallocate(m_data.release(), newLength, characters);
73 shrink(newLength);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 499 public static byte[] copyOf(byte[] data, int newLength)
501 byte[] tmp = new byte[newLength];
503 if (newLength < data.length)
505 System.arraycopy(data, 0, tmp, 0, newLength);
515 public static char[] copyOf(char[] data, int newLength)
517 char[] tmp = new char[newLength];
519 if (newLength < data.length)
521 System.arraycopy(data, 0, tmp, 0, newLength);
531 public static int[] copyOf(int[] data, int newLength)
533 int[] tmp = new int[newLength];
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolSorter.java 78 int newLength = 1;
89 newIndex = newLength;
94 newConstantPool[newLength++] = constant;
101 newConstantPool[newLength++] = null;
112 System.arraycopy(newConstantPool, 0, programClass.constantPool, 0, newLength);
115 for (int index = newLength; index < constantPoolCount; index++)
120 programClass.u2constantPoolCount = newLength;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributesBuilder.h 56 TextPosition(SVGTextPositioningElement* newElement = 0, unsigned newStart = 0, unsigned newLength = 0)
59 , length(newLength)
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioChannel.cpp 44 void AudioChannel::resizeSmaller(size_t newLength)
46 ASSERT(newLength <= m_length);
47 if (newLength <= m_length)
48 m_length = newLength;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResizableIntArray.java 81 public void setLength(final int newLength) {
82 ensureCapacity(newLength);
83 mLength = newLength;
117 final int newLength = currentLength + length;
118 ensureCapacity(newLength);
120 mLength = newLength;
  /external/chromium_org/third_party/icu/source/common/
unistr_case.cpp 135 int32_t newLength;
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(),
160 setLength(newLength);
161 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE));
charstr.cpp 30 CharString &CharString::truncate(int32_t newLength) {
31 if(newLength<0) {
32 newLength=0;
34 if(newLength<len) {
35 buffer[len=newLength]=0;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebAudioBus.cpp 65 void WebAudioBus::resizeSmaller(size_t newLength)
70 ASSERT(newLength <= length());
71 m_private->resizeSmaller(newLength);
  /external/icu4c/common/
unistr_case.cpp 126 int32_t newLength;
129 newLength = stringCaseMapper(csm, getArrayStart(), getCapacity(),
131 setLength(newLength);
132 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE));
charstr.cpp 30 CharString &CharString::truncate(int32_t newLength) {
31 if(newLength<0) {
32 newLength=0;
34 if(newLength<len) {
35 buffer[len=newLength]=0;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 78 static <T> T[] arraysCopyOf(T[] original, int newLength) {
79 T[] copy = newArray(original, newLength);
81 original, 0, copy, 0, Math.min(original.length, newLength));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 108 unsigned newLength = 0;
114 newLength = UINT_MAX;
116 newLength = static_cast<unsigned>(v);
122 imp->setLength(newLength, es);
  /external/chromium_org/third_party/WebKit/public/platform/
WebAudioBus.h 54 WEBKIT_EXPORT void resizeSmaller(size_t newLength);
  /libcore/luni/src/main/java/java/util/
Arrays.java     [all...]
  /external/guava/guava/src/com/google/common/collect/
ObjectArrays.java 105 static <T> T[] arraysCopyOf(T[] original, int newLength) {
106 T[] copy = newArray(original, newLength);
108 original, 0, copy, 0, Math.min(original.length, newLength));
  /external/icu4c/tools/toolutil/
denseranges.cpp 50 void truncate(int32_t newLength) {
51 if(newLength<length) {
52 length=newLength;
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 158 int newLength = this.values.length;
163 newLength++;
169 if (newLength == other.values.length)
176 //if (newLength == this.values.length)
182 int[] newValues = new int[newLength];
  /external/chromium_org/third_party/icu/source/test/intltest/
winnmtst.cpp 151 int newLength;
154 newLength = _vscwprintf(fmt, args);
157 nBuffer = NEW_ARRAY(UChar, newLength + 1);
160 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
193 int newLength = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
195 buffer = NEW_ARRAY(UChar, newLength);
197 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
207 int newLength = GetNumberFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
209 buffer = NEW_ARRAY(UChar, newLength);
211 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
    [all...]
  /external/icu4c/test/intltest/
winnmtst.cpp 151 int newLength;
154 newLength = _vscwprintf(fmt, args);
157 nBuffer = NEW_ARRAY(UChar, newLength + 1);
160 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
193 int newLength = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
195 buffer = NEW_ARRAY(UChar, newLength);
197 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
207 int newLength = GetNumberFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
209 buffer = NEW_ARRAY(UChar, newLength);
211 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.cpp 205 unsigned long long newLength = m_totalBytes * 2;
206 if (newLength > numeric_limits<unsigned>::max())
207 newLength = numeric_limits<unsigned>::max();
209 ArrayBuffer::create(static_cast<unsigned>(newLength), 1);
213 m_totalBytes = static_cast<unsigned>(newLength);
  /frameworks/av/media/mtp/
MtpPacket.cpp 57 int newLength = length + mAllocationIncrement;
58 mBuffer = (uint8_t *)realloc(mBuffer, newLength);
63 mBufferSize = newLength;
  /dalvik/vm/compiler/
Utility.cpp 112 int newLength = gList->numAllocated;
113 if (newLength < 128) {
114 newLength <<= 1;
116 newLength += 128;
119 (intptr_t *) dvmCompilerNew(sizeof(intptr_t) * newLength, true);
121 gList->numAllocated = newLength;
  /external/chromium_org/third_party/icu/source/i18n/
windtfmt.cpp 245 int newLength = GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, NULL, 0);
247 buffer = NEW_ARRAY(UChar, newLength);
248 GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, newLength);
271 int newLength = GetTimeFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, NULL, 0);
273 buffer = NEW_ARRAY(UChar, newLength);
274 GetDateFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, buffer, newLength);
winnmfmt.cpp 257 int newLength;
260 newLength = _vscwprintf(fmt, args);
263 nBuffer = NEW_ARRAY(UChar, newLength + 1);
266 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
308 int newLength = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, NULL, 0);
310 buffer = NEW_ARRAY(UChar, newLength);
312 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength);
328 int newLength = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, NULL, 0);
330 buffer = NEW_ARRAY(UChar, newLength);
332 GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, newLength);
    [all...]

Completed in 971 milliseconds

1 2 3 4 5 6