Searched refs:track (Results 1 - 9 of 9) sorted by relevance

/packages/apps/UnifiedEmail/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 DVideoUtils.java56 * Remove the sound track.
92 for (Track track : tracks) {
93 if (track.getHandler().equals("vide")) {
94 movie.addTrack(track);
123 * @param useAudio true if keep the audio track from the source.
124 * @param useVideo true if keep the video track from the source.
244 // Here we try to find a track that has sync samples. Since we can only
247 for (Track track : tracks) {
248 if (track.getSyncSamples() != null && track
300 correctTimeToSyncSample(Track track, double cutHere, boolean next) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStatePanel.java35 private StatePanelTrack track; field in class:StatePanel
50 track = (StatePanelTrack) panel;
51 track.setAdapter(MasterImage.getImage().getState());
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_avrcp.cpp336 jint type, jbyteArray track) {
345 trk = env->GetByteArrayElements(track, NULL);
352 param.track[i] = trk[i];
357 ALOGE("Failed register_notification_rsp track change, status: %d", status);
360 env->ReleaseByteArrayElements(track, trk, 0);
335 registerNotificationRspTrackChangeNative(JNIEnv *env, jobject object, jint type, jbyteArray track) argument
/packages/apps/Gallery2/
H A DAndroid.mk17 # Keep track of previously compiled RS files too (from bundled GalleryGoogle).
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
H A DBitmapCache.java61 private void track(Bitmap bitmap, int type) { method in class:BitmapCache
198 track(bitmap, type);
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
H A DAvrcp.java544 /* need send play position changed notification when track is changed */
650 byte[] track = new byte[TRACK_ID_SIZE];
651 /* track is stored in big endian format */
653 track[i] = (byte) (mTrackNumber >> (56 - 8 * i));
655 registerNotificationRspTrackChangeNative(mTrackChangedNT, track);
831 private native boolean registerNotificationRspTrackChangeNative(int type, byte[] track); argument
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DQuickContactActivity.java238 mTrack = (ViewGroup) findViewById(R.id.track);
567 * Inflate the in-track view for the action of the given MIME-type, collapsing duplicate values.

Completed in 139 milliseconds