Searched defs:track (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Email/src/org/apache/commons/io/
H A DFileCleaner.java22 * Keeps track of files awaiting deletion, and deletes them when an associated
53 * @param marker the marker object used to track the file, not null
55 * @deprecated Use {@link FileCleaningTracker#track(File, Object)}.
57 public static void track(File file, Object marker) { method in class:FileCleaner
58 theInstance.track(file, marker);
67 * @param marker the marker object used to track the file, not null
70 * @deprecated Use {@link FileCleaningTracker#track(File, Object, FileDeleteStrategy)}.
72 public static void track(File file, Object marker, FileDeleteStrategy deleteStrategy) { method in class:FileCleaner
73 theInstance.track(file, marker, deleteStrategy);
82 * @param marker the marker object used to track th
86 public static void track(String path, Object marker) { method in class:FileCleaner
101 public static void track(String path, Object marker, FileDeleteStrategy deleteStrategy) { method in class:FileCleaner
[all...]
H A DFileCleaningTracker.java26 * Keeps track of files awaiting deletion, and deletes them when an associated
68 * @param marker the marker object used to track the file, not null
71 public void track(File file, Object marker) { method in class:FileCleaningTracker
72 track(file, marker, (FileDeleteStrategy) null);
81 * @param marker the marker object used to track the file, not null
85 public void track(File file, Object marker, FileDeleteStrategy deleteStrategy) { method in class:FileCleaningTracker
98 * @param marker the marker object used to track the file, not null
101 public void track(String path, Object marker) { method in class:FileCleaningTracker
102 track(path, marker, (FileDeleteStrategy) null);
111 * @param marker the marker object used to track th
115 public void track(String path, Object marker, FileDeleteStrategy deleteStrategy) { method in class:FileCleaningTracker
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DTrimVideoUtils.java40 * Shortens/Crops a track
57 // Here we try to find a track that has sync samples. Since we can only start decoding
60 for (Track track : tracks) {
61 if (track.getSyncSamples() != null && track.getSyncSamples().length > 0) {
67 throw new RuntimeException("The startTime has already been corrected by another track with SyncSample. Not Supported.");
69 startTime = correctTimeToSyncSample(track, startTime, false);
70 endTime = correctTimeToSyncSample(track, endTime, true);
75 for (Track track : tracks) {
81 for (int i = 0; i < track
118 getDuration(Track track) argument
126 correctTimeToSyncSample(Track track, double cutHere, boolean next) argument
[all...]

Completed in 35 milliseconds