/libcore/luni/src/main/java/org/apache/xalan/processor/ |
ProcessorInclude.java | 40 import org.xml.sax.Attributes; 116 * @param attributes The attributes attached to the element. If 117 * there are no attributes, it shall be an empty 118 * Attributes object. 124 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 129 setPropertiesFromAttributes(handler, rawName, attributes, this); 158 parse(handler, uri, localName, rawName, attributes); 184 * @param attributes The list of attributes on the xsl:include or xsl:import element [all...] |
ProcessorLRE.java | 41 import org.xml.sax.Attributes; 66 * @param attributes The specified or defaulted attributes. 69 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 119 int n = attributes.getLength(); 123 String attrLocalName = attributes.getLocalName(i); 124 String attrUri = attributes.getURI(i); 125 String value = attributes.getValue(i); 130 attributes.getType(i) [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
GpxParser.java | 19 import org.xml.sax.Attributes; 91 public void startElement(String uri, String localName, String name, Attributes attributes) 102 handleLocation(mCurrentWayPoint, attributes); 115 handleLocation(mCurrentTrackPoint, attributes); 230 * Handles the location attributes and store them into a {@link LocationPoint}. 232 * @param attributes the attributes from the XML node. 234 private void handleLocation(LocationPoint locationNode, Attributes attributes) { [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
XMLWriter.java | 25 import org.xml.sax.Attributes; 131 * supply <var>xmlns</var> attributes. By default, the XML writer will 455 * of xmlns attributes in the document.</p> 577 String qName, Attributes atts) 753 String qName, Attributes atts) 779 * Start a new element without a qname or attributes. 784 * #startElement(String, String, String, Attributes)} 792 * @see #startElement(String, String, String, Attributes) 802 * Start a new element without a qname, attributes or a Namespace URI. 807 * #startElement(String, String, String, Attributes)} [all...] |
/external/webkit/WebCore/platform/graphics/ |
GraphicsContext3D.h | 385 // Context creation attributes. 386 struct Attributes { 387 Attributes() 403 static PassOwnPtr<GraphicsContext3D> create(Attributes attrs); 480 Attributes getContextAttributes(); 625 GraphicsContext3D(Attributes attrs); 630 Attributes m_attrs;
|
/libcore/luni/src/test/java/tests/xml/ |
SimpleParserTest.java | 26 import org.xml.sax.Attributes; 136 Attributes atts) { 280 String qName, Attributes attributes) { 283 assertNotNull(attributes.getValue("http://www.usa.com",
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
AccessPointParserHelper.java | 22 import org.xml.sax.Attributes; 110 Attributes attributes) throws SAXException {
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
ToTextSAXHandler.java | 29 import org.xml.sax.Attributes; 272 * @see org.xml.sax.ContentHandler#startElement(String, String, String, Attributes) 278 Attributes arg3)
|
ToTextStream.java | 27 import org.xml.sax.Attributes; 106 * contain only attributes with explicit values (specified or 107 * defaulted): #IMPLIED attributes will be omitted.</p> 118 * @param atts The attributes attached to the element, if any. 127 String namespaceURI, String localName, String name, Attributes atts)
|
ToXMLSAXHandler.java | 31 import org.xml.sax.Attributes; 207 // we've sent the official SAX attributes on their way, 370 * startPrefixMapping and the attributes. We are 637 * @see org.xml.sax.ContentHandler#startElement(String, String, String, Attributes) 643 Attributes atts) 671 // add the attributes to the collected ones 717 * Adds the given attribute to the set of attributes, and also makes sure
|
/libcore/luni/src/main/java/org/apache/xml/utils/ |
StylesheetPIHandler.java | 33 import org.xml.sax.Attributes; 315 * @param atts The specified or defaulted attributes. 321 String namespaceURI, String localName, String qName, Attributes atts)
|
DOMBuilder.java | 36 import org.xml.sax.Attributes; 307 * contain only attributes with explicit values (specified or 308 * defaulted): #IMPLIED attributes will be omitted.</p> 314 * @param atts The attributes attached to the element, if any. 316 * @see org.xml.sax.Attributes 319 String ns, String localName, String name, Attributes atts) 358 // In SAX, xmlns[:] attributes have an empty namespace, while in DOM they
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 10 import org.xml.sax.Attributes; 525 * @param atts The element's attributes. 530 Attributes atts)
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
DefaultHandlerTest.java | 25 import org.xml.sax.Attributes; 151 Attributes.class }
|
AttributesImplTest.java | 21 import org.xml.sax.Attributes; 61 args = { Attributes.class } 72 // No Attributes 318 args = { Attributes.class }
|
XMLReaderAdapterTest.java | 25 import org.xml.sax.Attributes; 311 args = { String.class, String.class, String.class, Attributes.class }
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
LayoutDeviceHandler.java | 42 import org.xml.sax.Attributes; 79 public void startElement(String uri, String localName, String name, Attributes attributes) 83 String deviceName = attributes.getValue("", LayoutDevicesXsd.ATTR_NAME); 101 String deviceName = attributes.getValue("", LayoutDevicesXsd.ATTR_NAME);
|
/sdk/layoutlib_utils/src/com/android/layoutlib/utils/ |
ValueResourceParser.java | 19 import org.xml.sax.Attributes; 78 public void startElement(String uri, String localName, String qName, Attributes attributes) 91 type = attributes.getValue(ATTR_TYPE); 100 String name = attributes.getValue(ATTR_NAME); 103 String parent = attributes.getValue(ATTR_PARENT); 115 String name = attributes.getValue(ATTR_NAME); 127 super.startElement(uri, localName, qName, attributes);
|
/dalvik/dx/src/com/android/dx/command/dexer/ |
Main.java | 48 import java.util.jar.Attributes; 110 private static final Attributes.Name CREATED_BY = 111 new Attributes.Name("Created-By"); 526 Attributes attribs; 532 attribs.put(Attributes.Name.MANIFEST_VERSION, "1.0"); [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/ext/ |
Attributes2ImplTest.java | 21 import org.xml.sax.Attributes; 73 args = { Attributes.class } 223 args = { Attributes.class }
|
/development/tools/makedict/src/com/android/tools/dict/ |
MakeBinaryDictionary.java | 19 import org.xml.sax.Attributes; 103 String qName, Attributes attributes) { 106 freq = Integer.parseInt(attributes.getValue(0));
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
FontLoader.java | 19 import org.xml.sax.Attributes; 252 * @see org.xml.sax.helpers.DefaultHandler#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes) 255 public void startElement(String uri, String localName, String name, Attributes attributes) 262 String ttf = attributes.getValue(ATTR_TTF); 273 String ttf = attributes.getValue(ATTR_TTF); 282 super.startElement(uri, localName, name, attributes);
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipInputStream.java | 25 import java.util.jar.Attributes; 34 * ZipInputStream} first the entry's attributes will be retrieved with {@code 109 Attributes temp = ((JarEntry) currentEntry).getAttributes();
|
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/ |
SAXParserFactoryTest.java | 32 import org.xml.sax.Attributes; 463 Attributes atts) {
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 20 import java.util.jar.Attributes; 91 // set some basic main attributes: 93 final Attributes mainAttrs = outManifest.getMainAttributes (); 94 if (manifest == null) mainAttrs.put (Attributes.Name.MANIFEST_VERSION, "1.0"); 95 mainAttrs.put (new Attributes.Name ("Created-By"), IAppConstants.APP_NAME + " v" + IAppConstants.APP_VERSION_WITH_BUILD_ID_AND_TAG); 99 mainAttrs.put (Attributes.Name.IMPLEMENTATION_TITLE, "instrumented version of [" + archive.getAbsolutePath () + "]"); 100 mainAttrs.put (Attributes.Name.SPECIFICATION_TITLE, "instrumented on " + new Date (m_timeStamp) + " [" + Property.getSystemFingerprint () + "]"); [all...] |