Home | History | Annotate | Download | only in piff

Lines Matching refs:entry

38     public List<Entry> entries = new ArrayList<Entry>();

60 for (Entry entry : entries) {
62 IsoTypeWriter.writeUInt64(byteBuffer, entry.fragmentAbsoluteTime);
63 IsoTypeWriter.writeUInt64(byteBuffer, entry.fragmentAbsoluteDuration);
65 IsoTypeWriter.writeUInt32(byteBuffer, entry.fragmentAbsoluteTime);
66 IsoTypeWriter.writeUInt32(byteBuffer, entry.fragmentAbsoluteDuration);
77 Entry entry = new Entry();
79 entry.fragmentAbsoluteTime = IsoTypeReader.readUInt64(content);
80 entry.fragmentAbsoluteDuration = IsoTypeReader.readUInt64(content);
82 entry.fragmentAbsoluteTime = IsoTypeReader.readUInt32(content);
83 entry.fragmentAbsoluteDuration = IsoTypeReader.readUInt32(content);
85 entries.add(entry);
94 public List<Entry> getEntries() {
107 public class Entry {
122 sb.append("Entry");