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

1 2 3

  /packages/apps/DeskClock/src/com/android/deskclock/widget/
EllipsizeLayout.java 65 int totalLength = 0;
101 totalLength += child.getMeasuredWidth()
109 outOfSpec |= (ellipsizeView == null) || (totalLength == 0);
111 if (!outOfSpec && totalLength > parentWidth) {
112 int maxWidth = ellipsizeView.getMeasuredWidth() - (totalLength - parentWidth);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
BerTlv.java 134 int totalLength = 0;
138 totalLength += itemLength + 3; //3: 'tag'(1 byte) and 'length'(2 bytes).
140 totalLength += itemLength + 2; //2: 'tag'(1 byte) and 'length'(1 byte).
154 if (length != totalLength) {
  /frameworks/base/obex/javax/obex/
ServerSession.java 257 int totalLength = 3;
265 totalLength += header.length;
266 data = new byte[totalLength];
268 data[1] = (byte)(totalLength >> 8);
269 data[2] = (byte)totalLength;
272 data = new byte[totalLength];
275 data[2] = (byte)totalLength;
295 int totalLength = 3;
309 totalLength = 3;
382 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];
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Spline.java 32 private float totalLength;
179 totalLength = 0;
186 totalLength = 0;
198 totalLength += l;
221 totalLength += l;
236 totalLength += l;
329 return totalLength;
417 oc.write(totalLength, "totalLength", 0);
439 totalLength = in.readFloat("totalLength", 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathTraversalStateBuilder.h 36 float totalLength();
SVGPathUtilities.h 56 bool getTotalLengthOfSVGPathByteStream(SVGPathByteStream*, float& totalLength);
SVGPathTraversalStateBuilder.cpp 84 float SVGPathTraversalStateBuilder::totalLength()
SVGPathUtilities.cpp 298 bool getTotalLengthOfSVGPathByteStream(SVGPathByteStream* stream, float& totalLength)
310 totalLength = builder->totalLength();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScriptFormatterWorker.js 54 function getChunkCount(totalLength, chunkSize)
56 if (totalLength <= chunkSize)
59 var remainder = totalLength % chunkSize;
60 var partialLength = totalLength - remainder;
67 const totalLength = params.content.length;
69 const chunkCount = getChunkCount(totalLength, chunkSize);
HeapSnapshotGridNodes.js 223 if (items.endPosition < items.totalLength)
224 insertShowMoreButton.call(this, items.endPosition, items.totalLength, insertionIndex++);
237 if (range.to < items.totalLength)
245 insertShowMoreButton.call(this, items.startPosition, found ? range.from : items.totalLength, insertionIndex);
266 var newEndOfRange = nextRange ? nextRange.from : items.totalLength;
282 if (newEndOfRange === items.totalLength)
895 items.totalLength = this._addedCount + this._removedCount;
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RopeByteString.java 115 private final int totalLength;
134 totalLength = leftLength + right.size();
253 if (index > totalLength) {
255 "Index > length: " + index + ", " + totalLength);
270 return totalLength;
291 return totalLength >= minLengthByDepth[treeDepth];
315 if (endIndex > totalLength) {
317 "End index: " + endIndex + " > " + totalLength);
330 } else if (substringLength == totalLength) {
448 if (totalLength != otherByteString.size())
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 45 private long totalLength;
172 this.totalLength = 0;
291 if (totalLength == 0)
310 if (totalLength == 0)
354 long c = ((totalLength * 8) + 127) >>> 7;
375 Pack.longToBigEndian(totalLength * 8, X, 8);
432 totalLength = 0;
459 totalLength += BLOCK_SIZE;
471 totalLength += len;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
PathTraversalState.cpp 124 float totalLength = 0;
134 totalLength += length;
139 if (traversalState.m_totalLength + totalLength > traversalState.m_desiredLength)
140 return totalLength;
147 return totalLength;
  /packages/apps/Contacts/src/com/android/contacts/util/
ContactPhotoUtils.java 158 int totalLength = 0;
161 totalLength += length;
163 Log.v(TAG, "Wrote " + totalLength + " bytes for photo " + inputUri.toString());
  /frameworks/base/core/java/android/widget/
LinearLayout.java 677 final int totalLength = mTotalLength;
678 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
704 final int totalLength = mTotalLength;
705 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
786 final int totalLength = mTotalLength;
787 mTotalLength = Math.max(totalLength, totalLength + largestChildHeight +
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbar.cpp 318 int totalLength = startLength + endLength;
319 return IntRect(x() + startLength, y(), width() - totalLength, height());
326 int totalLength = startLength + endLength;
328 return IntRect(x(), y() + startLength, width(), height() - totalLength);
  /frameworks/av/media/libstagefright/foundation/
ParsedMessage.cpp 169 size_t totalLength = offset + contentLength;
171 if (size < totalLength) {
177 return totalLength;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Shader.cpp 54 int totalLength = 0;
60 totalLength += length[i];
64 totalLength += (int)strlen(string[i]);
68 mSource = new char[totalLength + 1];
88 mSource[totalLength] = '\0';
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 303 int totalLength = 0;
308 totalLength += 1 + s.length;
310 byte[] result = new byte[totalLength];
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.h 83 static size_t totalLength(const Vector<String>&);
  /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) {
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 122 int totalLength = env->GetArrayLength(byteArray);
123 if ((offset | length) < 0 || offset + length > 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];

Completed in 557 milliseconds

1 2 3