Searched refs:maxLength (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
H A DLineBreakBufferedWriter.java123 int maxLength = bufferSize - bufferIndex;
124 for (int i = 0; i < maxLength; i++) {
177 int maxLength = bufferSize - bufferIndex;
178 for (int i = 0; i < maxLength; i++) {
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableParcelable.java126 int maxLength = buffer.remaining();
128 byte[] remaining = new byte[maxLength];
131 parcel.unmarshall(remaining, /*offset*/0, maxLength);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
H A DBitmapUtils.java139 Bitmap bitmap, int maxLength, boolean recycle) {
143 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
138 resizeDownBySideLength( Bitmap bitmap, int maxLength, boolean recycle) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java792 int maxLength = 0; //maximum length of a sequence already found
799 maxLength = Math.max(maxLength, current - startSequence);
806 maxLength = Math.max(maxLength, current - startSequence);
814 maxLength = Math.max(maxLength, string.length() - startSequence);
815 return maxLength;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageValidator.java248 public VariableLengthValidator(int minLength, int maxLength) { argument
250 mMaxLength = maxLength;
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DSurfaceTextureRenderer.java475 int maxLength = 0;
479 maxLength = (length > maxLength) ? length : maxLength;
489 mPBufferPixels = ByteBuffer.allocateDirect(maxLength * PBUFFER_PIXEL_BYTES)
/frameworks/support/design/src/android/support/design/widget/
H A DTextInputLayout.java757 * @param maxLength maxLength to display. Any value less than or equal to 0 will not be shown.
761 public void setCounterMaxLength(int maxLength) { argument
762 if (mCounterMaxLength != maxLength) {
763 if (maxLength > 0) {
764 mCounterMaxLength = maxLength;
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp934 const size_t maxLength = 2047; local
935 char buffer[maxLength+1];
936 size_t length = sGpsDebugInterface->get_internal_state(buffer, maxLength);
937 if (length > maxLength) length = maxLength;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java2036 final int maxLength = Math.max(maxAuthority, maxAccount + 3);
2037 final int padLength = 2 + 2 + maxLength + 2 + 10 + 11;
2043 String.format(" %%-%ds: %%-9s %%-11s\n", maxLength + 2);
2045 String.format(" %%-%ds: %%-9s %%-11s\n", maxLength);
3421 int maxLength = 0;
3424 if (length > maxLength) {
3425 maxLength = length;
3428 totalLength += maxLength;
3429 formats[col] = String.format("%%-%ds", maxLength);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c126 size_t maxLength; member in struct:FwdLockConv_String
450 if (pString->length == pString->maxLength) {
451 size_t newMaxLength = pString->maxLength + pString->lengthIncrement;
457 pString->maxLength = newMaxLength;
512 pSession->contentType.maxLength = strlenTextPlain;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java3412 int maxLength;
3415 maxLength = getNotGoneChildCount() - 1;
3417 maxLength = Math.max(mDarkAnimationOriginIndex,
3420 maxLength = Math.max(0, maxLength);
3421 long delay = maxLength * StackStateAnimator.ANIMATION_DELAY_PER_ELEMENT_DARK;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 400 milliseconds