Searched defs:track (Results 126 - 150 of 152) sorted by relevance

1234567

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatscollector.cc273 // Strings for the direction of the track.
297 // Adds an empty track report.
307 webrtc::MediaStreamTrackInterface* track = tracks[j]; local
308 AddTrackReport(reports, track->id());
533 // Each track can have stats for both local and remote objects.
582 // Create the kStatsReportTypeTrack report for the new track if there is no
604 void StatsCollector::GetStats(MediaStreamTrackInterface* track, argument
609 if (!track) {
623 StatsId(StatsReport::kStatsReportTypeTrack, track->id()));
639 if (track_id == track
1003 AudioTrackInterface* track = it->first; local
1029 UpdateReportFromAudioTrack(AudioTrackInterface* track, StatsReport* report) argument
[all...]
H A Dwebrtcsdp.cc223 // Create random string (which will be used as track label later)?
597 // In that case, we use the mslabel and label to construct the track.
611 StreamParamsVec::iterator track = tracks->begin(); local
612 for (; track != tracks->end(); ++track) {
613 if (track->id == track_id) {
617 if (track == tracks->end()) {
618 // If we don't find an existing track, create a new one.
620 track = tracks->end() - 1;
622 track
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkScript2.h46 void track(SkOpArray* array) { function in class:SkScriptEngine2
49 void track(SkString* string) { function in class:SkScriptEngine2
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpSegment.cpp718 bool decrement, track, bigger; local
726 track = test->fWindValue || oTest->fWindValue;
739 } else if (track) {
755 } else if (track) {
787 } else if (track) {
/external/chromium_org/ui/native_theme/
H A Dnative_theme_base.cc476 SkScalar track[3]; local
477 SkColorToHSV(track_color_, track);
478 paint.setColor(OutlineColor(track, thumb));
1067 // This works fine for the track color and the overall thumb
1075 // known color of the track and the thumb piece. This is difficult
/external/flac/libFLAC/
H A Dmetadata_iterators.c99 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_cuesheet_track_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_CueSheet_Track *track);
2268 FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_cuesheet_track_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_CueSheet_Track *track) argument
2281 track->offset = unpack_uint64_(buffer, len);
2287 track->number = (FLAC__byte)unpack_uint32_(buffer, len);
2291 if(read_cb(track->isrc, 1, len, handle) != len)
2300 track->type = buffer[0] >> 7;
2301 track->pre_emphasis = (buffer[0] >> 6) & 1;
2307 track->num_indices = (FLAC__byte)unpack_uint32_(buffer, len);
2309 if(track->num_indices == 0) {
2310 track
2698 FLAC__StreamMetadata_CueSheet_Track *track = block->tracks + i; local
[all...]
H A Dstream_decoder.c1805 FLAC__StreamMetadata_CueSheet_Track *track = &obj->tracks[i]; local
1806 if(!FLAC__bitreader_read_raw_uint64(decoder->private_->input, &track->offset, FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN))
1811 track->number = (FLAC__byte)x;
1814 if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)track->isrc, FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN/8))
1819 track->type = x;
1823 track->pre_emphasis = x;
1830 track->num_indices = (FLAC__byte)x;
1832 if(track->num_indices > 0) {
1833 if(0 == (track->indices = (FLAC__StreamMetadata_CueSheet_Index*)safe_calloc_(track
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dfd.h15 sect, /* sectors per track */
17 track, /* nr of tracks */ member in struct:floppy_struct
18 stretch; /* bit 0 !=0 means double track steps */
73 unsigned int device,head,track; member in struct:format_descr
79 /* format the specified track */
91 * entire track at once */
213 short track; /* current track */ member in struct:floppy_drive_struct
215 short maxtrack; /* id of highest half track read */
275 unsigned char track[ member in struct:floppy_fdc_state
363 int track; member in struct:floppy_raw_cmd
[all...]
/external/libvorbis/lib/
H A Dpsy.c1066 int step,track = 0; local
1087 acc[track]=noise_normalize(p,limit,raw[k],quant[k],floor[k],NULL,acc[track],i,jn,iout);
1097 acc[track]=0.f;
1099 track++;
1180 acc[track]=noise_normalize(p,limit,raw[Mi],quant[Mi],floor[Mi],flag[Mi],acc[track],i,jn,iM);
1181 track++;
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.hpp120 // Mkv track number the data is associated with.
145 void set_track(uint64 track) { track_ = track; } argument
146 uint64 track() const { return track_; } function in class:mkvmuxer::CuePoint
255 // Elements used to describe if the track data has been encrypted or
309 // The |seed| parameter is used to synthesize a UID for the track.
405 // The |seed| parameter is used to synthesize a UID for the track.
439 // Video track element names.
455 // The |seed| parameter is used to synthesize a UID for the track.
474 // Audio track elemen
[all...]
H A Dmkvmuxer.cpp987 Track* const track = track_entries_[i]; local
988 delete track;
994 bool Tracks::AddTrack(Track* track, int32 number) { argument
998 // This muxer only supports track numbers in the range [1, 126], in
1000 // serialize the block header (of which the track number is a part)
1009 // Check to make sure a track does not already have |track_num|.
1028 // Find the lowest availible track number > 0.
1032 // Check to make sure a track does not already have |track_num|.
1045 track->set_number(track_num);
1048 track_entries_[track_entries_size_] = track;
1074 const Track* const track = GetTrackByNumber(track_number); local
1083 const Track* const track = GetTrackByNumber(track_number); local
1095 const Track* const track = GetTrackByIndex(i); local
1111 const Track* const track = GetTrackByIndex(i); local
2311 Track* const track = new (std::nothrow) Track(&seed_); // NOLINT local
2329 VideoTrack* const track = new (std::nothrow) VideoTrack(&seed_); // NOLINT local
2344 AddCuePoint(uint64 timestamp, uint64 track) argument
2370 AudioTrack* const track = new (std::nothrow) AudioTrack(&seed_); // NOLINT local
2743 const Track* const track = GetTrackByNumber(track_number); local
3014 const Track* const track = tracks_.GetTrackByIndex(i); local
3026 const Track* const track = tracks_.GetTrackByIndex(0); local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devsel.c574 int track = !evsel->idx; /* only the first counter needs these */ local
633 attr->mmap_data = track;
680 attr->mmap = track;
681 attr->comm = track;
/external/skia/src/animator/
H A DSkScript2.h46 void track(SkOpArray* array) { function in class:SkScriptEngine2
49 void track(SkString* string) { function in class:SkScriptEngine2
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp962 Track* const track = track_entries_[i]; local
963 delete track;
969 bool Tracks::AddTrack(Track* track, int32 number) { argument
973 // This muxer only supports track numbers in the range [1, 126], in
975 // serialize the block header (of which the track number is a part)
984 // Check to make sure a track does not already have |track_num|.
1003 // Find the lowest availible track number > 0.
1007 // Check to make sure a track does not already have |track_num|.
1020 track->set_number(track_num);
1023 track_entries_[track_entries_size_] = track;
1049 const Track* const track = GetTrackByNumber(track_number); local
1058 const Track* const track = GetTrackByNumber(track_number); local
1070 const Track* const track = GetTrackByIndex(i); local
1086 const Track* const track = GetTrackByIndex(i); local
2198 Track* const track = new (std::nothrow) Track(&seed_); // NOLINT local
2214 VideoTrack* const track = new (std::nothrow) VideoTrack(&seed_); // NOLINT local
2229 AddCuePoint(uint64 timestamp, uint64 track) argument
2253 AudioTrack* const track = new (std::nothrow) AudioTrack(&seed_); // NOLINT local
2586 const Track* const track = GetTrackByNumber(track_number); local
2853 const Track* const track = tracks_.GetTrackByIndex(i); local
2865 const Track* const track = tracks_.GetTrackByIndex(0); local
[all...]
H A Dmkvmuxer.hpp119 // Mkv track number the data is associated with.
144 void set_track(uint64 track) { track_ = track; } argument
145 uint64 track() const { return track_; } function in class:mkvmuxer::CuePoint
252 // Elements used to describe if the track data has been encrypted or
306 // The |seed| parameter is used to synthesize a UID for the track.
404 // The |seed| parameter is used to synthesize a UID for the track.
438 // Video track element names.
454 // The |seed| parameter is used to synthesize a UID for the track.
473 // Audio track elemen
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaElement.cpp53 #include "core/html/track/AudioTrack.h"
54 #include "core/html/track/AudioTrackList.h"
55 #include "core/html/track/InbandTextTrack.h"
56 #include "core/html/track/TextTrackCueList.h"
57 #include "core/html/track/TextTrackList.h"
58 #include "core/html/track/VideoTrack.h"
59 #include "core/html/track/VideoTrackList.h"
840 TextTrack* track = m_textTracks->item(i); local
841 if (track->mode() != TextTrack::disabledKeyword())
842 m_textTracksWhenResourceSelectionBegan.append(track);
1395 textTrackReadyStateChanged(TextTrack* track) argument
1409 textTrackModeChanged(TextTrack* track) argument
1444 textTrackKindChanged(TextTrack* track) argument
1463 textTrackAddCues(TextTrack* track, const TextTrackCueList* cues) argument
1483 textTrackAddCue(TextTrack* track, PassRefPtrWillBeRawPtr<TextTrackCue> cue) argument
2518 AudioTrack* track = audioTracks().anonymousIndexedGetter(i); local
2651 addTextTrack(TextTrack* track) argument
2658 removeTextTrack(TextTrack* track) argument
2770 textTrackLanguageSelectionScore(const TextTrack& track) argument
2783 textTrackSelectionScore(const TextTrack& track) argument
[all...]
/external/libmtp/src/
H A Dlibmtp.c152 LIBMTP_track_t *track);
2335 // This is some sort of unique ID so we can keep track of the track.
2467 // Add track to a list that will be returned afterwards.
3943 // This is some sort of unique ID so we can keep track of the track.
4026 // Add track to a list that will be returned afterwards.
4094 // This is some sort of unique ID so we can keep track of the file.
4147 * This creates a new track metadata structure and allocates memory
4154 * LIBMTP_track_t *track
4202 LIBMTP_destroy_track_t(LIBMTP_track_t *track) argument
4228 pick_property_to_track_metadata(LIBMTP_mtpdevice_t *device, MTPProperties *prop, LIBMTP_track_t *track) argument
4315 get_track_metadata(LIBMTP_mtpdevice_t *device, uint16_t objectformat, LIBMTP_track_t *track) argument
4474 LIBMTP_track_t *track; local
4578 LIBMTP_track_t *track; local
6389 LIBMTP_Set_Track_Name(LIBMTP_mtpdevice_t *device, LIBMTP_track_t *track, const char* newname) argument
[all...]
/external/libvpx/libvpx/third_party/nestegg/src/
H A Dnestegg.c248 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) argument
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);
1359 pkt->track = track;
1468 ne_find_cue_position_for_track(nestegg * ctx, struct ebml_list_node * node, unsigned int track) argument
1493 ne_find_cue_point_for_tstamp(nestegg * ctx, struct ebml_list_node * cue_point, unsigned int track, uint64_t scale, uint64_t tstamp) argument
1703 struct ebml_list_node * track; local
1831 unsigned int track = 0, track_count = 0, track_index; local
1912 nestegg_track_seek(nestegg * ctx, unsigned int track, uint64_t tstamp) argument
1955 nestegg_track_type(nestegg * ctx, unsigned int track) argument
1977 nestegg_track_codec_id(nestegg * ctx, unsigned int track) argument
2005 nestegg_track_codec_data_count(nestegg * ctx, unsigned int track, unsigned int * count) argument
2037 nestegg_track_codec_data(nestegg * ctx, unsigned int track, unsigned int item, unsigned char ** data, size_t * length) argument
2092 nestegg_track_video_params(nestegg * ctx, unsigned int track, nestegg_video_params * params) argument
2149 nestegg_track_audio_params(nestegg * ctx, unsigned int track, nestegg_audio_params * params) argument
2242 nestegg_packet_track(nestegg_packet * pkt, unsigned int * track) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
H A Dpeerconnection_jni.cc632 AudioTrackInterface* track = audio_tracks[i]; variable
633 jstring id = JavaStringFromStdString(jni(), track->id());
635 *j_audio_track_class_, j_audio_track_ctor_, (jlong)track, id);
653 VideoTrackInterface* track = video_tracks[i]; variable
654 jstring id = JavaStringFromStdString(jni(), track->id());
656 *j_video_track_class_, j_video_track_ctor_, (jlong)track, id);
2895 rtc::scoped_refptr<VideoTrackInterface> track(
2899 return (jlong)track.release();
2918 rtc::scoped_refptr<AudioTrackInterface> track(factory->CreateAudioTrack(
2921 return (jlong)track
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Davrc_defs.h1296 tAVRC_UID track; member in union:__anon1374
/external/qemu-pc-bios/bochs/bios/
H A Drombios.c631 Bit16u spt; // # sectors / track
2262 #define ATA_CB_ER_NTK0 0x02 // ATA track 0 not found
5316 case 0x05: /* format disk track */
5317 BX_INFO("format disk track called\n");
5665 case 0x05: /* format disk track */
6089 case 0x05: /* format disk track */
6653 case 0x05: /* format disk track */
6655 BX_PANIC("format disk track called\n");
6866 // sectors per track
7150 Bit8u drive, num_sectors, track, secto local
[all...]
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 5622 milliseconds

1234567