Home
last modified time | relevance | path

Searched refs:tagLength (Results 1 – 8 of 8) sorted by relevance

/external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
DAndroidLoggerFactory.java83 int tagLength = 0; in loggerNameToTag() local
98 tagLength = tagName.length(); in loggerNameToTag()
99 if (tagLength > TAG_MAX_LENGTH) { in loggerNameToTag()
107 if (tagLength == 0 || (tagLength + tokenLength) > TAG_MAX_LENGTH) { in loggerNameToTag()
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/
DId3Peeker.java67 int tagLength = Id3Decoder.ID3_HEADER_LENGTH + framesLength; in peekId3Data() local
70 byte[] id3Data = new byte[tagLength]; in peekId3Data()
74 metadata = new Id3Decoder(id3FramePredicate).decode(id3Data, tagLength); in peekId3Data()
79 peekedId3Bytes += tagLength; in peekId3Data()
/external/lz4/tests/
DcheckTag.c48 size_t const tagLength = strlen(tag); in validate() local
51 if (tagLength < 2) return 0; in validate()
53 if (tagLength <= verLength) return 0; in validate()
/external/zstd/tests/
DcheckTag.c34 size_t const tagLength = strlen(tag); in validate() local
37 if (tagLength < 2) return 0; in validate()
39 if (tagLength <= verLength) return 0; in validate()
/external/icu/icu4c/source/common/
Dloclikely.cpp123 int32_t tagLength, in appendTag() argument
136 tagLength); in appendTag()
138 *bufferLength += tagLength; in appendTag()
203 int32_t tagLength = 0; in createTagStringWithAlternates() local
211 &tagLength, in createTagStringWithAlternates()
248 &tagLength, in createTagStringWithAlternates()
258 &tagLength, in createTagStringWithAlternates()
283 &tagLength, in createTagStringWithAlternates()
293 &tagLength, in createTagStringWithAlternates()
319 &tagLength, in createTagStringWithAlternates()
[all …]
Dlocaleprioritylist.cpp127 int32_t tagLength = findTagLength(p, limit); in LocalePriorityList() local
128 if (tagLength == 0) { in LocalePriorityList()
132 CharString tag(p, tagLength, errorCode); in LocalePriorityList()
140 if ((p = skipSpaces(p + tagLength, limit)) != limit && *p == ';') { in LocalePriorityList()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/subrip/
DSubripDecoder.java160 int tagLength = tag.length(); in processLine() local
161 processedLine.replace(start, /* end= */ start + tagLength, /* str= */ ""); in processLine()
162 removedCharacterCount += tagLength; in processLine()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLog.java122 int tagLength = tag == null ? 0 : tag.length(); in println_native() local
124 return extraLogLength + tagLength + msgLength; in println_native()