HomeSort by relevance Sort by last modified time
    Searched refs:Attributes (Results 1 - 25 of 260) 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/llvm/include/llvm/
Attributes.h 1 //===-- llvm/Attributes.h - Container for Attributes ------------*- C++ -*-===//
11 // attributes associated with functions and their calls.
27 /// We use this proxy POD type to allow constructing Attributes constants
43 /// Attributes - A bitset of attributes.
44 class Attributes {
46 Attributes() : Bits(0) { }
47 explicit Attributes(uint64_t Val) : Bits(Val) { }
48 /*implicit*/ Attributes(Attribute::AttrConst Val) : Bits(Val.v) {
    [all...]
Argument.h 18 #include "llvm/Attributes.h"
76 void addAttr(Attributes);
79 void removeAttr(Attributes);
  /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 BERSet(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/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 25 SmallVector<DWARFAttribute, 8> Attributes;
34 uint32_t getNumAttributes() const { return Attributes.size(); }
36 return Attributes.size() > idx ? Attributes[idx].getAttribute() : 0;
39 return Attributes.size() > idx ? Attributes[idx].getForm() : 0;
48 return Attributes;
DWARFAbbreviationDeclaration.cpp 26 Attributes.clear();
36 Attributes.push_back(DWARFAttribute(attr, form));
58 for (unsigned i = 0, e = Attributes.size(); i != e; ++i) {
60 const char *attrString = AttributeString(Attributes[i].getAttribute());
64 OS << format("DW_AT_Unknown_%x", Attributes[i].getAttribute());
66 const char *formString = FormEncodingString(Attributes[i].getForm());
70 OS << format("DW_FORM_Unknown_%x", Attributes[i].getForm());
78 for (uint32_t i = 0, e = Attributes.size(); i != e; ++i) {
79 if (Attributes[i].getAttribute() == attr)
  /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;
  /external/llvm/bindings/python/llvm/
enumerations.py 22 'Attributes',
33 Attributes = [
  /external/webkit/Source/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);
73 // Fetches a copy of the attributes stored in this object in a
75 GraphicsContext3D::Attributes attributes() const;
79 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
    [all...]
  /external/clang/include/clang/Basic/
Builtins.h 49 const char *Name, *Type, *Attributes, *HeaderName;
55 !strcmp(Attributes, RHS.Attributes);
94 return strchr(GetRecord(ID).Attributes, 'c') != 0;
99 return strchr(GetRecord(ID).Attributes, 'n') != 0;
104 return strchr(GetRecord(ID).Attributes, 'r') != 0;
109 return strchr(GetRecord(ID).Attributes, 'j') != 0;
115 return strchr(GetRecord(ID).Attributes, 'F') != 0;
122 return strchr(GetRecord(ID).Attributes, 'f') != 0;
127 return strchr(GetRecord(ID).Attributes, 't') != 0
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
ManifestDigestTest.java 23 import java.util.jar.Attributes;
38 private static final Attributes.Name SHA1_DIGEST = new Attributes.Name("SHA1-Digest");
40 private static final Attributes.Name MD5_DIGEST = new Attributes.Name("MD5-Digest");
43 assertNull("Attributes were null, so ManifestDigest.fromAttributes should return null",
48 Attributes a = new Attributes();
50 assertNull("There were no attributes to extract, so ManifestDigest should be null",
55 Attributes a = new Attributes()
    [all...]
  /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");
61 private Attributes mainAttributes = new Attributes();
63 private HashMap<String, Attributes> entries = new HashMap<String, Attributes>();
78 * The end of the main attributes section in the manifest is needed in
90 * Creates a new {@code Manifest} instance using the attributes obtained
94 * {@code InputStream} to parse for attributes.
104 * same attributes as those found in the parameter {@code Manifest}
    [all...]
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
181 * Constructs an {@code Attributes} instance.
183 public Attributes() {
188 * Constructs an {@code Attributes} instance obtaining keys and values from
192 * The attributes to obtain entries from.
195 public Attributes(Attributes attrib)
    [all...]
InitManifest.java 33 private Attributes.Name name;
40 InitManifest(byte[] buf, Attributes main, Attributes.Name ver) throws IOException {
54 void initEntries(Map<String, Attributes> entries,
59 if (!Attributes.Name.NAME.equals(name)) {
64 Attributes entry = entries.get(entryNameValue);
66 entry = new Attributes(12);
127 this.name = new Attributes.Name(name);
129 // new Attributes.Name() throws IllegalArgumentException but we declare IOException
  /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);
  /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/clang/lib/Basic/
Builtins.cpp 54 if (!LangOpts.NoBuiltin || !strchr(BuiltinInfo[i].Attributes, 'f')) {
62 if (!LangOpts.NoBuiltin || !strchr(TSRecords[i].Attributes, 'f'))
71 if (!NoBuiltins || !strchr(BuiltinInfo[i].Attributes, 'f'))
76 if (!NoBuiltins || !strchr(TSRecords[i].Attributes, 'f'))
87 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP");
106 const char *Scanf = strpbrk(GetRecord(ID).Attributes, "sS");

Completed in 230 milliseconds

1 2 3 4 5 6 7 8 91011