HomeSort by relevance Sort by last modified time
    Searched refs:atts (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 99 private void parseRow(Attributes atts) throws SAXException {
100 String uriStr = atts.getValue(URI_STR);
107 atts.getValue(URI_STR) + " parsing failure");
112 String postfix = atts.getValue(POSTFIX);
134 Attributes atts) throws SAXException {
149 parseRow(atts);
152 int attrLen = atts.getLength();
157 parseRow(atts);
161 int attrLen = atts.getLength();
165 String key = atts.getValue(0)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlbuilder.cc 56 const char * name, const char ** atts) {
63 if (!*atts)
68 while (*atts) {
69 QName attName(pctx->ResolveQName(*atts, true));
84 pelNew->AddAttr(attName, std::string(*(atts + 1)));
85 atts += 2;
93 const char * name, const char ** atts) {
94 XmlElement * pelNew = BuildElement(pctx, name, atts);
xmlbuilder.h 53 const char * name, const char ** atts);
55 const char * name, const char ** atts);
xmlparser.h 62 const char * name, const char ** atts) = 0;
81 void ExpatStartElement(const char * name, const char ** atts);
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 164 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles)
166 CHECK(!strcmp("codec", atts[0]) &&
167 !strcmp("bitRate", atts[2]) &&
168 !strcmp("width", atts[4]) &&
169 !strcmp("height", atts[6]) &&
170 !strcmp("frameRate", atts[8]));
173 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]);
178 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]), atoi(atts[9]))
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributeListImpl.java 37 * public void startElement (String name, AttributeList atts)
41 * myatts = new AttributeListImpl(atts);
91 * @param atts The attribute list to copy
94 public AttributeListImpl (AttributeList atts)
96 setAttributeList(atts);
113 * @param atts The attribute list to copy.
115 public void setAttributeList (AttributeList atts)
117 int count = atts.getLength();
122 addAttribute(atts.getName(i), atts.getType(i), atts.getValue(i))
    [all...]
AttributesImpl.java 72 * @param atts The existing Attributes object.
74 public AttributesImpl (Attributes atts)
76 setAttributes(atts);
346 * @param atts The attributes to copy.
348 public void setAttributes (Attributes atts)
351 length = atts.getLength();
355 data[i*5] = atts.getURI(i);
356 data[i*5+1] = atts.getLocalName(i);
357 data[i*5+2] = atts.getQName(i);
358 data[i*5+3] = atts.getType(i)
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 65 * @param atts The existing Attributes object.
67 public Attributes2Impl (Attributes atts)
69 super (atts);
192 * @param atts The attributes to copy.
196 public void setAttributes (Attributes atts)
198 int length = atts.getLength ();
200 super.setAttributes (atts);
204 if (atts instanceof Attributes2) {
205 Attributes2 a2 = (Attributes2) atts;
212 declared [i] = !"CDATA".equals (atts.getType (i))
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java 125 * @param atts The attributes attached to the element, if any.
131 public abstract void startElement (String name, AttributeList atts)
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppstanzaparser.cc 57 XmlParseContext * pctx, const char * name, const char ** atts) {
59 XmlElement * pelStream = XmlBuilder::BuildElement(pctx, name, atts);
69 builder_.StartElement(pctx, name, atts);
xmppstanzaparser.h 60 const char * name, const char ** atts)
61 { outer_->IncomingStartElement(pctx, name, atts); }
78 const char * name, const char ** atts);
  /frameworks/av/include/media/
