/external/v8/test/mjsunit/regress/ |
regress-365172-2.js | 5 // Flags: --allow-natives-syntax --track-field-types
|
regress-365172-3.js | 5 // Flags: --expose-gc --track-field-types
|
/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>
|
/frameworks/av/media/libstagefright/rtsp/ |
MyHandler.h | 582 // The first "track" is merely session meta 628 // The first "track" is merely session meta 652 TrackInfo *track = NULL; local 654 if (msg->findSize("track-index", &trackIndex)) { 655 track = &mTracks.editItemAt(trackIndex); 665 CHECK(track != NULL); 714 notify->setSize("track-index", trackIndex); 719 if (track->mRTPSocket != -1 && track->mRTCPSocket != -1) { 720 if (!track->mUsingInterleavedTCP) 1018 TrackInfo *track = &mTracks.editItemAt(trackIndex); local 1717 TrackInfo *track; local 1753 TrackInfo *track = &mTracks.editItemAt(trackIndex); local 1766 TrackInfo *track = &mTracks.editItemAt(i); local 1808 TrackInfo *track = &mTracks.editItemAt(trackIndex); local 1815 TrackInfo *track = &mTracks.editItemAt(trackIndex); local [all...] |
/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/jmonkeyengine/engine/src/core/com/jme3/animation/ |
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...] |
/frameworks/av/media/libstagefright/ |
MPEG4Writer.cpp | 76 class MPEG4Writer::Track { 78 Track(MPEG4Writer *owner, const sp<MediaSource> &source, size_t trackId); 80 ~Track(); 291 // Update the audio track's drift information. 306 // Track authoring progress status 312 // Determine the track time scale 313 // If it is an audio track, try to use the sampling rate as 358 Track(const Track &); 359 Track &operator=(const Track &) 512 Track *track = new Track(this, source, 1 + mTracks.size()); local 1695 Track *track = NULL; local 1893 Track *track = static_cast<Track *>(me); local [all...] |
/external/chromium-trace/trace-viewer/tracing/tracing/model/ |
selectable_item.html | 47 addToTrackMap: function(eventToTrackMap, track) { 51 eventToTrackMap.addEvent(modelItem, track);
|
/external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/ |
alert_track.html | 14 * A track that displays an array of alert objects. 19 'alert-track', tr.ui.tracks.LetterDotTrack);
|
rect_track.html | 16 <link rel="import" href="/ui/tracks/track.html"> 24 * A track that displays an array of Rect objects. 26 * @extends {Track} 29 'rect-track', tr.ui.tracks.Track); 33 __proto__: tr.ui.tracks.Track.prototype, 36 tr.ui.tracks.Track.prototype.decorate.call(this, viewport); 37 this.classList.add('rect-track');
|
thread_track.html | 28 var ThreadTrack = tr.ui.b.define('thread-track', 35 this.classList.add('thread-track'); 85 var track = new tr.ui.tracks.SliceGroupTrack(this.viewport); 86 track.heading = this.thread_.userFriendlyName; 87 track.tooltip = this.thread_.userFriendlyDetails; 88 track.group = this.thread_.sliceGroup; 89 if (track.hasVisibleContent) 90 this.appendChild(track);
|
thread_track_test.html | 47 var track = new ThreadTrack(viewport); 48 drawingContainer.appendChild(track); 50 track.thread = t1; 52 var y = track.getBoundingClientRect().top; 53 var h = track.getBoundingClientRect().height; 58 track.viewport.setDisplayTransformImmediately(dt); 62 track.addIntersectingEventsInRangeToSelection( 67 track.addIntersectingEventsInRangeToSelection(
|
/external/compiler-rt/test/msan/ |
chained_origin_with_signals.cc | 5 // RUN: %clangxx_msan -fsanitize-memory-track-origins=2 -O3 %s -o %t && \ 9 // RUN: %clangxx_msan -mllvm -msan-instrumentation-with-call-threshold=0 -fsanitize-memory-track-origins=2 -O3 %s -o %t && \
|
insertvalue_origin.cc | 1 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t >%t.out 2>&1 3 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O3 %s -o %t && not %run %t >%t.out 2>&1
|
msan_dump_shadow.cc | 4 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 -g %s -o %t && %run %t >%t.out 2>&1 7 // RUN: %clangxx_msan -fsanitize-memory-track-origins=2 -O0 -g %s -o %t && %run %t >%t.out 2>&1
|
origin-store-long.cc | 2 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t >%t.out 2>&1 4 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O2 %s -o %t && not %run %t >%t.out 2>&1
|
realloc-origin.cc | 1 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t >%t.out 2>&1 3 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O2 %s -o %t && not %run %t >%t.out 2>&1
|
select_float_origin.cc | 4 // RUN: %clangxx_msan -O2 -fsanitize-memory-track-origins %s -o %t && not %run %t >%t.out 2>&1 7 // RUN: %clangxx_msan -O2 -fsanitize-memory-track-origins=2 %s -o %t && not %run %t >%t.out 2>&1
|
unaligned_read_origin.cc | 1 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t >%t.out 2>&1 3 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O3 %s -o %t && not %run %t >%t.out 2>&1
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
ConstraintDampTrack.java | 12 * The damp track constraint. Available for blender 2.50+.
41 LOGGER.log(Level.WARNING, "'Damp Track' constraint NOT implemented!");
|
ConstraintLockTrack.java | 40 // TODO: implement 'Lock track' constraint
41 LOGGER.log(Level.WARNING, "'Lock track' constraint NOT implemented!");
|
/external/libvpx/libvpx/third_party/libwebm/ |
mkvmuxerutil.hpp | 64 // track_number: Track to add the data to. Value returned by Add track 77 // track_number: Track to add the data to. Value returned by Add track 94 // track_number: Track to add the data to. Value returned by Add track 111 // track_number: Track to add the data to. Value returned by Add track
|
/external/libvpx/libvpx/vp8/decoder/ |
ec_types.h | 30 /* Structure to keep track of overlapping blocks on a block level. */ 45 /* Structure for keeping track of motion vectors and which reference frame they
|
/external/llvm/include/llvm/IR/ |
TrackingMDRef.h | 10 // References to metadata that track RAUW. 34 explicit TrackingMDRef(Metadata *MD) : MD(MD) { track(); } 37 TrackingMDRef(const TrackingMDRef &X) : MD(X.MD) { track(); } 53 track(); 70 track(); 84 void track() { function in class:llvm::TrackingMDRef 86 MetadataTracking::track(MD); 103 /// Track refererences of a particular type. It's useful to use this for \a
|
/frameworks/av/include/media/ |
IAudioTrack.h | 40 /* Get this track's control block */ 43 /* After it's created the track is not active. Call start() to 48 /* Stop a track. If set, the callback will cease being called and 54 /* Flush a stopped or paused track. All pending/released buffers are discarded. 55 * This function has no effect if the track is not stopped or paused. 59 /* Pause a track. If set, the callback will cease being called and 65 /* Attach track auxiliary output to specified effect. Use effectId = 0 66 * to detach track from effect.
|