HomeSort by relevance Sort by last modified time
    Searched full:track (Results 276 - 300 of 4318) sorted by null

<<11121314151617181920>>

  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 160 const mkvparser::Track* MatroskaExtractor::TrackInfo::getTrack() const {
165 // searches in our own track based vectors. We should not need this once mkvparser
175 const mkvparser::Track* track = getTrack(); local
177 return cp->Find(track);
204 return cp->Find(track);
424 MatroskaExtractor::TrackInfo& track = mExtractor->mTracks.editItemAt(index); local
425 const mkvparser::Track *pTrack = pTracks->GetTrackByNumber(track.mTrackNum);
427 track.mCuePoints.push_back(pCP)
440 MatroskaExtractor::TrackInfo& track = mExtractor->mTracks.editItemAt(mIndex); local
935 const mkvparser::Track *track = tracks->GetTrackByIndex(index); local
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/
timeline_track_view_test.html 39 var timeline = document.createElement('tr-ui-timeline-track-view');
61 var timeline = document.createElement('tr-ui-timeline-track-view');
90 var timeline = document.createElement('tr-ui-timeline-track-view');
107 var timeline = document.createElement('tr-ui-timeline-track-view');
118 var timeline = document.createElement('tr-ui-timeline-track-view');
129 var timeline = document.createElement('tr-ui-timeline-track-view');
141 var timeline = document.createElement('tr-ui-timeline-track-view');
157 var trackView = document.createElement('tr-ui-timeline-track-view');
175 var trackView = document.createElement('tr-ui-timeline-track-view');
192 var trackView = document.createElement('tr-ui-timeline-track-view')
    [all...]
  /external/clang/test/Driver/
fsanitize.c 63 // RUN: %clang -target x86_64-linux-gnu -fsanitize-memory-track-origins -pie %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-ONLY-TRACK-ORIGINS
64 // CHECK-ONLY-TRACK-ORIGINS: warning: argument unused during compilation: '-fsanitize-memory-track-origins'
66 // RUN: %clang -target x86_64-linux-gnu -fsanitize=address %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-NO-EXTRA-TRACK-ORIGINS
67 // CHECK-NO-EXTRA-TRACK-ORIGINS-NOT: "-fsanitize-memory-track-origins"
75 // RUN: %clang -target x86_64-linux-gnu -fsanitize=memory -fsanitize-memory-track-origins -pie %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-TRACK-ORIGINS-2
76 // RUN: %clang -target x86_64-linux-gnu -fsanitize=memory -fsanitize-memory-track-origins=1 -pie %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-TRACK-ORIGINS-
    [all...]
  /external/ceres-solver/examples/
libmv_bundle_adjuster.cc 65 // - Track number point belongs to (single 4 bytes integer value).
68 // Track number shall be greater or equal to zero. Order of tracks does not
74 // - Track marker belongs to single 4 bytes integer value).
143 // A Point is the 3D location of a track.
145 // track identifies which track this point corresponds to.
146 // X represents the 3D position of the track.
148 EuclideanPoint() : track(-1) {}
149 EuclideanPoint(const EuclideanPoint &p) : track(p.track), X(p.X) {
150 int track; member in struct:__anon4844::EuclideanPoint
161 int track; member in struct:__anon4844::Marker
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
nestegg.c 128 /* Track Types */
132 /* Track IDs */
248 struct ebml_type track; member in struct:cue_track_positions
311 uint64_t track; member in struct:nestegg_packet
433 E_FIELD(ID_CUE_TRACK, TYPE_UINT, struct cue_track_positions, track),
1226 ne_find_track_entry(nestegg * ctx, unsigned int track)
1234 if (track == tracks)
1254 unsigned int i, lacing, track; local
1340 if (ne_map_track_number_to_index(ctx, (unsigned int)track_number, &track) != 0)
1343 entry = ne_find_track_entry(ctx, track);
1703 struct ebml_list_node * track; local
1831 unsigned int track = 0, track_count = 0, track_index; local
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 67 private BoneTrack track; field in class:SkeletonLoader
99 assert elementStack.peek().equals("track");
100 } else if (qName.equals("track")) {
105 track = new BoneTrack(index);
170 } else if (qName.equals("track")) {
171 if (track != null) { // if track has keyframes
172 tracks.add(track);
173 track = null;
208 track.setKeyframes(timesArray, transArray, rotArray, scalesArray)
    [all...]
  /frameworks/av/services/audioflinger/
Threads.h 301 // track
470 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
471 MIXER_TRACKS_READY, // at least one active track, and at least one track has data
472 MIXER_DRAIN_TRACK, // drain currently playing track
478 // retry count before removing active track in case of underrun on offloaded thread:
504 virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
510 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
511 void removeTracks_l(const Vector< sp<Track> >& tracksToRemove)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/
slice_group_track.html 17 * A track that displays a SliceGroup.
22 'slice-group-track', tr.ui.tracks.MultiRowTrack);
30 this.classList.add('slice-group-track');
38 var track = new tr.ui.tracks.SliceTrack(this.viewport);
39 track.slices = slices;
40 this.appendChild(track);
41 return track;
letter_dot_track.html 14 <link rel="import" href="/ui/tracks/track.html">
17 .letter-dot-track {
30 * A track that displays an array of dots with filled letters inside them.
32 * @extends {Track}
35 'letter-dot-track', tr.ui.tracks.Track);
38 __proto__: tr.ui.tracks.Track.prototype,
41 tr.ui.tracks.Track.prototype.decorate.call(this, viewport);
42 this.classList.add('letter-dot-track');
object_instance_track.html 16 <link rel="import" href="/ui/tracks/track.html">
27 * A track that displays an array of Slice objects.
29 * @extends {Track}
32 'object-instance-track', tr.ui.tracks.Track);
35 __proto__: tr.ui.tracks.Track.prototype,
38 tr.ui.tracks.Track.prototype.decorate.call(this, viewport);
39 this.classList.add('object-instance-track');
189 // Dim the track when there is an active highlight.
counter_track.html 20 * A track that displays a Counter object.
24 var CounterTrack = tr.ui.b.define('counter-track', tr.ui.tracks.ChartTrack);
31 this.classList.add('counter-track');
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Constraint.java 8 import com.jme3.animation.Track;
99 * @return the bone track for the bone that is being affected by the constraint
104 for (Track track : animation.getTracks()) {
105 if (((BoneTrack) track).getTargetBoneIndex() == boneIndex) {
106 return new BlenderTrack(((BoneTrack) track));
109 throw new IllegalStateException("Cannot find track for: " + owner);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
TrackHeaderBox.java 27 * This box specifies the characteristics of a single track. Exactly one Track Header Box is contained in a track.<br>
28 * In the absence of an edit list, the presentation of a track starts at the beginning of the overall presentation. An
29 * empty edit is used to offset the start time of a track. <br>
30 * The default value of the track header flags for media tracks is 7 (track_enabled, track_in_movie,
32 * tracks shall be treated as if both flags were set on all tracks. Hint tracks should have the track header flags set
  /frameworks/av/include/media/
mediarecorder.h 132 // Track related event types
141 * When the error or info type is track specific, the what has
144 * the right-most 4-bit is meant for track id.
147 * | track id | reserved | error or info type |
154 // Track related error type
171 // All track related informtional events start here
184 // track data is interleaved.
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
Ipo.java 5 import com.jme3.animation.Track;
36 /** Each ipo contains one bone track. */
37 private Track calculatedTrack;
106 * This method calculates the value of the curves as a bone track between
120 * this flag indicates if the track belongs to a spatial or to a
124 * @return bone track for the specified bone
126 public Track calculateTrack(int targetIndex, int startFrame, int stopFrame, int fps, boolean spatialTrack) {
128 // preparing data for track
143 // calculating track data
  /external/sonivox/jet_tools/JetCreator/
JetCreatorhlp.dat 8 track mutes = Displays the track mute assignments associated with the segment. This is pulled in from the segment attributes.
20 track = Selects the MIDI track (not the channel) for the event.
51 track mutes = Checking a mute box will mute the associated track. You should mute a track if you intent to add a trigger event for that track.
102 tracklist = The tracks in the segment currently playing segment display here. Tracks which are muted are checked. Click on a track to toggle its mute status.
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
MusicService.java 300 for (MediaMetadata track : mMusicProvider.getMusicsByGenre(genre)) {
306 track.getDescription().getMediaId(), MEDIA_ID_MUSICS_BY_GENRE, genre);
307 MediaMetadata trackCopy = new MediaMetadata.Builder(track)
365 // so we can build the correct playing queue, based on where the track was
440 LogHelper.i(TAG, "onCustomAction: favorite for current track");
441 MediaMetadata track = getCurrentPlayingMusic(); local
442 if (track != null) {
443 String musicId = track.getString(MediaMetadata.METADATA_KEY_MEDIA_ID);
545 MediaMetadata track = mMusicProvider.getMusic(musicId); local
546 final String trackId = track.getString(MediaMetadata.METADATA_KEY_MEDIA_ID)
    [all...]
  /developers/samples/android/input/multitouch/BasicMultitouch/
template-params.xml 31 This sample demonstrates the use of MotionEvent properties to keep track of individual touches
58 Sample demonstrates the use of [MotionEvent][1] properties to keep track of
67 This is an example of keeping track of individual touches across multiple
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
MusicService.java 300 for (MediaMetadata track : mMusicProvider.getMusicsByGenre(genre)) {
306 track.getDescription().getMediaId(), MEDIA_ID_MUSICS_BY_GENRE, genre);
307 MediaMetadata trackCopy = new MediaMetadata.Builder(track)
365 // so we can build the correct playing queue, based on where the track was
440 LogHelper.i(TAG, "onCustomAction: favorite for current track");
441 MediaMetadata track = getCurrentPlayingMusic(); local
442 if (track != null) {
443 String musicId = track.getString(MediaMetadata.METADATA_KEY_MEDIA_ID);
545 MediaMetadata track = mMusicProvider.getMusic(musicId); local
546 final String trackId = track.getString(MediaMetadata.METADATA_KEY_MEDIA_ID)
    [all...]
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
MusicService.java 300 for (MediaMetadata track : mMusicProvider.getMusicsByGenre(genre)) {
306 track.getDescription().getMediaId(), MEDIA_ID_MUSICS_BY_GENRE, genre);
307 MediaMetadata trackCopy = new MediaMetadata.Builder(track)
365 // so we can build the correct playing queue, based on where the track was
440 LogHelper.i(TAG, "onCustomAction: favorite for current track");
441 MediaMetadata track = getCurrentPlayingMusic(); local
442 if (track != null) {
443 String musicId = track.getString(MediaMetadata.METADATA_KEY_MEDIA_ID);
545 MediaMetadata track = mMusicProvider.getMusic(musicId); local
546 final String trackId = track.getString(MediaMetadata.METADATA_KEY_MEDIA_ID)
    [all...]
  /frameworks/av/media/libstagefright/include/
AVIExtractor.h 52 struct Track {
82 Vector<Track> mTracks;
112 ssize_t trackIndex, Track::Kind kind, uint32_t chunkType);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanel.java 35 private StatePanelTrack track; field in class:StatePanel
50 track = (StatePanelTrack) panel;
51 track.setAdapter(MasterImage.getImage().getState());
  /art/test/800-smali/smali/
b_17978759.smali 18 # monitor-exit on v0, however, verifier doesn't track this and so this is
  /bootable/recovery/minzip/
SysUtil.h 22 * Use this to keep track of mapped segments.
  /cts/libs/deviceutil/src/android/cts/util/
MediaUtils.java 205 public static boolean hasCodecForTrack(MediaExtractor ex, int track) {
207 if (track < 0 || track >= count) {
208 throw new IndexOutOfBoundsException(track + " not in [0.." + (count - 1) + "]");
210 return canDecode(ex.getTrackFormat(track));
232 * return true iff any track starting with mimePrefix is supported
250 Context context, int resourceId, int track, String mimePrefix) {
260 } else if (track == ALL_AV_TRACKS) {
263 return hasCodecForTrack(ex, track);
291 * return true iff track is supported
    [all...]

Completed in 315 milliseconds

<<11121314151617181920>>