Searched refs:atts (Results 1 – 7 of 7) sorted by relevance
/frameworks/av/media/libmedia/ |
D | MediaProfiles.cpp | 233 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles) in createVideoCodec() argument 235 CHECK(!strcmp("codec", atts[0]) && in createVideoCodec() 236 !strcmp("bitRate", atts[2]) && in createVideoCodec() 237 !strcmp("width", atts[4]) && in createVideoCodec() 238 !strcmp("height", atts[6]) && in createVideoCodec() 239 !strcmp("frameRate", atts[8])); in createVideoCodec() 242 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]); in createVideoCodec() 247 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]), atoi(atts[9])); in createVideoCodec() 257 MediaProfiles::createAudioCodec(const char **atts, MediaProfiles *profiles) in createAudioCodec() argument 259 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/media/libmedia/include/media/ |
D | MediaProfiles.h | 365 static output_format createEncoderOutputFileFormat(const char **atts); 366 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles); 367 static AudioCodec* createAudioCodec(const char **atts, MediaProfiles *profiles); 368 static AudioDecoderCap* createAudioDecoderCap(const char **atts); 369 static VideoDecoderCap* createVideoDecoderCap(const char **atts); 370 static VideoEncoderCap* createVideoEncoderCap(const char **atts); 371 static AudioEncoderCap* createAudioEncoderCap(const char **atts); 374 int cameraId, const char **atts, Vector<int>& cameraIds); 376 static int getCameraId(const char **atts); 378 void addStartTimeOffset(int cameraId, const char **atts); [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | BatteryMeterView.java | 127 TypedArray atts = context.obtainStyledAttributes(attrs, R.styleable.BatteryMeterView, in BatteryMeterView() local 129 final int frameColor = atts.getColor(R.styleable.BatteryMeterView_frameColor, in BatteryMeterView() 131 mPercentageStyleId = atts.getResourceId(R.styleable.BatteryMeterView_textAppearance, 0); in BatteryMeterView() 133 atts.recycle(); in BatteryMeterView()
|
/frameworks/base/tools/aapt/ |
D | XMLNode.h | 163 startElement(void *userData, const char *name, const char **atts);
|
D | XMLNode.cpp | 1230 XMLNode::startElement(void *userData, const char *name, const char **atts) in startElement() argument 1251 for (int i = 0; atts[i]; i += 2) { in startElement() 1252 splitName(atts[i], &ns16, &name16); in startElement() 1253 node->addAttribute(ns16, name16, String16(atts[i+1])); in startElement()
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 31007 HSPLorg/ccil/cowan/tagsoup/Element;->atts()Lorg/ccil/cowan/tagsoup/AttributesImpl; 31020 HSPLorg/ccil/cowan/tagsoup/ElementType;->atts()Lorg/ccil/cowan/tagsoup/AttributesImpl;
|