HomeSort by relevance Sort by last modified time
    Searched refs:totalLength (Results 1 - 25 of 60) 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];
  /developers/build/prebuilts/gradle/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardService.java 161 int totalLength = first.length;
163 totalLength += array.length;
165 byte[] result = Arrays.copyOf(first, totalLength);
  /developers/samples/android/connectivity/nfc/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
CardService.java 161 int totalLength = first.length;
163 totalLength += array.length;
165 byte[] result = Arrays.copyOf(first, totalLength);
  /development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
CardService.java 161 int totalLength = first.length;
163 totalLength += array.length;
165 byte[] result = Arrays.copyOf(first, totalLength);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathUtilities.h 50 bool getTotalLengthOfSVGPathByteStream(const SVGPathByteStream*, float& totalLength);
SVGPathTraversalStateBuilder.h 36 float totalLength();
SVGPathTraversalStateBuilder.cpp 84 float SVGPathTraversalStateBuilder::totalLength()
SVGPathElement.cpp 67 float totalLength = 0;
68 getTotalLengthOfSVGPathByteStream(pathByteStream(), totalLength);
69 return totalLength;
SVGPathUtilities.cpp 202 bool getTotalLengthOfSVGPathByteStream(const SVGPathByteStream* stream, float& totalLength)
214 totalLength = builder->totalLength();
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RopeByteString.java 114 private final int totalLength;
133 totalLength = leftLength + right.size();
252 if (index > totalLength) {
254 "Index > length: " + index + ", " + totalLength);
269 return totalLength;
290 return totalLength >= minLengthByDepth[treeDepth];
314 if (endIndex > totalLength) {
316 "End index: " + endIndex + " > " + totalLength);
329 } else if (substringLength == totalLength) {
447 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/platform/graphics/
PathTraversalState.cpp 139 float totalLength = 0;
150 totalLength += length;
154 if (traversalState.m_totalLength + totalLength > traversalState.m_desiredLength)
155 return totalLength;
162 return totalLength;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotCommon.js 270 * @param {number} totalLength
273 WebInspector.HeapSnapshotCommon.ItemsRange = function(startPosition, endPosition, totalLength, items)
280 this.totalLength = totalLength;
  /packages/apps/Contacts/src/com/android/contacts/util/
ContactPhotoUtils.java 161 int totalLength = 0;
164 totalLength += length;
166 Log.v(TAG, "Wrote " + totalLength + " bytes for photo " + inputUri.toString());
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 637 final int totalLength = mTotalLength;
638 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
665 final int totalLength = mTotalLength;
666 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
748 final int totalLength = mTotalLength;
749 mTotalLength = Math.max(totalLength, totalLength + largestChildHeight +
833 final int totalLength = mTotalLength
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
ScriptFormatterWorker.js 96 * @param {number} totalLength
99 FormatterWorker._chunkCount = function(totalLength, chunkSize)
101 if (totalLength <= chunkSize)
104 var remainder = totalLength % chunkSize;
105 var partialLength = totalLength - remainder;
115 var totalLength = params.content.length;
117 var chunkCount = FormatterWorker._chunkCount(totalLength, chunkSize);
  /frameworks/base/core/java/android/widget/
LinearLayout.java 703 final int totalLength = mTotalLength;
704 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
731 final int totalLength = mTotalLength;
732 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
813 final int totalLength = mTotalLength;
814 mTotalLength = Math.max(totalLength, totalLength + largestChildHeight +
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbar.cpp 319 int totalLength = startLength + endLength;
320 return IntRect(x() + startLength, y(), width() - totalLength, height());
327 int totalLength = startLength + endLength;
329 return IntRect(x(), y() + startLength, width(), height() - totalLength);
  /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;
  /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];

Completed in 1662 milliseconds

1 2 3