Home
last modified time | relevance | path

Searched refs:atts (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libmedia/
DMediaProfiles.cpp164 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles) in createVideoCodec() argument
166 CHECK(!strcmp("codec", atts[0]) && in createVideoCodec()
167 !strcmp("bitRate", atts[2]) && in createVideoCodec()
168 !strcmp("width", atts[4]) && in createVideoCodec()
169 !strcmp("height", atts[6]) && in createVideoCodec()
170 !strcmp("frameRate", atts[8])); in createVideoCodec()
173 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]); in createVideoCodec()
178 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]), atoi(atts[9])); in createVideoCodec()
188 MediaProfiles::createAudioCodec(const char **atts, MediaProfiles *profiles) in createAudioCodec() argument
190 CHECK(!strcmp("codec", atts[0]) && in createAudioCodec()
[all …]
/frameworks/base/core/java/android/content/
DDefaultDataHandler.java99 private void parseRow(Attributes atts) throws SAXException { in parseRow() argument
100 String uriStr = atts.getValue(URI_STR); in parseRow()
107 atts.getValue(URI_STR) + " parsing failure"); in parseRow()
112 String postfix = atts.getValue(POSTFIX); in parseRow()
134 Attributes atts) throws SAXException { in startElement() argument
149 parseRow(atts); in startElement()
152 int attrLen = atts.getLength(); in startElement()
157 parseRow(atts); in startElement()
161 int attrLen = atts.getLength(); in startElement()
165 String key = atts.getValue(0); in startElement()
[all …]
/frameworks/av/include/media/
DMediaProfiles.h400 static output_format createEncoderOutputFileFormat(const char **atts);
401 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles);
402 static AudioCodec* createAudioCodec(const char **atts, MediaProfiles *profiles);
403 static AudioDecoderCap* createAudioDecoderCap(const char **atts);
404 static VideoDecoderCap* createVideoDecoderCap(const char **atts);
405 static VideoEncoderCap* createVideoEncoderCap(const char **atts);
406 static AudioEncoderCap* createAudioEncoderCap(const char **atts);
408 const char **atts, MediaProfiles *profiles);
409 static ExportVideoProfile* createExportVideoProfile(const char **atts);
412 int cameraId, const char **atts, Vector<int>& cameraIds);
[all …]
/frameworks/base/docs/html/
Dindex.jd24 var atts = { id: "ytapiplayer" };
26 "ytapiplayer", "600", "338", "8", null, null, params, atts);
/frameworks/base/tools/aapt/
DXMLNode.h155 startElement(void *userData, const char *name, const char **atts);
DXMLNode.cpp1128 XMLNode::startElement(void *userData, const char *name, const char **atts) in startElement() argument
1147 for (int i = 0; atts[i]; i += 2) { in startElement()
1148 splitName(atts[i], &ns16, &name16); in startElement()
1149 node->addAttribute(ns16, name16, String16(atts[i+1])); in startElement()