Searched refs:newLength (Results 26 - 50 of 63) sorted by relevance

123

/external/icu4c/common/
H A Ducharstriebuilder.cpp347 int32_t newLength=ucharsLength+1; local
348 if(ensureCapacity(newLength)) {
349 ucharsLength=newLength;
357 int32_t newLength=ucharsLength+length; local
358 if(ensureCapacity(newLength)) {
359 ucharsLength=newLength;
H A Dcharstr.h73 CharString &truncate(int32_t newLength);
H A Dutext.cpp2268 int32_t newLength = rep->length(); local
2269 int32_t lengthDelta = newLength - oldLength;
2532 int32_t newLength = us->length(); local
2536 ut->chunkLength = newLength;
2537 ut->chunkNativeLimit = newLength;
2538 ut->nativeIndexingLimit = newLength;
2541 int32_t lengthDelta = newLength - oldLength;
H A Duts46.cpp552 int32_t newLength=processLabel(dest, labelStart, labelLength, local
560 destLength+=newLength-labelLength;
561 labelLimit=labelStart+=newLength+1;
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h448 WebRtc_Word32 SetLength(const WebRtc_UWord32 newLength);
453 WebRtc_UWord32& newLength,
460 * Copy buffer: If newLength is bigger than allocated size, a new buffer of size length
465 * Copy buffer: If newLength is bigger than allocated size, a new buffer of size length
586 VideoFrame::SetLength(const WebRtc_UWord32 newLength) argument
588 if (newLength >_bufferSize )
592 _bufferLength = newLength;
620 VideoFrame::Swap(WebRtc_UWord8*& newMemory, WebRtc_UWord32& newLength, WebRtc_UWord32& newSize) argument
626 _bufferLength = newLength;
629 newLength
[all...]
/external/webkit/Source/WebCore/dom/
H A DInputElement.cpp148 unsigned newLength = numCharactersInGraphemeClusters(string, maxLength); local
149 for (unsigned i = 0; i < newLength; ++i) {
152 newLength = i;
156 return string.left(newLength);
H A DNamedNodeMap.cpp229 unsigned newLength = other.length(); local
230 m_attributes.resize(newLength);
231 for (unsigned i = 0; i < newLength; i++)
238 for (unsigned i = 0; i < newLength; i++)
H A DCharacterData.cpp171 void CharacterData::setDataAndUpdate(PassRefPtr<StringImpl> newData, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength) argument
174 document()->frame()->selection()->textWillBeReplaced(this, offsetOfReplacedData, oldLength, newLength);
H A DDocument.cpp3761 int newLength = newDomain.length(); local
3763 if (newLength >= oldLength) {
3770 if (test[oldLength - newLength - 1] != '.') {
3777 test.remove(0, oldLength - newLength);
/external/webkit/Source/JavaScriptCore/runtime/
H A DOperations.h179 unsigned newLength = ropeBuilder.length(); local
180 if (newLength < length)
182 length = newLength;
225 unsigned newLength = ropeBuilder.length(); local
226 if (newLength < length)
228 length = newLength;
H A DJSArray.h159 bool increaseVectorLength(unsigned newLength);
160 bool increaseVectorPrefixLength(unsigned newLength);
/external/icu4c/i18n/
H A Dsortkey.cpp108 void CollationKey::setLength(int32_t newLength) { argument
110 fCount = newLength;
H A Drbt_rule.cpp451 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart); local
452 int32_t lenDelta = newLength - (keyLimit - pos.start);
H A Drematch.cpp1493 int32_t newLength = us->length(); local
1498 ut->chunkLength = newLength;
1499 ut->chunkNativeLimit = newLength;
1500 ut->nativeIndexingLimit = newLength;
/external/icu4c/tools/toolutil/
H A Dpkg_gencmn.c493 int32_t newLength; local
498 newLength = (length + 1 + (int32_t)uprv_strlen(source));
499 fullPath = uprv_malloc(newLength);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DGenerateResults.java350 int newLength = confLength;
359 newLength--;
361 if (newLength < confLength) {
362 String[][] newDescriptors = new String[newLength][2];
363 for (int j=0, c=0; j<newLength; j++) {
/external/okhttp/src/main/java/libcore/io/
H A DDiskLruCache.java470 long newLength = clean.length();
471 entry.lengths[i] = newLength;
472 size = size - oldLength + newLength;
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp317 unsigned newLength = getRangeSize(replacementRange); local
322 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp141 gint newLength = 0; local
142 GOwnPtr<gchar> utf8Text(utf16ToUtf8(characters, length, newLength));
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditor.java522 int newLength = mapInstructions(oldCode,
528 codeAttribute.code = new byte[newLength];
532 instructionWriter.reset(newLength);
542 return newLength;
/external/webkit/Source/WebCore/editing/
H A DSelectionController.h137 void textWillBeReplaced(CharacterData*, unsigned offset, unsigned oldLength, unsigned newLength);
H A DSelectionController.cpp282 static bool shouldRemovePositionAfterAdoptingTextReplacement(Position& position, EndPointType type, CharacterData* node, unsigned offset, unsigned oldLength, unsigned newLength) argument
296 position.moveToOffset(positionOffset - oldLength + newLength);
301 void SelectionController::textWillBeReplaced(CharacterData* node, unsigned offset, unsigned oldLength, unsigned newLength) argument
311 bool shouldRemoveBase = shouldRemovePositionAfterAdoptingTextReplacement(base, m_selection.isBaseFirst() ? EndPointIsStart : EndPointIsEnd, node, offset, oldLength, newLength);
312 bool shouldRemoveExtent = shouldRemovePositionAfterAdoptingTextReplacement(extent, m_selection.isBaseFirst() ? EndPointIsEnd : EndPointIsStart, node, offset, oldLength, newLength);
313 bool shouldRemoveStart = shouldRemovePositionAfterAdoptingTextReplacement(start, EndPointIsStart, node, offset, oldLength, newLength);
314 bool shouldRemoveEnd = shouldRemovePositionAfterAdoptingTextReplacement(end, EndPointIsEnd, node, offset, oldLength, newLength);
/external/webkit/Source/WebCore/inspector/
H A DInspectorStyleSheet.cpp224 unsigned newLength = propertyText.length();
225 propertyLengthDelta = newLength - oldLength;
/external/icu4c/common/unicode/
H A Dunistr.h2375 * [<TT>newStart</TT>, <TT>newStart + newLength</TT>)
2384 * @param newLength the length of the replacement range in <TT>newText</TT>
2395 int32_t newLength);
2656 * must be matched with calls to releaseBuffer(newLength).
2669 * and releaseBuffer(newLength), the following applies:
2681 * - You must call releaseBuffer(newLength) before and in order to
2700 * releaseBuffer(newLength) must be called if and only if a getBuffer(minCapacity) is "open".
2702 * It will set the string length to newLength, at most to the current capacity.
2703 * If newLength==-1 then it will set the length according to the
2706 * After calling releaseBuffer(newLength) th
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 7720 milliseconds

123