Home
last modified time | relevance | path

Searched refs:minLength (Results 1 – 15 of 15) sorted by relevance

/frameworks/layoutlib/bridge/src/dalvik/system/
DVMRuntimeCommonHelper.java26 int minLength) { in newUnpaddedArray() argument
30 int size = ((minLength & 1) == 0) ? minLength + 1 : minLength; in newUnpaddedArray()
33 int bytes = 20 + (2 * minLength); in newUnpaddedArray()
39 int size = ((minLength & 1) == 0) ? minLength + 1 : minLength; in newUnpaddedArray()
42 int bytes = 20 + minLength; in newUnpaddedArray()
48 int bytes = 20 + minLength; in newUnpaddedArray()
54 int bytes = 20 + (2 * minLength); in newUnpaddedArray()
60 int size = ((minLength & 1) == 0) ? minLength + 1 : minLength; in newUnpaddedArray()
63 return new long[minLength]; in newUnpaddedArray()
65 return new double[minLength]; in newUnpaddedArray()
DVMRuntime_Delegate.java31 int minLength) { in newUnpaddedArray() argument
32 return VMRuntimeCommonHelper.newUnpaddedArray(runtime, componentType, minLength); in newUnpaddedArray()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
DShadeListBuilderHelper.kt23 getContiguousSubLists(entries, minLength = 1) { it.sectionIndex } in getSectionSubLists()
27 minLength: Int = 1, in getContiguousSubLists()
40 if (length >= minLength) { in getContiguousSubLists()
48 if (length >= minLength) { in getContiguousSubLists()
/frameworks/base/core/java/com/android/internal/widget/
DScrollBarUtils.java27 final int minLength = thickness * 2; in getThumbLength() local
29 if (length < minLength) { in getThumbLength()
30 length = minLength; in getThumbLength()
/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/dalvik/system/
DVMRuntime.java42 public Object newUnpaddedArray(Class<?> componentType, int minLength) { in newUnpaddedArray() argument
43 return Array.newInstance(componentType, minLength); in newUnpaddedArray()
/frameworks/base/libs/androidfw/
DApkParsing.cpp39 static const size_t minLength = APK_LIB_LEN + 2 + LIB_PREFIX_LEN + 1 + LIB_SUFFIX_LEN; in ValidLibraryPathLastSlash() local
40 if (fileNameLen < minLength) { in ValidLibraryPathLastSlash()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/listbuilder/
DShadeListBuilderHelperTest.kt52 assertThat(getContiguousSubLists("AAABAA".toList(), minLength = 2) { it }) in testGetContiguousSubLists()
67 assertThat(getContiguousSubLists("AAABBBBCCDEEE".toList(), minLength = 2) { it }) in testGetContiguousSubLists()
/frameworks/base/core/java/android/hardware/camera2/params/
DTonemapCurve.java150 private static void checkArgumentArrayLengthNoLessThan(float[] array, int minLength, in checkArgumentArrayLengthNoLessThan() argument
152 if (array.length < minLength) { in checkArgumentArrayLengthNoLessThan()
154 + minLength); in checkArgumentArrayLengthNoLessThan()
/frameworks/base/libs/hwui/jni/
DGraphicsJNI.h274 int minLength = 0, JNIAccess = kRW_JNIAccess);
290 AutoJavaIntArray(JNIEnv* env, jintArray array, int minLength = 0);
306 int minLength = 0, JNIAccess = kRW_JNIAccess);
322 AutoJavaByteArray(JNIEnv* env, jbyteArray array, int minLength = 0);
DGraphics.cpp98 int minLength, JNIAccess access) in AutoJavaFloatArray() argument
103 if (fLen < minLength) { in AutoJavaFloatArray()
118 int minLength) in AutoJavaIntArray() argument
123 if (fLen < minLength) { in AutoJavaIntArray()
137 int minLength, JNIAccess access) in AutoJavaShortArray() argument
142 if (fLen < minLength) { in AutoJavaShortArray()
157 int minLength) in AutoJavaByteArray() argument
162 if (fLen < minLength) { in AutoJavaByteArray()
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiCecMessageValidator.java380 public VariableLengthValidator(int minLength, int maxLength) { in VariableLengthValidator() argument
381 mMinLength = minLength; in VariableLengthValidator()
910 AsciiValidator(int minLength, int maxLength) { in AsciiValidator() argument
911 mMinLength = minLength; in AsciiValidator()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DDataStallRecoveryManager.java440 int minLength = Math.min(enabledActionsArray.length, in updateGlobalConfigActions() local
444 for (int i = 0; i < minLength; i++) { in updateGlobalConfigActions()
479 int minLength = Math.min(durationMillisArray.length, in updateGlobalConfigDurations() local
485 0, minLength); in updateGlobalConfigDurations()
/frameworks/av/media/libstagefright/
DMPEG4Writer.cpp426 status_t copyCodecSpecificData(const uint8_t *data, size_t size, size_t minLength = 0);
3150 const uint8_t *data, size_t size, size_t minLength) { in copyCodecSpecificData() argument
3151 if (size < minLength) { in copyCodecSpecificData()
DACodec.cpp8204 static void removeTrailingTags(char *key, size_t minLength, const char *tag) { in removeTrailingTags() argument
8207 while (length > minLength + tagLength in removeTrailingTags()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...