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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesNameTest.java 20 import java.util.jar.Attributes;
26 * java.util.jar.Attributes.Name#Name(java.lang.String)
30 new Attributes.Name(null);
38 Attributes.Name attr1 = new Attributes.Name("Attr");
39 Attributes.Name attr2 = new Attributes.Name("Attr");
42 attr2 = new Attributes.Name("Attr1");
47 Attributes.Name attr1 = new Attributes.Name("Attr1")
    [all...]
OldAttributesTest.java 20 import java.util.jar.Attributes;
24 private Attributes a;
28 a = new Attributes();
45 Attributes attr = new Attributes();
50 Attributes attr = new Attributes(10);
56 .get(new Attributes.Name("1")));
63 .getValue(new Attributes.Name("1")));
65 .getValue(new Attributes.Name("0")))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attributes.java 9 public class Attributes
12 private ASN1Set attributes; field in class:Attributes
14 private Attributes(ASN1Set set)
16 attributes = set;
19 public Attributes(ASN1EncodableVector v)
21 attributes = new DLSet(v);
24 public static Attributes getInstance(Object obj)
26 if (obj instanceof Attributes)
28 return (Attributes)obj;
32 return new Attributes(ASN1Set.getInstance(obj))
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
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...]
AttributesNameTest.java 20 import java.util.jar.Attributes;
27 * @tests java.util.jar.Attributes.Name#Name(java.lang.String)
32 new Attributes.Name(
ZipExecTest.java 23 import java.util.jar.Attributes;
42 Attributes att = man.getMainAttributes();
43 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
44 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
83 Attributes att = man.getMainAttributes();
84 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
85 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
86 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
111 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barZip.getName());
125 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator + barZip.getParentFile().getName() + File.separator + barZi (…)
    [all...]
JarExecTest.java 23 import java.util.jar.Attributes;
45 Attributes att = man.getMainAttributes();
46 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
47 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, barJar.getName());
111 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barJar.getName());
123 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator + barJar.getParentFile().getName() + File.separator + barJa (…)
    [all...]
JarOutputStreamTest.java 24 import java.util.jar.Attributes;
58 Attributes att = newman.getMainAttributes();
59 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
60 att.put(Attributes.Name.MAIN_CLASS, element);
111 Attributes att = man.getMainAttributes();
112 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
113 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
114 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
  /external/apache-xml/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);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextAttributes.h 41 // Create a new attributes object
44 // Create a new attributes object initialized with preexisting attributes
45 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes);
74 // Fetches a copy of the attributes stored in this object in a
76 GraphicsContext3D::Attributes attributes() const;
80 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
    [all...]
WebGLContextAttributes.cpp 38 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create(GraphicsContext3D::Attributes attributes)
40 return adoptRef(new WebGLContextAttributes(attributes));
49 WebGLContextAttributes::WebGLContextAttributes(GraphicsContext3D::Attributes attributes)
51 , m_attrs(attributes)
120 GraphicsContext3D::Attributes WebGLContextAttributes::attributes() const function in class:WebCore::WebGLContextAttributes
  /external/llvm/bindings/python/llvm/
enumerations.py 22 'Attributes',
33 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
  /external/clang/include/clang/Basic/
Builtins.h 51 const char *Name, *Type, *Attributes, *HeaderName;
57 !strcmp(Attributes, RHS.Attributes);
95 return strchr(GetRecord(ID).Attributes, 'c') != 0;
100 return strchr(GetRecord(ID).Attributes, 'n') != 0;
105 return strchr(GetRecord(ID).Attributes, 'r') != 0;
110 return strchr(GetRecord(ID).Attributes, 'j') != 0;
116 return strchr(GetRecord(ID).Attributes, 'u') != 0;
122 return strchr(GetRecord(ID).Attributes, 'F') != 0;
129 return strchr(GetRecord(ID).Attributes, 'f') != 0
    [all...]
  /external/smack/src/com/kenai/jbosh/
CMSessionParams.java 85 resp.getAttribute(Attributes.ACK));
86 String rid = req.getAttribute(Attributes.RID);
91 getRequiredAttribute(resp, Attributes.SID)),
93 getRequiredAttribute(resp, Attributes.WAIT)),
95 resp.getAttribute(Attributes.VER)),
97 resp.getAttribute(Attributes.POLLING)),
99 resp.getAttribute(Attributes.INACTIVITY)),
101 resp.getAttribute(Attributes.REQUESTS)),
103 resp.getAttribute(Attributes.HOLD)),
105 resp.getAttribute(Attributes.ACCEPT))
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
Attributes.java 27 * The {@code Attributes} class is used to store values for manifest entries.
28 * Attribute keys are generally instances of {@code Attributes.Name}. Values
31 public class Attributes implements Cloneable, Map<Object, Object> {
34 * The {@code Attributes} as name/value pairs. Maps the attribute names (as
35 * {@link Attributes.Name}) of a JAR file manifest to arbitrary values. The
184 * Constructs an {@code Attributes} instance.
186 public Attributes() {
191 * Constructs an {@code Attributes} instance obtaining keys and values from
195 * The attributes to obtain entries from.
198 public Attributes(Attributes attrib)
    [all...]
ManifestReader.java 33 private final HashMap<String, Attributes.Name> attributeNameCache = new HashMap<String, Attributes.Name>();
43 private Attributes.Name name;
49 public ManifestReader(byte[] buf, Attributes main) throws IOException {
57 public void readEntries(Map<String, Attributes> entries, Map<String, Manifest.Chunk> chunks) throws IOException {
60 if (!Attributes.Name.NAME.equals(name)) {
65 Attributes entry = entries.get(entryNameValue);
67 entry = new Attributes(12);
130 name = new Attributes.Name(nameString);
134 // new Attributes.Name() throws IllegalArgumentException but we declare IOExceptio
    [all...]
Manifest.java 59 private Attributes mainAttributes = new Attributes();
61 private HashMap<String, Attributes> entries = new HashMap<String, Attributes>();
76 * The end of the main attributes section in the manifest is needed in
88 * Creates a new {@code Manifest} instance using the attributes obtained
92 * {@code InputStream} to parse for attributes.
102 * same attributes as those found in the parameter {@code Manifest}.
105 * {@code Manifest} instance to obtain attributes from.
109 mainAttributes = (Attributes) man.mainAttributes.clone()
327 Attributes attributes = manifest.entries.get(key); local
    [all...]
  /external/apache-xml/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);
  /external/chromium_org/content/common/gpu/client/
gpu_in_process_context_tests.cc 20 WebKit::WebGraphicsContext3D::Attributes attributes; local
22 CreateOffscreenContext(attributes);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CurrentXmlHandler.java 19 import org.xml.sax.Attributes;
55 public void startElement(String uri, String localName, String name, Attributes attributes)
57 super.startElement(uri, localName, name, attributes);
59 mCurrentPackageName = getValue(attributes, "name");
65 if (isEnum(attributes)) {
70 mCurrentClassName = getValue(attributes, "name");
71 mDeprecated = isDeprecated(attributes);
72 ApiClass apiClass = new ApiClass(mCurrentClassName, mDeprecated, isAbstract(attributes));
79 mDeprecated = isDeprecated(attributes);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.h 57 Attributes = 1 << 1,
60 AllMutationTypes = ChildList | Attributes | CharacterData
  /external/chromium_org/content/browser/gpu/
gpu_ipc_browsertests.cc 22 WebKit::WebGraphicsContext3D::Attributes(),

Completed in 856 milliseconds

1 2 3 4 5 6 7 8 91011>>