Searched refs:totalLength (Results 1 – 4 of 4) sorted by relevance
65 int totalLength = 0; in onMeasure() local101 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()
516 int totalLength = prefix.length() + encodedLength in encodeB() local518 if (totalLength <= ENCODED_WORD_MAX_LENGTH - usedCharacters) { in encodeB()544 int totalLength = prefix.length() + encodedLength in encodeQ() local546 if (totalLength <= ENCODED_WORD_MAX_LENGTH - usedCharacters) { in encodeQ()
161 int totalLength = 0; in savePhotoFromUriToUri() local164 totalLength += length; in savePhotoFromUriToUri()166 Log.v(TAG, "Wrote " + totalLength + " bytes for photo " + inputUri.toString()); in savePhotoFromUriToUri()
221 int totalLength = FILE_CONTENT.length(); in buildPartialResponse() local225 .setHeader("Content-length", isFirstResponse ? totalLength : (end - start)) in buildPartialResponse()229 "Content-range", "bytes " + start + "-" + totalLength + "/" + totalLength); in buildPartialResponse()