MediaProfiles.h 400 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...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 150 public AttributesImpl atts() {return theAtts;} method in class:ElementType
183 @param atts The AttributesImpl object
189 public void setAttribute(AttributesImpl atts, String name, String type, String value) {
196 int i = atts.getIndex(name);
201 atts.addAttribute(namespace, localName, name, type, value);
204 if (type == null) type = atts.getType(i);
206 atts.setAttribute(i, namespace, localName, name, type, value);
AttributesImpl.java 80 * @param atts The existing Attributes object.
82 public AttributesImpl (Attributes atts)
84 setAttributes(atts);
354 * @param atts The attributes to copy.
356 public void setAttributes (Attributes atts)
359 length = atts.getLength();
363 data[i*5] = atts.getURI(i);
364 data[i*5+1] = atts.getLocalName(i);
365 data[i*5+2] = atts.getQName(i);
366 data[i*5+3] = atts.getType(i)
    [all...]
XMLWriter.java 570 * @param atts The element's attribute list (must not be null).
577 String qName, Attributes atts)
585 writeAttributes(atts);
596 super.startElement(uri, localName, qName, atts);
745 * @param atts The element's attribute list.
753 String qName, Attributes atts)
759 writeAttributes(atts);
765 super.startElement(uri, localName, qName, atts);
925 * @param atts The element's attributes.
935 String qName, Attributes atts,
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerTrace.java 121 * @param atts The SAX attribute list.
123 public void fireGenerateEvent(int eventType, String name, Attributes atts);
AttributesImplSerializer.java 188 * @param atts the attributes to copy into these attributes.
192 public final void setAttributes(Attributes atts)
195 super.setAttributes(atts);
200 int numAtts = atts.getLength();
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 115 Attributes atts) {
136 for (int i = 0; i < atts.getLength(); i++) {
137 String currentAttribute = atts.getLocalName(i).toLowerCase();
144 extendedOutput.append("|src=" + atts.getValue(i));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
VersionTrackerTask.java 104 Attributes atts) {
106 String element = atts.getValue("id");
127 Attributes atts) {
130 String element = atts.getValue("id");
131 String version = atts.getValue("version");
  /libcore/luni/src/test/java/libcore/xml/
ExpatSaxParserTest.java 229 Attributes atts) throws SAXException {
246 // Check atts.
247 assertEquals(1, atts.getLength());
249 assertSame("", atts.getURI(0));
250 assertSame("a", atts.getLocalName(0));
251 assertEquals("b", atts.getValue(0));
252 assertEquals(0, atts.getIndex("", "a"));
253 assertEquals("b", atts.getValue("", "a"));
271 // Check atts.
272 assertEquals(2, atts.getLength())
    [all...]
SimpleParserTest.java 106 public void startElement(String uri, String localName, String qName, Attributes atts) {
118 for (int i = 0; i < atts.getLength(); i++) {
119 attributes1.put(atts.getLocalName(i), atts.getValue(i));
132 for (int i = 0; i < atts.getLength(); i++) {
133 attributes2.put(atts.getQName(i), atts.getValue(i));
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
AttributesTest.java 150 Attributes atts = new Attributes(); local
151 assertNull("Assert 0: ", atts.put(Attributes.Name.CLASS_PATH, "tools.jar"));
152 assertNull("Assert 1: ", atts.put(Attributes.Name.MANIFEST_VERSION, "1"));
154 atts2.putAll(atts);
158 atts.putAll(Collections.EMPTY_MAP);
251 Attributes atts = new Attributes(); local
252 assertNull("Assert 0: ", atts.put(Attributes.Name.CLASS_PATH, "tools.jar"));
253 assertEquals("Assert 1: ", "tools.jar", atts.getValue(Attributes.Name.CLASS_PATH));
256 atts.put("not a name", "value");
262 atts.put(Attributes.Name.CLASS_PATH, Boolean.TRUE)
    [all...]
  /external/expat/xmlwf/
xmlwf.c 121 startElement(void *userData, const XML_Char *name, const XML_Char **atts)
129 p = atts;
132 nAtts = (int)((p - atts) >> 1);
134 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, attcmp);
135 while (*atts) {
137 fputts(*atts++, fp);
138 attributeValue(fp, *atts);
139 atts++;
167 startElementNS(void *userData, const XML_Char *name, const XML_Char **atts)
189 p = atts;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/tools/
TestVersionTracker.java 75 Attributes atts) {
77 String element = atts.getValue("id");
78 String version = atts.getValue("version");
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
ElementParser.java 92 String qName, Attributes atts) {
94 add(atts.getValue("id"), plugins);
96 add(atts.getValue("id")+"-feature", features);

Completed in 430 milliseconds

1 2 3 4 5