Searched defs:maxLen (Results 1 - 8 of 8) sorted by relevance

/frameworks/native/opengl/tools/glgen/
H A Dconvert_to_java.py24 maxLen = 0 variable
28 maxLen = max(maxLen, len(defineValuePair[0])) variable
31 print(' public static final int {0[0]:<{1}} = {0[1]};'.format(define, maxLen))
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java32 public int maxLen; field in class:Input
47 maxLen = 1;
63 maxLen = in.readInt();
85 dest.writeInt(maxLen);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DAssertHelpers.java217 private static <T> String formatCollection(Collection<T> collection, int maxLen) { argument
225 if ((builder.length() + val.length()) > maxLen - "...]".length()) {
/frameworks/av/soundtrigger/
H A DSoundTrigger.cpp267 status_t SoundTrigger::guidToString(const sound_trigger_uuid_t *guid, char *str, size_t maxLen) argument
273 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/av/media/libaudioclient/
H A DAudioEffect.cpp473 status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen) argument
479 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/base/libs/androidfw/
H A DAsset.cpp489 size_t maxLen; local
506 maxLen = mLength - mOffset;
507 if (count > maxLen)
508 count = maxLen;
814 size_t maxLen; local
830 maxLen = mUncompressedLen - mOffset;
831 if (count > maxLen)
832 count = maxLen;
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c78 static int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen);
1028 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen) argument
1031 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/native/cmds/flatland/
H A DMain.cpp714 size_t maxLen = 0; local
718 if (len > maxLen) {
719 maxLen = len;
722 return maxLen;

Completed in 614 milliseconds