OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:utf8StringLengthInBytes
(Results
1 - 24
of
24
) sorted by null
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DataEntryUrnBox.java
48
return Utf8.
utf8StringLengthInBytes
(name) + 1 + Utf8.
utf8StringLengthInBytes
(location) + 1;
XmlBox.java
30
return 4 + Utf8.
utf8StringLengthInBytes
(xml);
KeywordsBox.java
58
contentSize += 1 + Utf8.
utf8StringLengthInBytes
(keyword) + 1;
81
IsoTypeWriter.writeUInt8(byteBuffer, Utf8.
utf8StringLengthInBytes
(keyword) + 1);
HandlerBox.java
104
return 25 + Utf8.
utf8StringLengthInBytes
(name);
106
return 24 + Utf8.
utf8StringLengthInBytes
(name);
AlbumBox.java
75
return 6 + Utf8.
utf8StringLengthInBytes
(albumTitle) + 1 + (trackNumber == -1 ? 0 : 1);
AuthorBox.java
72
return 7 + Utf8.
utf8StringLengthInBytes
(author);
CopyrightBox.java
62
return 7 + Utf8.
utf8StringLengthInBytes
(copyright);
DescriptionBox.java
48
return 7 + Utf8.
utf8StringLengthInBytes
(description);
GenreBox.java
58
return 7 + Utf8.
utf8StringLengthInBytes
(genre);
PerformerBox.java
57
return 6 + Utf8.
utf8StringLengthInBytes
(performer) + 1;
TitleBox.java
68
return 7 + Utf8.
utf8StringLengthInBytes
(title);
ClassificationBox.java
76
return 4 + 2 + 2 + Utf8.
utf8StringLengthInBytes
(classificationInfo) + 1;
RatingBox.java
91
return 15 + Utf8.
utf8StringLengthInBytes
(ratingInfo);
SchemeTypeBox.java
69
return 12 + (((getFlags() & 1) == 1) ? Utf8.
utf8StringLengthInBytes
(schemeUri) + 1 : 0);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ultraviolet/
BaseLocationBox.java
67
content.get(new byte[256 - Utf8.
utf8StringLengthInBytes
(baseLocation) - 1]);
69
content.get(new byte[256 - Utf8.
utf8StringLengthInBytes
(purchaseLocation) - 1]);
77
byteBuffer.put(new byte[256 - Utf8.
utf8StringLengthInBytes
(baseLocation)]); // string plus term zero
79
byteBuffer.put(new byte[256 - Utf8.
utf8StringLengthInBytes
(purchaseLocation)]); // string plus term zero
AssetInformationBox.java
38
return Utf8.
utf8StringLengthInBytes
(apid) + 9;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Utf8.java
48
public static int
utf8StringLengthInBytes
(String utf8) {
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleMeanBox.java
23
return 4 + Utf8.
utf8StringLengthInBytes
(meaning);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/vodafone/
ContentDistributorIdBox.java
48
return 2 + Utf8.
utf8StringLengthInBytes
(contentDistributorId) + 5;
CoverUriBox.java
46
return Utf8.
utf8StringLengthInBytes
(coverUri) + 5;
LyricsUriBox.java
47
return Utf8.
utf8StringLengthInBytes
(lyricsUri) + 5;
AlbumArtistBox.java
58
return 6 + Utf8.
utf8StringLengthInBytes
(albumArtist) + 1;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
VisualSampleEntry.java
199
IsoTypeWriter.writeUInt8(byteBuffer, Utf8.
utf8StringLengthInBytes
(getCompressorname()));
201
int a = Utf8.
utf8StringLengthInBytes
(getCompressorname());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
FontTableBox.java
84
return Utf8.
utf8StringLengthInBytes
(fontname) + 3;
Completed in 198 milliseconds