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

  /libcore/luni/src/main/java/java/security/
PermissionCollection.java 103 int totalLength = superStr.length() + 5;
107 totalLength += el.length();
112 totalLength += esize * 4;
113 StringBuilder result = new StringBuilder(totalLength).append(superStr)
  /frameworks/base/obex/javax/obex/
ServerSession.java 257 int totalLength = 3;
261 totalLength += header.length;
262 data = new byte[totalLength];
264 data[1] = (byte)(totalLength >> 8);
265 data[2] = (byte)totalLength;
268 data = new byte[totalLength];
271 data[2] = (byte)totalLength;
291 int totalLength = 3;
305 totalLength = 3;
378 totalLength += head.length
    [all...]
ClientSession.java 79 int totalLength = 4;
89 totalLength += head.length;
100 byte[] requestPacket = new byte[totalLength];
289 int totalLength = 2;
315 totalLength += head.length;
317 if (totalLength > maxPacketSize) {
343 byte[] packet = new byte[totalLength];
  /frameworks/base/tests/BrowserTestPlugin/jni/event/
EventPlugin.cpp 119 int totalLength = strlen(jsBegin) + length + strlen(jsEnd);
120 char* beginMem = (char*)browser->memalloc(totalLength);
129 gLogI.log(kDebug_ANPLogType, "text: %.*s\n", totalLength, (char*)beginMem);
132 NPString script = { (char*)beginMem, totalLength };
  /external/webkit/WebCore/platform/graphics/
PathTraversalState.cpp 125 float totalLength = 0.0f;
134 totalLength += length;
139 if (traversalState.m_totalLength + totalLength > traversalState.m_desiredLength)
140 return totalLength;
147 return totalLength;
  /frameworks/base/core/java/android/widget/
LinearLayout.java 368 final int totalLength = mTotalLength;
369 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
395 final int totalLength = mTotalLength;
396 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
471 final int totalLength = mTotalLength;
472 mTotalLength = Math.max(totalLength, totalLength + largestChildHeight +
549 final int totalLength = mTotalLength
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 45 private long totalLength;
161 this.totalLength = 0;
261 packLength(totalLength * 8, X, 8);
311 totalLength = 0;
364 totalLength += bufCount;
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 107 int totalLength = env->GetArrayLength(byteArray);
108 if ((offset | length) < 0 || offset + length > totalLength) {
  /external/webkit/WebCore/rendering/
RenderScrollbar.cpp 295 int totalLength = startLength + endLength;
296 return IntRect(x() + startLength, y(), width() - totalLength, height());
303 int totalLength = startLength + endLength;
305 return IntRect(x(), y() + startLength, width(), height() - totalLength);
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextControllerATSUI.cpp 103 static void shapeArabic(const UChar* source, UChar* dest, unsigned totalLength)
106 while (shapingStart < totalLength) {
112 for (shapingEnd = shapingStart; !foundLigatureSpace && shapingEnd < totalLength - 1; ++shapingEnd)
136 shapingEnd = totalLength;
  /packages/apps/Email/src/org/apache/james/mime4j/codec/
EncoderUtil.java 516 int totalLength = prefix.length() + encodedLength
518 if (totalLength <= ENCODED_WORD_MAX_LENGTH - usedCharacters) {
544 int totalLength = prefix.length() + encodedLength
546 if (totalLength <= ENCODED_WORD_MAX_LENGTH - usedCharacters) {
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
PublicApiFunctionalTest.java 174 int totalLength = FILE_CONTENT.length();
178 .addHeader("Content-length", totalLength)
182 "bytes " + start + "-" + totalLength + "/" + totalLength);
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 750 int start, totalLength, i, j;
766 start = 0; totalLength = 0; i = 0; j = 0;
776 totalLength += strlen(words[j-1]);
784 totalLength += strlen(words[j]);
785 convstring = new char[totalLength + 1];
    [all...]
  /external/webkit/WebCore/inspector/front-end/
AuditRules.js 342 _getUnusedTotalRatioMessage: function(unusedLength, totalLength)
344 var pctUnused = Math.round(unusedLength / totalLength * 100);
356 var totalLength = 0;
362 if (type === "totalLength") {
363 totalLength = evalResult[i++];
389 var totalUnusedPercent = totalUnusedLength / totalLength;
390 topMessage.value = self._getUnusedTotalRatioMessage(totalUnusedLength, totalLength);
437 styleSheetToUnusedRules.push("totalLength");
    [all...]
  /external/chromium/third_party/icu/source/common/
utrie2_builder.c 350 long totalLength=(long)sizeof(UTrieHeader)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
352 indexLength, dataLength, totalLength);
359 long totalLength=(long)sizeof(UTrie2Header)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
361 which, indexLength, dataLength, totalLength);
    [all...]
  /external/icu4c/common/
utrie2_builder.c 350 long totalLength=(long)sizeof(UTrieHeader)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
352 indexLength, dataLength, totalLength);
359 long totalLength=(long)sizeof(UTrie2Header)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
361 which, indexLength, dataLength, totalLength);
    [all...]
  /system/core/libacc/
acc.cpp     [all...]

Completed in 671 milliseconds