Home
last modified time | relevance | path

Searched refs:totalLength (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/widget/
DEllipsizeLayout.java65 int totalLength = 0; in onMeasure() local
101 totalLength += child.getMeasuredWidth() in onMeasure()
109 outOfSpec |= (ellipsizeView == null) || (totalLength == 0); in onMeasure()
111 if (!outOfSpec && totalLength > parentWidth) { in onMeasure()
112 int maxWidth = ellipsizeView.getMeasuredWidth() - (totalLength - parentWidth); in onMeasure()
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
DEncoderUtil.java516 int totalLength = prefix.length() + encodedLength in encodeB() local
518 if (totalLength <= ENCODED_WORD_MAX_LENGTH - usedCharacters) { in encodeB()
544 int totalLength = prefix.length() + encodedLength in encodeQ() local
546 if (totalLength <= ENCODED_WORD_MAX_LENGTH - usedCharacters) { in encodeQ()
/packages/apps/Contacts/src/com/android/contacts/util/
DContactPhotoUtils.java161 int totalLength = 0; in savePhotoFromUriToUri() local
164 totalLength += length; in savePhotoFromUriToUri()
166 Log.v(TAG, "Wrote " + totalLength + " bytes for photo " + inputUri.toString()); in savePhotoFromUriToUri()
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
DPublicApiFunctionalTest.java221 int totalLength = FILE_CONTENT.length(); in buildPartialResponse() local
225 .setHeader("Content-length", isFirstResponse ? totalLength : (end - start)) in buildPartialResponse()
229 "Content-range", "bytes " + start + "-" + totalLength + "/" + totalLength); in buildPartialResponse()