HomeSort by relevance Sort by last modified time
    Searched refs:totalLength (Results 26 - 50 of 262) sorted by null

12 3 4 5 6 7 8 91011

  /external/icu/icu4c/source/i18n/
collationsettings.cpp 196 int32_t totalLength = codesLength + rangesLength;
197 U_ASSERT(totalLength > 0);
198 if(totalLength <= reorderCodesCapacity) {
202 int32_t capacity = (totalLength + 3) & ~3; // round up to a multiple of 4 ints
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cchannel.h 23 typedef VOID _stdcall CHANNEL_OPEN_EVENT_FN(DWORD openHandle,UINT event,LPVOID pData,UINT32 dataLength,UINT32 totalLength,UINT32 dataFlags);
  /frameworks/av/media/libstagefright/foundation/
ParsedMessage.cpp 169 size_t totalLength = offset + contentLength;
171 if (size < totalLength) {
177 return totalLength;
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerDAO.java 87 final long totalLength = prefs.getLong(TOTAL_LENGTH + id, Long.MIN_VALUE);
91 final long remainingTime = prefs.getLong(REMAINING_TIME + id, totalLength);
94 timers.add(new Timer(id, state, length, totalLength, lastStartTime,
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 314 int totalLength = 0;
319 totalLength += 1 + s.length;
321 byte[] result = new byte[totalLength];
  /frameworks/base/core/java/com/android/internal/widget/
AlertDialogLayout.java 282 final int totalLength = getMeasuredHeight();
291 // totalLength contains the padding already
292 childTop = mPaddingTop + bottom - top - totalLength;
295 // totalLength contains the padding already
297 childTop = mPaddingTop + (bottom - top - totalLength) / 2;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AlertDialogLayout.java 273 final int totalLength = getMeasuredHeight();
282 // totalLength contains the padding already
283 childTop = getPaddingTop() + bottom - top - totalLength;
286 // totalLength contains the padding already
288 childTop = getPaddingTop() + (bottom - top - totalLength) / 2;
  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 689 final int totalLength = mTotalLength;
690 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
717 final int totalLength = mTotalLength;
718 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
799 final int totalLength = mTotalLength;
800 mTotalLength = Math.max(totalLength, totalLength + largestChildHeight +
    [all...]
  /packages/apps/UnifiedEmail/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) {
  /external/v8/src/parsing/
scanner-character-streams.cc 757 size_t totalLength = 0;
764 totalLength++;
782 totalLength += bytes_to_move;
788 bytes_to_move = i::Min(2 * kBufferSize - totalLength, current->byte_length);
794 i::MemMove(reinterpret_cast<uint8_t*>(buffer_) + totalLength,
796 totalLength += bytes_to_move;
802 i::Min(2 * kBufferSize - totalLength, current->byte_length);
805 return totalLength / 2;
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 120 int totalLength = env->GetArrayLength(byteArray);
121 if ((offset | length) < 0 || offset + length > totalLength) {
Path.cpp 439 float totalLength = lengths.back();
440 if (totalLength == 0) {
444 totalLength = 1;
455 approximation[approximationIndex++] = lengths[i] / totalLength;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimDataDownloadHandler.java 126 int totalLength = bodyLength + 1 + (bodyLength > 127 ? 2 : 1);
128 byte[] envelope = new byte[totalLength];
  /frameworks/av/media/mtp/
MtpDataPacket.cpp 479 uint32_t totalLength = MtpPacket::getUInt32(MTP_CONTAINER_LENGTH_OFFSET);
480 allocate(totalLength);
481 while (totalLength > static_cast<uint32_t>(length)) {
483 request->buffer_length = totalLength - length;
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 761 int start, totalLength, i, j;
777 start = 0; totalLength = 0; i = 0; j = 0;
787 totalLength += strlen(words[j-1]);
795 totalLength += strlen(words[j]);
796 convstring = new char[totalLength + 1];
    [all...]
  /frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
AnimatorInflaterCompat.java 436 float totalLength = 0;
443 totalLength += pathLength;
444 contourLengths.add(totalLength);
451 final int numPoints = min(MAX_NUM_POINTS, (int) (totalLength / precision) + 1);
458 float step = totalLength / (numPoints - 1);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 780 public int totalLength;
805 totalLength = 0;
810 totalLength += preferredSize.h;
812 totalLength += preferredSize.w
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Parameters.java 173 int totalLength = parameterTypes.length;
186 totalLength--;
190 if (parameterNames.length != totalLength) {
  /frameworks/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 493 float totalLength = 0;
501 totalLength += currentPoint.distance(previousPoint);
518 result[i * 3] = walkedDistance / totalLength;
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsUtils.java 302 int totalLength = 0;
310 totalLength += getDataLength(context, part.getContentUri());
312 totalLength += getMediaFileSize(part.getContentUri());
317 final int byteBudget = MmsConfig.get(subId).getMaxMessageSize() - totalLength
327 totalLength = 0;
345 totalLength += addPicturePart(context, pb, index, part,
351 totalLength += length;
357 totalLength += addVCardPart(context, pb, part, srcName);
362 totalLength += addOtherPart(context, pb, part, srcName);
369 totalLength += addOtherPart(context, pb, part, srcName)
    [all...]
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
PublicApiFunctionalTest.java 223 int totalLength = FILE_CONTENT.length();
227 .setHeader("Content-length", isFirstResponse ? totalLength : (end - start))
231 "Content-range", "bytes " + start + "-" + totalLength + "/" + totalLength);
    [all...]
  /frameworks/support/compat/java/android/support/v4/graphics/
PathParser.java 219 int totalLength = s.length();
224 while (startPosition < totalLength) {
  /external/icu/icu4c/source/common/
utrie2_builder.cpp 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...]
  /frameworks/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 343 int totalLength = s.length();
348 while (startPosition < totalLength) {
    [all...]
  /prebuilts/sdk/current/support/graphics/drawable/
android-support-animatedvectordrawable.jar 

Completed in 2804 milliseconds

12 3 4 5 6 7 8 91011