/external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/ |
stacked_bars_track.html | 10 <link rel="import" href="/ui/tracks/track.html"> 17 * A track that displays traces as stacked bars. 19 * @extends {Track} 22 'stacked-bars-track', tr.ui.tracks.Track); 26 __proto__: tr.ui.tracks.Track.prototype, 29 tr.ui.tracks.Track.prototype.decorate.call(this, viewport); 30 this.classList.add('stacked-bars-track');
|
sample_track_test.html | 23 var track = new SampleTrack(new tr.ui.TimelineViewport()); 27 track.samples = [sample]; 28 var me0 = track.rects[0].modelItem;
|
drawing_container.html | 11 <link rel="import" href="/ui/tracks/track.html"> 30 tr.ui.tracks.Track); 33 __proto__: tr.ui.tracks.Track.prototype, 36 tr.ui.tracks.Track.prototype.decorate.call(this, viewport); 94 if (!(this.children[i] instanceof tr.ui.tracks.Track)) 138 if (!(element instanceof tr.ui.tracks.Track)) 146 if (!(this.children[i] instanceof tr.ui.tracks.Track)) 157 tr.ui.tracks.Track.prototype.addClosestEventToSelection. 163 if (!(this.children[i] instanceof tr.ui.tracks.Track)) 171 if (!(this.children[i] instanceof tr.ui.tracks.Track)) [all...] |
/external/skia/src/animator/ |
SkScriptRuntime.h | 39 void track(SkOpArray* array); 40 void track(SkString* string);
|
/frameworks/av/media/libstagefright/wifi-display/source/ |
TSPacketizer.cpp | 35 struct TSPacketizer::Track : public RefBase { 36 Track(const sp<AMessage> &format, 64 virtual ~Track(); 83 DISALLOW_EVIL_CONSTRUCTORS(Track); 86 TSPacketizer::Track::Track( 100 void TSPacketizer::Track::extractCSDIfNecessary() { 127 TSPacketizer::Track::~Track() { 130 unsigned TSPacketizer::Track::PID() const 422 const sp<Track> &track = mTracks.itemAt(i); local 438 sp<Track> track = new Track(format, PID, streamType, streamID); local 447 const sp<Track> &track = mTracks.itemAt(trackIndex); local 471 const sp<Track> &track = mTracks.itemAt(trackIndex); local 785 const sp<Track> &track = mTracks.itemAt(i); local 1041 const sp<Track> &track = mTracks.itemAt(trackIndex); local [all...] |
/frameworks/base/media/java/android/media/tv/ |
TvTrackInfo.java | 88 * Returns the type of the track. The type should be one of the followings: 96 * Returns the ID of the track. 111 * Returns a user readable description for the current track. 122 throw new IllegalStateException("Not an audio track"); 132 throw new IllegalStateException("Not an audio track"); 143 throw new IllegalStateException("Not a video track"); 154 throw new IllegalStateException("Not a video track"); 165 throw new IllegalStateException("Not a video track"); 176 throw new IllegalStateException("Not a video track"); 182 * Returns the extra information about the current track [all...] |
/external/compiler-rt/test/msan/ |
pthread_getattr_np_deadlock.cc | 1 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && %run %t
|
select_origin.cc | 1 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s 2 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s 3 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s
|
/external/llvm/cmake/modules/ |
AddLLVMDefinitions.cmake | 1 # There is no clear way of keeping track of compiler command-line
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
SilenceTrackImpl.java | 5 import com.googlecode.mp4parser.authoring.Track; 16 public class SilenceTrackImpl implements Track { 17 Track source; 22 public SilenceTrackImpl(Track ofType, long ms) {
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/ |
SrtParser.java | 26 * Parses a .srt file and creates a Track for it. 31 TextTrackImpl track = new TextTrackImpl(); local 44 track.getSubs().add(new TextTrackImpl.Line(startTime, endTime, lineString)); 47 return track;
|
/external/skia/site/user/ |
issue-tracker.md | 4 The "Issue Tracker" is the bug database where we track all bug reports and
|
/external/valgrind/docs/internals/ |
3_5_BUGSTATUS.txt | 3 merely to keep track of stuff that we currently can't/don't in
|
/packages/apps/Calendar/src/com/android/calendar/ |
AnalyticsLogger.java | 19 * Track what view people are using.
|
/frameworks/av/media/libstagefright/include/ |
MPEG2PSExtractor.h | 30 struct Track; 48 struct Track; 57 KeyedVector<unsigned, sp<Track> > mTracks;
|
/frameworks/av/services/audioflinger/ |
AudioMixer.cpp | 53 /* VERY_VERY_VERBOSE_LOGGING will show exactly which process hook and track hook is 110 // AudioMixer is not yet capable of more than 32 active track inputs 171 ALOGV("add track (%d)", n); 172 // assume default parameters for the track, except where noted below 217 // setParameter(name, TRACK, MAIN_BUFFER, mixBuffer) is required before enable(name) 257 // Called when channel masks have changed for a track name 262 track_t &track = mState.tracks[name]; local 264 if (trackChannelMask == track.channelMask 265 && mixerChannelMask == track.mMixerChannelMask) { 271 const bool mixerChannelCountChanged = track.mMixerChannelCount != mixerChannelCount 459 track_t& track = mState.tracks[name]; local 472 track_t& track = mState.tracks[name]; local 610 track_t& track = mState.tracks[name]; local [all...] |
AudioMixer.h | 51 // This mixer has a hard-coded upper limit of 32 active track inputs. 67 // track names (MAX_NUM_TRACKS units) 73 TRACK = 0x3000, 80 // for target TRACK 89 SAMPLE_RATE = 0x4100, // Configure sample rate conversion on this track name; 92 // the track sample rate is different from the mix sample rate. 98 REMOVE = 0x4102, // Remove the sample rate converter on this track name; 99 // the track is restored to the mix sample rate. 106 PLAYBACK_RATE = 0x4300, // Configure timestretch on this track name; 113 // Allocate a track name. Returns new track name if successful, -1 on failure [all...] |
/external/chromium-trace/trace-viewer/tracing/tracing/model/ |
selectable_item_test.html | 64 var track = {}; 65 selectableItem.addToTrackMap(eventToTrackMap, track); 73 var track = {}; 74 selectableItem.addToTrackMap(eventToTrackMap, track); 76 assert.equal(eventToTrackMap[event.guid], track);
|
/frameworks/av/include/media/stagefright/ |
MPEG4Writer.h | 44 // Returns INVALID_OPERATION if there is no source or track. 75 class Track; 84 bool mStarted; // Writer thread + track threads started successfully 105 List<Track *> mTracks; 118 Track *mTrack; // Owner 125 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples) 126 : mTrack(track), mTimeStampUs(timeUs), mSamples(samples) { 131 Track *mTrack; // Owner 167 // Adjust other track media clock (presumably wall clock [all...] |
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
GenericSource.h | 107 struct Track { 114 Track mAudioTrack; 117 Track mVideoTrack; 120 Track mSubtitleTrack; 121 Track mTimedTextTrack; 206 bool seeking, bool formatChange, media_track_type trackType, Track *track);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d3dx9anim.h | 146 UINT Track; 309 STDMETHOD(HandleCallback)(THIS_ UINT track, LPVOID callback_data) PURE; 335 STDMETHOD(SetTrackAnimationSet)(THIS_ UINT track, ID3DXAnimationSet *anim_set) PURE; 336 STDMETHOD(GetTrackAnimationSet)(THIS_ UINT track, ID3DXAnimationSet **anim_set) PURE; 337 STDMETHOD(GetTrackPriority)(THIS_ UINT track, D3DXPRIORITY_TYPE *priority) PURE; 338 STDMETHOD(SetTrackSpeed)(THIS_ UINT track, FLOAT speed) PURE; 339 STDMETHOD(SetTrackWeight)(THIS_ UINT track, FLOAT weight) PURE; 340 STDMETHOD(SetTrackPosition)(THIS_ UINT track, DOUBLE position) PURE; 341 STDMETHOD(SetTrackEnable)(THIS_ UINT track, WINBOOL enable) PURE; 342 STDMETHOD(SetTrackDesc)(THIS_ UINT track, LPD3DXTRACK_DESC desc) PURE [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
Animation.java | 58 private Track[] tracks; 95 * This method behaves differently for every known track type. 96 * Override this method if you have your own type of track. 113 Track<?> trackInstance = tracks[0]; 144 * Set the {@link Track}s to be used by this animation. 146 * The array should be organized so that the appropriate Track can 151 public void setTracks(Track[] tracks){ 156 * Returns the tracks set in {@link #setTracks(com.jme3.animation.Track[]) }. 160 public Track[] getTracks() { 202 tracks = new Track[arr.length] [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
c4t64fx.c | 28 * 4 tracks x 16 positions per track = 64 samples. * 75 Word16 track, /* (i) track to use */ 85 Word16 track, /* (i) track to use */ 95 Word16 track, /* (i) track to use */ 104 Word16 track_x, /* (i) track of pulse 1 */ 105 Word16 track_y, /* (i) track of pulse 2 */ 136 Word16 st, ix, iy, pos, index, track, nb_pulse, nbiter, j_temp local [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
FileCleaningTracker.java | 26 * Keeps track of files awaiting deletion, and deletes them when an associated 63 * Track the specified file, using the provided marker, deleting the file 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); method 76 * Track the specified file, using the provided marker, deleting the file 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 93 * Track the specified file, using the provided marker, deleting the file 98 * @param marker the marker object used to track the file, not nul 101 public void track(String path, Object marker) { method in class:FileCleaningTracker 102 track(path, marker, (FileDeleteStrategy) null); method 115 public void track(String path, Object marker, FileDeleteStrategy deleteStrategy) { method in class:FileCleaningTracker [all...] |
/development/ndk/platforms/android-21/include/media/ |
NdkMediaExtractor.h | 71 * Return the format of the specified track. The caller must free the returned format 76 * Select the specified track. Subsequent calls to readSampleData, getSampleTrackIndex and 78 * Selecting the same track multiple times has no effect, the track is 84 * Unselect the specified track. Subsequent calls to readSampleData, getSampleTrackIndex and 100 * Returns the track index the current sample originates from (or -1
|