/frameworks/av/services/audioflinger/ |
AudioMixer.h | 46 // This mixer has a hard-coded upper limit of 32 active track inputs. 62 // track names (MAX_NUM_TRACKS units) 68 TRACK = 0x3000, 74 // for target TRACK 81 SAMPLE_RATE = 0x4100, // Configure sample rate conversion on this track name; 84 // the track sample rate is different from the mix sample rate. 90 REMOVE = 0x4102, // Remove the sample rate converter on this track name; 91 // the track is restored to the mix sample rate. 101 // Allocate a track name. Returns new track name if successful, -1 on failure [all...] |
/external/chromium/chrome/browser/resources/gpu_internals/ |
timeline_track.js | 59 this.className = 'timeline-thread-track'; 100 var track = new TimelineSliceTrack(); 103 track.heading = this.thread_.parent.pid + ': ' + 106 track.heading = ''; 107 track.slices = this.thread_.subRows[srI]; 108 track.viewport = this.viewport_; 110 this.tracks_.push(track); 111 this.appendChild(track); 127 var track = this.tracks_[i]; 128 if (wY >= track.offsetTop && wY < track.offsetTop + track.offsetHeight [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...] |
BoneTrack.java | 46 public final class BoneTrack implements Track { 49 * Bone index in the skeleton which this track effects. 54 * Transforms and times for track. 68 * Creates a bone track for the given bone index 80 * Creates a bone track for the given bone index 93 * Creates a bone track for the given bone index 101 * @return the bone index of this bone track. 108 * return the array of rotations of this track 116 * returns the array of scales for this track 124 * returns the arrays of time for this track [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
popover.css | 125 .popover ::-webkit-scrollbar-track-piece:horizontal:start { 129 .popover ::-webkit-scrollbar-track-piece:horizontal:end { 133 .popover ::-webkit-scrollbar-track-piece:horizontal:end:corner-present { 137 .popover ::-webkit-scrollbar-track-piece:horizontal:decrement { 143 .popover ::-webkit-scrollbar-track-piece:horizontal:increment { 172 .popover ::-webkit-scrollbar-track-piece:vertical:start { 176 .popover ::-webkit-scrollbar-track-piece:vertical:end { 180 .popover ::-webkit-scrollbar-track-piece:vertical:end:corner-present { 184 .popover ::-webkit-scrollbar-track-piece:vertical:decrement { 190 .popover ::-webkit-scrollbar-track-piece:vertical:increment [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/ |
SDL_cdrom.c | 159 for ( i=1; cdrom->track[i].offset <= position; ++i ) { 163 fprintf(stderr, "Current position: %d, track = %d (offset is %d)\n", 164 position, i-1, cdrom->track[i-1].offset); 167 position -= cdrom->track[cdrom->cur_track].offset; 187 SDL_SetError("Invalid starting track"); 208 (cdrom->track[strack].type == SDL_DATA_TRACK) ) { 211 if ( sframe >= (int)cdrom->track[strack].length ) { 212 SDL_SetError("Invalid starting frame for track %d", strack); 216 (cdrom->track[etrack-1].type == SDL_DATA_TRACK) ) { 219 if ( eframe > (int)cdrom->track[etrack].length ) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/beos/ |
SDL_syscdrom.cc | 46 #define CD_TRACK(toc, track) (&toc.toc_data[6+(track)*8]) 47 #define CD_TRACK_N(toc, track) CD_TRACK(toc, track)[0] 48 #define CD_TRACK_M(toc, track) CD_TRACK(toc, track)[3] 49 #define CD_TRACK_S(toc, track) CD_TRACK(toc, track)[4] 50 #define CD_TRACK_F(toc, track) CD_TRACK(toc, track)[5 [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/win32/ |
SDL_syscdrom.c | 178 /* Read all the track TOC entries */ 181 cdrom->track[i].id = i+1; 182 mci_status.dwTrack = cdrom->track[i].id; 190 cdrom->track[i].type = SDL_AUDIO_TRACK; 192 cdrom->track[i].type = SDL_DATA_TRACK; 195 cdrom->track[i].type = SDL_AUDIO_TRACK; 202 cdrom->track[i].offset = MSF_TO_FRAMES( 206 cdrom->track[i].length = 0; 208 cdrom->track[i-1].length = 209 cdrom->track[i].offset [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/Email/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 null 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...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
ConstraintRotLike.java | 58 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
local 60 Quaternion[] rotations = track.getRotations();
67 track.setKeyframes(track.getTimes(), track.getTranslations(), rotations, track.getScales());
|
ConstraintShrinkWrap.java | 66 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
local 67 Vector3f[] translations = track.getTranslations();
68 Quaternion[] rotations = track.getRotations();
86 track.setKeyframes(track.getTimes(), translations, rotations, track.getScales());
|
ConstraintSizeLike.java | 63 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
local 64 Vector3f[] scales = track.getScales();
69 track.setKeyframes(track.getTimes(), track.getTranslations(), track.getRotations(), scales);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
MultiplyTimeScaleTrack.java | 20 import com.googlecode.mp4parser.authoring.Track; 34 * Changes the timescale of a track by wrapping the track. 36 public class MultiplyTimeScaleTrack implements Track { 37 Track source; 40 public MultiplyTimeScaleTrack(Track source, int timeScaleFactor) {
|
ReplaceSampleTrack.java | 20 import com.googlecode.mp4parser.authoring.Track; 29 * Generates a Track where a single sample has been replaced by a given <code>ByteBuffer</code>. 33 Track origTrack; 38 public ReplaceSampleTrack(Track origTrack, long sampleNumber, ByteBuffer content) {
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
AudioTrackLinearLayout.java | 74 * Add an audio track 80 * The audio track action mode handler 91 * @param audioTrack The audio track 232 // Add the audio track button 272 if (tag != null) { // This view represents an audio track 346 * Add a new audio track 348 * @param audioTrack The audio track 384 * Remove an audio track 386 * @param audioTrackId The audio track id 408 * Update the audio track ite [all...] |
/external/chromium-trace/trace-viewer/src/ |
selection_test.html | 53 var track = new tracing.tracks.SliceTrack(); 54 track.slices = t1.slices; 57 sel.addSlice(track, t1.slices[0]);
|
/external/chromium/chrome/browser/chromeos/cros/ |
update_library.h | 73 // Sets the release track (channel). |track| should look like 75 virtual void SetReleaseTrack(const std::string& track) = 0; 77 // Calls |callback| with the release track (channel). On error, calls
|
/external/noto-fonts/ |
README | 9 does not necessarily track it exactly, and contains only the fonts
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/inc/ |
VideoEditorMain.h | 39 M4OSA_Bool bRemoveOriginal; /** If true, the original audio track 47 audio track is inserted */ 48 M4OSA_UInt32 uiAddVolume; /** Volume, in percentage, of the added audio track */ 56 M4OSA_UInt32 uiInDucking_lowVolume; /** lower the background track to
|
/frameworks/base/core/java/android/text/ |
package.html | 4 <p>Provides classes used to render or track text and text spans on the screen.</p>
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
FlatManifestWriterImpl.java | 27 import com.googlecode.mp4parser.authoring.Track; 75 for (Track track : movie.getTracks()) { 76 if (track.getMediaHeaderBox() instanceof VideoMediaHeaderBox) { 77 videoFragmentsDurations = checkFragmentsAlign(videoFragmentsDurations, calculateFragmentDurations(track, movie)); 78 SampleDescriptionBox stsd = track.getSampleDescriptionBox(); 79 videoQualities.add(getVideoQuality(track, (VisualSampleEntry) stsd.getSampleEntry())); 81 videoTimescale = track.getTrackMetaData().getTimescale(); 83 assert videoTimescale == track.getTrackMetaData().getTimescale(); 86 if (track.getMediaHeaderBox() instanceof SoundMediaHeaderBox) [all...] |
/external/e2fsprogs/e2fsck/ |
util.c | 273 void init_resource_track(struct resource_track *track, io_channel channel) 280 track->brk_start = sbrk(0); 281 gettimeofday(&track->time_start, 0); 287 track->user_start = r.ru_utime; 288 track->system_start = r.ru_stime; 290 track->user_start.tv_sec = track->user_start.tv_usec = 0; 291 track->system_start.tv_sec = track->system_start.tv_usec = 0; 293 track->bytes_read = 0 [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/mint/ |
SDL_syscdrom.c | 185 /* Read all the track TOC entries */ 189 cdrom->track[i].id = CDROM_LEADOUT; 191 cdrom->track[i].id = toc.cdth_trk0+i; 193 entry.cdte_track = cdrom->track[i].id; 200 cdrom->track[i].type = SDL_DATA_TRACK; 202 cdrom->track[i].type = SDL_AUDIO_TRACK; 204 cdrom->track[i].offset = MSF_TO_FRAMES( 208 cdrom->track[i].length = 0; 210 cdrom->track[i-1].length = cdrom->track[i].offset-cdrom->track[i-1].offset [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
MyHandler.h | 551 // The first "track" is merely session meta 597 // The first "track" is merely session meta 621 TrackInfo *track = NULL; local 623 if (msg->findSize("track-index", &trackIndex)) { 624 track = &mTracks.editItemAt(trackIndex); 634 CHECK(track != NULL); 683 notify->setSize("track-index", trackIndex); 688 if (!track->mUsingInterleavedTCP) { 694 track->mRTPSocket, 695 track->mRTCPSocket 979 TrackInfo *track = &mTracks.editItemAt(trackIndex); local 1664 TrackInfo *track; local 1680 TrackInfo *track = &mTracks.editItemAt(trackIndex); local 1693 TrackInfo *track = &mTracks.editItemAt(i); local 1749 TrackInfo *track = &mTracks.editItemAt(trackIndex); local [all...] |