/libcore/luni/src/main/java/org/apache/xml/serializer/ |
AttributesImplSerializer.java | 26 import org.xml.sax.Attributes; 31 * xml.sax.Attributes. But for optimization this class adds a Hashtable for 35 * @see org.xml.sax.Attributes 43 * of an attributes qName. qNames are in uppercase in the hash table 54 * This is the number of attributes before switching to the hash table, 60 * One less than the number of attributes before switching to 69 * @see org.xml.sax.Attributes#getIndex(String) 77 // if we haven't got too many attributes let the 82 // we have too many attributes and the super class is slow 112 // (index + 1) is now the number of attributes [all...] |
ToSAXHandler.java | 25 import org.xml.sax.Attributes; 74 * with matching attributes, if so this field is true. 78 * to the attributes passed to the wrapped ContentHandler. 190 * @see org.xml.sax.ContentHandler#startElement(String,String,String,Attributes) 196 Attributes arg3) 243 * xmlns:foo) should appear as attributes of 246 * should appear as attributes 256 * also be mirrored with self generated additional attributes of elements 304 * Receives notification that an element starts, but attributes are not 326 * An element starts, but attributes are not fully known yet [all...] |
ExtendedContentHandler.java | 40 * If there are no attributes the second call can be dropped. If attributes are 68 * Add attributes to the current element 69 * @param atts the attributes to add. 72 public void addAttributes(org.xml.sax.Attributes atts) 118 * but without the attributes. 249 * @param value the attributes value
|
/libcore/luni/src/main/java/org/apache/xml/serializer/utils/ |
AttList.java | 27 import org.xml.sax.Attributes; 30 * Wraps a DOM attribute list in a SAX Attributes. 42 public final class AttList implements Attributes 61 // * @param attrs List of attributes this will contain 75 * @param attrs List of attributes this will contain
|
/libcore/luni/src/main/java/org/apache/xml/utils/ |
AttList.java | 27 import org.xml.sax.Attributes; 30 * Wraps a DOM attribute list in a SAX Attributes. 33 public class AttList implements Attributes 52 // * @param attrs List of attributes this will contain 66 * @param attrs List of attributes this will contain
|
/libcore/luni/src/test/java/org/apache/harmony/xml/ |
NamespacedAttributesLookupTest.java | 20 import org.xml.sax.Attributes; 32 * Tests that we both report and retrieve attributes using the appropriate 107 String uri, String localName, String qName, Attributes attributes) { 119 for (int i = 0; i < attributes.getLength(); i++) { 122 serialized.append(attributes.getURI(i)).append(","); 123 serialized.append(attributes.getLocalName(i)); 125 serialized.append(attributes.getQName(i)); 129 .append(attributes.getValue("http://bar", "c")).append(",") 131 .append(attributes.getValue("bar:c") [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
FirstElementParser.java | 19 import org.xml.sax.Attributes; 157 public void startElement(String uri, String localName, String name, Attributes attributes)
|
/build/tools/signapk/ |
SignApk.java | 60 import java.util.jar.Attributes; 174 Attributes main = output.getMainAttributes(); 209 Attributes attr = null; 211 attr = attr != null ? new Attributes(attr) : new Attributes(); 262 Attributes main = sf.getMainAttributes(); 277 Map<String, Attributes> entries = manifest.getEntries(); 278 for (Map.Entry<String, Attributes> entry : entries.entrySet()) { 287 Attributes sfAttr = new Attributes(); [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
AttributesImpl.java | 17 import org.xml.sax.Attributes; 21 * Default implementation of the Attributes interface. 31 * {@link org.xml.sax.Attributes Attributes} interface, with the 38 * <li>to take a persistent snapshot of an Attributes object 40 * <li>to construct or modify an Attributes object in a SAX2 driver or filter.</li> 45 * class; in addition to supporting the updated Attributes 54 public class AttributesImpl implements Attributes 75 * Copy an existing Attributes object. 80 * @param atts The existing Attributes object [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
AttributesImpl.java | 1 // AttributesImpl.java - default implementation of Attributes. 9 import org.xml.sax.Attributes; 13 * Default implementation of the Attributes interface. 23 * {@link org.xml.sax.Attributes Attributes} interface, with the 30 * <li>to take a persistent snapshot of an Attributes object 32 * <li>to construct or modify an Attributes object in a SAX2 driver or filter.</li> 37 * class; in addition to supporting the updated Attributes 46 public class AttributesImpl implements Attributes 67 * Copy an existing Attributes object [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/ |
AndroidManifestParser.java | 33 import org.xml.sax.Attributes; 125 * java.lang.String, org.xml.sax.Attributes) 128 public void startElement(String uri, String localName, String name, Attributes attributes) 142 mManifestData.mPackage = getAttributeValue(attributes, 147 String tmp = getAttributeValue(attributes, 161 value = getAttributeValue(attributes, 168 value = getAttributeValue(attributes, 177 mManifestData.setMinSdkVersionString(getAttributeValue(attributes, 180 mManifestData.setTargetSdkVersionString(getAttributeValue(attributes, [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
OldJarURLConnectionTest.java | 33 import java.util.jar.Attributes; 60 java.util.jar.Attributes a = juc.getAttributes(); 61 assertEquals("Returned incorrect Attributes", "SHA MD5", a 62 .get(new java.util.jar.Attributes.Name("Digest-Algorithms"))); 104 Map<String, Attributes> attr = manifest.getEntries(); 269 java.util.jar.Attributes a = juc.getMainAttributes(); 270 assertEquals("Returned incorrect Attributes", "1.0", a 271 .get(java.util.jar.Attributes.Name.MANIFEST_VERSION));
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
TestPackageXmlParser.java | 22 import org.xml.sax.Attributes; 61 public void startElement(String uri, String localName, String name, Attributes attributes) 65 final String entryUriValue = attributes.getValue("appPackageName"); 66 final String testPackageNameSpace = attributes.getValue("appNameSpace"); 67 final String packageName = attributes.getValue("name"); 68 final String runnerName = attributes.getValue("runner"); 69 final String hostSideTest = attributes.getValue("hostSideOnly"); 70 final String jarPath = attributes.getValue("jarPath"); 71 final String signatureCheck = attributes.getValue("signatureCheck") [all...] |
/libcore/luni/src/main/java/org/apache/xalan/processor/ |
ProcessorExsltFunction.java | 46 import org.xml.sax.Attributes; 62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 72 super.startElement(handler, uri, localName, rawName, attributes); 74 String val = attributes.getValue("name");
|
ProcessorOutputElem.java | 31 import org.xml.sax.Attributes; 43 * being set from the attributes, and then nulled after that operation 179 * @param attributes The attributes attached to the element. If 180 * there are no attributes, it shall be an empty 181 * Attributes object. 186 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 195 setPropertiesFromAttributes(handler, rawName, attributes, this);
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
MockHandler.java | 20 import org.xml.sax.Attributes; 101 public void startElement(String uri, String localName, String name, Attributes atts)
|
/packages/apps/Gallery3D/src/com/cooliris/picasa/ |
AlbumEntry.java | 19 import org.xml.sax.Attributes; 160 public void setPropertyFromXml(String uri, String localName, Attributes attrs, String content) {
|
PhotoEntry.java | 19 import org.xml.sax.Attributes; 201 public void setPropertyFromXml(String uri, String localName, Attributes attrs, String content) {
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
KmlParser.java | 19 import org.xml.sax.Attributes; 76 public void startElement(String uri, String localName, String name, Attributes attributes)
|
/development/tools/apkcheck/src/com/android/apkcheck/ |
ApiDescrHandler.java | 69 Attributes attributes) { 74 attributes.getValue("name")); 78 attributes.getValue("name"), 79 attributes.getValue("extends"), 80 attributes.getValue("static")); 83 mCurrentClass.addInterface(attributes.getValue("name")); 86 mCurrentMethod = new MethodInfo(attributes.getValue("name"), 87 attributes.getValue("return")); 121 FieldInfo fInfo = new FieldInfo(attributes.getValue("name") [all...] |
/external/jdiff/src/jdiff/ |
APIHandler.java | 7 import org.xml.sax.Attributes; 73 java.lang.String qName, Attributes attributes) { 78 String apiName = attributes.getValue("name"); 79 String version = attributes.getValue("jdversion"); // Not used yet 83 String pkgName = attributes.getValue("name"); 87 String className = attributes.getValue("name"); 88 String parentName = attributes.getValue("extends"); 90 if (attributes.getValue("abstract").compareTo("true") == 0) 92 XMLToAPI.addClass(className, parentName, isAbstract, getModifiers(attributes)); [all...] |
/external/emma/core/java12/com/vladium/emma/ |
runCommand.java | 13 import java.util.jar.Attributes; 305 final Attributes attributes = manifest.getMainAttributes (); 306 if (attributes == null) return null; 308 final String jarMainClass = attributes.getValue (Attributes.Name.MAIN_CLASS);
|
/external/emma/core/java12/com/vladium/util/ |
IPathEnumerator.java | 20 import java.util.jar.Attributes; 248 final Attributes attributes = manifest.getMainAttributes (); local 249 if (attributes != null) 254 final String jarClassPath = attributes.getValue (Attributes.Name.CLASS_PATH);
|
/libcore/dom/src/test/java/org/w3c/domts/ |
XercesHTML2DocumentBuilderFactory.java | 26 import org.xml.sax.Attributes; 119 private Attributes currentAttributes; 142 Attributes attributes) throws SAXException { 143 currentAttributes = attributes;
|
XercesHTMLDocumentBuilderFactory.java | 26 import org.xml.sax.Attributes; 119 private Attributes currentAttributes; 142 Attributes attributes) throws SAXException { 143 currentAttributes = attributes;
|