Searched refs:atts (Results 1 – 6 of 6) sorted by relevance
/frameworks/av/media/libmedia/ |
D | MediaProfiles.cpp | 179 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles) in createVideoCodec() argument 181 CHECK(!strcmp("codec", atts[0]) && in createVideoCodec() 182 !strcmp("bitRate", atts[2]) && in createVideoCodec() 183 !strcmp("width", atts[4]) && in createVideoCodec() 184 !strcmp("height", atts[6]) && in createVideoCodec() 185 !strcmp("frameRate", atts[8])); in createVideoCodec() 188 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]); in createVideoCodec() 193 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]), atoi(atts[9])); in createVideoCodec() 203 MediaProfiles::createAudioCodec(const char **atts, MediaProfiles *profiles) in createAudioCodec() argument 205 CHECK(!strcmp("codec", atts[0]) && in createAudioCodec() [all …]
|
/frameworks/base/core/java/android/content/ |
D | DefaultDataHandler.java | 99 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/ |
D | MediaProfiles.h | 411 static output_format createEncoderOutputFileFormat(const char **atts); 412 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles); 413 static AudioCodec* createAudioCodec(const char **atts, MediaProfiles *profiles); 414 static AudioDecoderCap* createAudioDecoderCap(const char **atts); 415 static VideoDecoderCap* createVideoDecoderCap(const char **atts); 416 static VideoEncoderCap* createVideoEncoderCap(const char **atts); 417 static AudioEncoderCap* createAudioEncoderCap(const char **atts); 419 const char **atts, MediaProfiles *profiles); 420 static ExportVideoProfile* createExportVideoProfile(const char **atts); 423 int cameraId, const char **atts, Vector<int>& cameraIds); [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | BatteryMeterView.java | 189 TypedArray atts = context.obtainStyledAttributes(attrs, R.styleable.BatteryMeterView, in BatteryMeterView() local 191 final int frameColor = atts.getColor(R.styleable.BatteryMeterView_frameColor, in BatteryMeterView() 204 atts.recycle(); in BatteryMeterView()
|
/frameworks/base/tools/aapt/ |
D | XMLNode.h | 159 startElement(void *userData, const char *name, const char **atts);
|
D | XMLNode.cpp | 1212 XMLNode::startElement(void *userData, const char *name, const char **atts) in startElement() argument 1231 for (int i = 0; atts[i]; i += 2) { in startElement() 1232 splitName(atts[i], &ns16, &name16); in startElement() 1233 node->addAttribute(ns16, name16, String16(atts[i+1])); in startElement()
|