Searched refs:media (Results 1 - 25 of 142) sorted by path

123456

/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DTransformerFactoryImpl.java246 * @param media The media attribute to be matched. May be null, in which
256 Source source, String media, String title, String charset)
281 StylesheetPIHandler handler = new StylesheetPIHandler(baseID, media,
255 getAssociatedStylesheet( Source source, String media, String title, String charset) argument
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A Doutput_html.properties28 media-type=text/html
H A Doutput_text.properties26 media-type=text/plain
H A Doutput_unknown.properties33 media-type=text/xml
H A Doutput_xml.properties32 media-type=text/xml
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStylesheetPIHandler.java46 /** The desired media criteria. */
95 * @param media The desired media criteria.
99 public StylesheetPIHandler(String baseID, String media, String title, argument
104 m_media = media;
149 String media = null; // CDATA #IMPLIED
236 else if (name.equals("media"))
242 media = token.substring(1, token.length() - 1);
270 if (null != media)
272 if (!media
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Davrc_defs.h238 #define AVRC_STS_UID_IS_DIR 0x0c /* UID is a Directory - The UID provided refers to a directory, which cannot be handled by this media player PlayItem, AddToNowPlaying */
239 #define AVRC_STS_IN_USE 0x0d /* Media in Use - The media is not able to be used for this operation at this time PlayItem, AddToNowPlaying */
361 #define AVRC_SCOPE_PLAYER_LIST 0x00 /* Media Player Item - Contains all available media players */
363 - The virtual filesystem containing the media content of the browsed player */
391 /* media item - media type */
918 UINT16 player_id; /* A unique identifier for this media player.*/
947 tAVRC_UID uid; /* The uid of this media element item */
949 tAVRC_FULL_NAME name; /* The media name, name length and character set id. */
959 tAVRC_ITEM_PLAYER player; /* The properties of a media playe
961 tAVRC_ITEM_MEDIA media; /* The properties of a media item.*/ member in union:__anon1103::__anon1104
[all...]
/external/chromium/chrome/browser/resources/ntp/
H A Dmost_visited.css237 @media (max-width: 940px) {
/external/chromium/net/base/
H A Deffective_tld_names.cc2986 {"media.hu", 0},
3776 {"media.museum", 0},
4674 {"media.pl", 0},
5358 {"media.aero", 0},
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dpresencepushtask.cc224 const XmlElement* media; local
225 for (media = xstanza->FirstNamed(QN_GOOGLE_MUC_USER_MEDIA);
226 media; media = media->NextNamed(QN_GOOGLE_MUC_USER_MEDIA)) {
228 const XmlElement* type = media->FirstNamed(QN_GOOGLE_MUC_USER_TYPE);
231 const XmlElement* src_id = media->FirstNamed(QN_GOOGLE_MUC_USER_SRC_ID);
244 // This is the audio media element. Get the src-id.
247 // This is the video media element. Get the src-id.
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediasessionclient.cc218 const MediaContentDescription* media = local
220 if (media->type() == media_type) {
509 MediaContentDescription* media,
515 media->set_crypto_required(
524 media->AddCrypto(params);
533 MediaContentDescription* media) {
538 media->set_bandwidth(bandwidth_kbps * 1000);
628 MediaContentDescription* media,
636 media->set_crypto_required(
646 media
507 ParseGingleEncryption(const buzz::XmlElement* desc, const buzz::QName& usage, MediaContentDescription* media, ParseError* error) argument
532 ParseBandwidth(const buzz::XmlElement* parent_elem, MediaContentDescription* media) argument
627 ParseJingleEncryption(const buzz::XmlElement* content_elem, MediaContentDescription* media, ParseError* error) argument
747 std::string media; local
993 const MediaContentDescription* media = local
[all...]
/external/chromium/webkit/glue/media/
H A Daudio_decoder.cc5 #include "webkit/glue/media/audio_decoder.h"
11 #include "media/filters/audio_file_reader.h"
14 using media::AudioFileReader;
15 using media::InMemoryDataReader;
H A Dbuffered_data_source.cc5 #include "webkit/glue/media/buffered_data_source.h"
7 #include "media/base/filter_host.h"
9 #include "webkit/glue/media/web_data_source_factory.h"
37 media::DataSourceFactory* BufferedDataSource::CreateFactory(
68 preload_(media::METADATA),
94 void BufferedDataSource::set_host(media::FilterHost* host) {
102 media::PipelineStatusCallback* callback) {
108 callback->Run(media::DATASOURCE_ERROR_URL_NOT_SUPPORTED);
112 callback->Run(media::PIPELINE_ERROR_NETWORK);
120 media_format_.SetAsString(media
[all...]
H A Dbuffered_data_source.h13 #include "media/base/filter_factories.h"
14 #include "media/base/filters.h"
15 #include "webkit/glue/media/buffered_resource_loader.h"
22 static media::DataSourceFactory* CreateFactory(
32 // media::Filter implementation.
33 virtual void set_host(media::FilterHost* host);
34 virtual void Stop(media::FilterCallback* callback);
37 // media::DataSource implementation.
41 media::DataSource::ReadCallback* read_callback);
44 virtual void SetPreload(media
[all...]
H A Dbuffered_data_source_unittest.cc8 #include "media/base/mock_callback.h"
9 #include "media/base/mock_filter_host.h"
10 #include "media/base/mock_filters.h"
14 #include "webkit/glue/media/buffered_data_source.h"
174 media::PipelineStatus expected_init_status = media::PIPELINE_OK;
190 expected_init_status = media::PIPELINE_ERROR_NETWORK;
196 media::NewExpectedStatusCallback(expected_init_status));
217 data_source_->Stop(media::NewExpectedCallback());
322 EXPECT_CALL(*this, ReadCallback(media
[all...]
H A Dbuffered_resource_loader.cc5 #include "webkit/glue/media/buffered_resource_loader.h"
51 : buffer_(new media::SeekableBuffer(kBackwardCapcity, kForwardCapacity)),
H A Dbuffered_resource_loader.h14 #include "media/base/seekable_buffer.h"
20 #include "webkit/glue/media/web_data_source.h"
214 scoped_ptr<media::SeekableBuffer> buffer_;
H A Dbuffered_resource_loader_unittest.cc16 #include "webkit/glue/media/buffered_resource_loader.h"
93 new media::SeekableBuffer(backward_capacity, forward_capacity));
H A Dsimple_data_source.cc5 #include "webkit/glue/media/simple_data_source.h"
9 #include "media/base/filter_host.h"
15 #include "webkit/glue/media/web_data_source_factory.h"
28 media::DataSourceFactory* SimpleDataSource::CreateFactory(
53 void SimpleDataSource::set_host(media::FilterHost* host) {
62 void SimpleDataSource::Stop(media::FilterCallback* callback) {
77 media::PipelineStatusCallback* callback) {
113 const media::MediaFormat& SimpleDataSource::media_format() {
142 void SimpleDataSource::SetPreload(media::Preload preload) {}
268 media_format_.SetAsString(media
[all...]
H A Dsimple_data_source.h6 // media resource into memory before signaling that initialization has finished.
18 #include "media/base/filter_factories.h"
19 #include "media/base/filters.h"
25 #include "webkit/glue/media/web_data_source.h"
36 static media::DataSourceFactory* CreateFactory(
44 // media::Filter implementation.
45 virtual void set_host(media::FilterHost* host);
46 virtual void Stop(media::FilterCallback* callback);
48 // media::DataSource implementation.
49 virtual const media
[all...]
H A Dsimple_data_source_unittest.cc5 #include "media/base/filters.h"
6 #include "media/base/mock_callback.h"
7 #include "media/base/mock_filter_host.h"
8 #include "media/base/mock_filters.h"
15 #include "webkit/glue/media/simple_data_source.h"
62 media::MockStatusCallback* callback) {
126 data_source_->Stop(media::NewExpectedCallback());
151 StrictMock<media::MockFilterHost> host_;
161 media::NewExpectedStatusCallback(media
[all...]
H A Dvideo_renderer_impl.cc5 #include "webkit/glue/media/video_renderer_impl.h"
7 #include "media/base/video_frame.h"
8 #include "media/base/yuv_convert.h"
20 bool VideoRendererImpl::OnInitialize(media::VideoDecoder* decoder) {
32 void VideoRendererImpl::OnStop(media::FilterCallback* callback) {
54 scoped_refptr<media::VideoFrame> video_frame;
84 scoped_refptr<media::VideoFrame>* frame_out) {
89 scoped_refptr<media::VideoFrame> frame) {
154 void VideoRendererImpl::SlowPaint(media::VideoFrame* video_frame,
163 DCHECK(video_frame->format() == media
[all...]
H A Dvideo_renderer_impl.h5 // The video renderer implementation to be use by the media pipeline. It lives
13 #include "media/base/buffers.h"
14 #include "media/base/filters.h"
15 #include "media/filters/video_renderer_base.h"
20 #include "webkit/glue/media/web_video_renderer.h"
34 virtual void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out);
35 virtual void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame);
39 virtual bool OnInitialize(media::VideoDecoder* decoder);
42 virtual void OnStop(media::FilterCallback* callback);
53 void SlowPaint(media
[all...]
H A Dweb_data_source.cc5 #include "media/base/filters.h"
6 #include "webkit/glue/media/web_data_source.h"
11 : media::DataSource() {
H A Dweb_data_source.h8 #include "media/base/filters.h"
9 #include "media/base/pipeline_status.h"
15 class WebDataSource : public media::DataSource {
23 media::PipelineStatusCallback* callback) = 0;
32 // Returns true if the media resource has a single origin, false otherwise.
38 // media pipeline to stall.

Completed in 279 milliseconds

123456