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

1 2 3 4 5 6

  /frameworks/base/sax/java/android/sax/
StartElementListener.java 19 import org.xml.sax.Attributes;
29 * @param attributes from the element
31 void start(Attributes attributes);
RootElement.java 20 import org.xml.sax.Attributes;
111 Attributes attributes) throws SAXException {
116 startRoot(uri, localName, attributes);
134 start(child, attributes);
140 void startRoot(String uri, String localName, Attributes attributes)
150 start(root, attributes);
153 void start(Element e, Attributes attributes) {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
AttributesNameTest.java 20 import java.util.jar.Attributes;
26 * @tests java.util.jar.Attributes.Name#Name(java.lang.String)
31 new Attributes.Name(
39 new Attributes.Name((String) null);
45 assertNotNull(new Attributes.Name("Attr"));
49 Attributes.Name attr1 = new Attributes.Name("Attr");
50 Attributes.Name attr2 = new Attributes.Name("Attr");
53 attr2 = new Attributes.Name("Attr1")
    [all...]
AttributesTest.java 26 import java.util.jar.Attributes;
30 private Attributes a;
34 a = new Attributes();
42 * @tests java.util.jar.Attributes#Attributes(java.util.jar.Attributes)
45 Attributes a2 = new Attributes(a);
52 * @tests java.util.jar.Attributes#clear()
64 * @tests java.util.jar.Attributes#containsKey(java.lang.Object
    [all...]
ZipExecTest.java 28 import java.util.jar.Attributes;
44 Attributes att = man.getMainAttributes();
45 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
46 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
85 Attributes att = man.getMainAttributes();
86 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
87 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
88 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
115 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barZip.getName());
129 att.put(Attributes.Name.CLASS_PATH, ".." + File.separato
    [all...]
JarExecTest.java 28 import java.util.jar.Attributes;
47 Attributes att = man.getMainAttributes();
48 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
49 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
86 Attributes att = man.getMainAttributes();
87 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
88 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
89 att.put(Attributes.Name.CLASS_PATH, barJar.getName());
114 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barJar.getName());
125 att.put(Attributes.Name.CLASS_PATH, ".." + File.separato
    [all...]
JarOutputStreamTest.java 26 import java.util.jar.Attributes;
60 Attributes att = newman.getMainAttributes();
61 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
62 att.put(Attributes.Name.MAIN_CLASS, element);
133 Attributes att = man.getMainAttributes();
134 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
135 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
136 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
  /external/webkit/WebCore/html/canvas/
WebGLContextAttributes.h 40 // Create a new attributes object
43 // Create a new attributes object initialized with preexisting attributes
44 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes);
68 // Fetches a copy of the attributes stored in this object in a
70 GraphicsContext3D::Attributes attributes() const;
74 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
    [all...]
WebGLContextAttributes.cpp 40 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create(GraphicsContext3D::Attributes attributes)
42 return adoptRef(new WebGLContextAttributes(attributes));
50 WebGLContextAttributes::WebGLContextAttributes(GraphicsContext3D::Attributes attributes)
52 , m_attrs(attributes)
110 GraphicsContext3D::Attributes WebGLContextAttributes::attributes() const function in class:WebCore::WebGLContextAttributes
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorUnknown.java 23 import org.xml.sax.Attributes;
ProcessorDecimalFormat.java 24 import org.xml.sax.Attributes;
51 * @param attributes The attributes attached to the element. If
52 * there are no attributes, it shall be an empty
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
70 setPropertiesFromAttributes(handler, rawName, attributes, dfp);
ProcessorAttributeSet.java 28 import org.xml.sax.Attributes;
51 * @param attributes The attributes attached to the element. If
52 * there are no attributes, it shall be an empty
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
78 setPropertiesFromAttributes(handler, rawName, attributes, eat);
92 * @param attributes The specified or defaulted attributes
    [all...]
ProcessorExsltFuncResult.java 29 import org.xml.sax.Attributes;
46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
51 super.startElement(handler, uri, localName, rawName, attributes);
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2.java 1 // Attributes2.java - extended Attributes
8 import org.xml.sax.Attributes;
13 * provided though {@link Attributes}.
14 * If an implementation supports this extension, the attributes
39 public interface Attributes2 extends Attributes
43 * This helps distinguish two kinds of attributes that SAX reports
57 * This helps distinguish two kinds of attributes that SAX reports
71 * This helps distinguish two kinds of attributes that SAX reports
  /libcore/luni/src/main/java/java/util/jar/
Manifest.java 46 private static final Attributes.Name NAME_ATTRIBUTE = new Attributes.Name("Name");
48 private Attributes mainAttributes = new Attributes();
50 private HashMap<String, Attributes> entries = new HashMap<String, Attributes>();
65 * The end of the main attributes section in the manifest is needed in
78 * Creates a new {@code Manifest} instance using the attributes obtained
82 * {@code InputStream} to parse for attributes.
93 * same attributes as those found in the parameter {@code Manifest}
    [all...]
InitManifest.java 34 private Attributes.Name name;
41 InitManifest(byte[] buf, Attributes main, Attributes.Name ver) throws IOException {
55 void initEntries(Map<String, Attributes> entries,
60 if (!Attributes.Name.NAME.equals(name)) {
65 Attributes entry = entries.get(entryNameValue);
67 entry = new Attributes(12);
128 name = new Attributes.Name(nameBuffer);
Attributes.java 28 * The {@code Attributes} class is used to store values for manifest entries.
29 * Attribute keys are generally instances of {@code Attributes.Name}. Values
32 public class Attributes implements Cloneable, Map<Object, Object> {
35 * The {@code Attributes} as name/value pairs. Maps the attribute names (as
36 * {@link Attributes.Name}) of a JAR file manifest to arbitrary values. The
263 * Constructs an {@code Attributes} instance.
265 public Attributes() {
270 * Constructs an {@code Attributes} instance obtaining keys and values from
274 * The attributes to obtain entries from.
277 public Attributes(Attributes attrib)
    [all...]
JarVerifier.java 60 private final Hashtable<String, HashMap<String, Attributes>> signatures = new Hashtable<String, HashMap<String, Attributes>>(
168 Attributes attributes = man.getAttributes(name); local
170 if (attributes == null) {
175 Iterator<Map.Entry<String, HashMap<String, Attributes>>> it = signatures
178 Map.Entry<String, HashMap<String, Attributes>> entry = it.next();
179 HashMap<String, Attributes> hm = entry.getValue();
200 String algorithms = attributes.getValue("Digest-Algorithms");
207 String hash = attributes.getValue(algorithm + "-Digest")
316 Attributes attributes = new Attributes(); local
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
SerializerTrace.java 23 import org.xml.sax.Attributes;
46 * Event type generated when an element begins (after the attributes have been processed but before the children have been added).
88 * EVENTTYPE_OUTPUT_CHARACTERS. This type is used as attributes are collected.
89 * Whenever the attributes change this event type is fired. At the very end
90 * however, when the attributes do not change anymore and are going to be
123 public void fireGenerateEvent(int eventType, String name, Attributes atts);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
PlanXmlParser.java 21 import org.xml.sax.Attributes;
44 public void startElement(String uri, String localName, String name, Attributes attributes)
47 final String entryUriValue = attributes.getValue("uri");
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
Entry.java 24 import org.xml.sax.Attributes;
53 public void setPropertyFromXml(String uri, String localName, Attributes attrs, String content) {
  /libcore/luni/src/main/java/java/net/
JarURLConnection.java 22 import java.util.jar.Attributes;
84 * Returns all attributes of the {@code JarEntry} referenced by this {@code
87 * @return the attributes of the referenced {@code JarEntry}.
92 public Attributes getAttributes() throws java.io.IOException {
179 * Gets all attributes of the manifest file referenced by this {@code
183 * @return the attributes of the manifest file or {@code null}.
188 public Attributes getMainAttributes() throws java.io.IOException {
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
Attributes.java 32 * X.501 Attributes
39 public class Attributes {
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 0 // Attributes.java - attribute list with Namespace support
5 // $Id: Attributes.java,v 1.13 2004/03/18 12:28:05 dmegginson Exp $
11 * Interface for a list of XML attributes.
20 * <p>This interface allows access to a list of attributes in
29 * <p>The list will not contain attributes that were declared
31 * contain attributes used as Namespace declarations (xmlns*) unless
37 * give namespace declaration attributes a namespace URI.
42 * that those attributes be given URIs, conforming to a later
60 * <p>The order of attributes in the list is unspecified, and will
69 public interface Attributes
    [all...]
  /libcore/luni/src/test/java/tests/xml/
SaxTest.java 21 import org.xml.sax.Attributes;
41 String qName, Attributes attributes) {
45 assertEquals(1, attributes.getLength());
46 assertEquals("", attributes.getURI(0));
47 assertOneOf("bar", "", attributes.getLocalName(0));
48 assertEquals("bar", attributes.getQName(0));
54 String qName, Attributes attributes) {
58 assertEquals(1, attributes.getLength())
    [all...]

Completed in 3684 milliseconds

1 2 3 4 5 6