HomeSort by relevance Sort by last modified time
    Searched defs:attributes (Results 1 - 25 of 298) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
SubjectDirectoryAttributes.java 13 * This extension may contain further X.500 attributes of the subject. See also
17 * SubjectDirectoryAttributes ::= Attributes
18 * Attributes ::= SEQUENCE SIZE (1..MAX) OF Attribute
34 private Vector attributes = new Vector(); field in class:SubjectDirectoryAttributes
58 * SubjectDirectoryAttributes ::= Attributes
59 * Attributes ::= SEQUENCE SIZE (1..MAX) OF Attribute
80 attributes.addElement(new Attribute(s));
85 * Constructor from a vector of attributes.
87 * The vector consists of attributes of type {@link Attribute Attribute}
89 * @param attributes
    [all...]
V2AttributeCertificateInfoGenerator.java 22 * attributes SEQUENCE OF Attribute,
37 private ASN1EncodableVector attributes; field in class:V2AttributeCertificateInfoGenerator
45 attributes = new ASN1EncodableVector();
55 attributes.add(new Attribute(new DERObjectIdentifier(oid), new DERSet(value)));
63 attributes.add(attribute);
112 || (holder == null) || (attributes == null))
131 // Attributes
132 v.add(new DERSequence(attributes));
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequestInfo.java 39 attributes [0] IMPLICIT Attributes }
43 Attributes ::= SET OF Attribute
56 // the value of attributes field of the structure
57 private List attributes; field in class:CertificationRequestInfo
63 SubjectPublicKeyInfo subjectPublicKeyInfo, List attributes) {
67 this.attributes = attributes;
72 SubjectPublicKeyInfo subjectPublicKeyInfo, List attributes, byte [] encoding) {
73 this(version, subject, subjectPublicKeyInfo, attributes);
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
RemoveNamedItemNS.java 43 * element from the list and get its attributes. Try to remove the attribute
93 NamedNodeMap attributes; local
99 attributes = testAddress.getAttributes();
100 removedNode = attributes.removeNamedItemNS("http://www.usa.com",
103 newAttr = (Attr) attributes.getNamedItem("dmstc:domestic");
118 NamedNodeMap attributes; local
123 attributes = testAddress.getAttributes();
128 attributes.removeNamedItemNS(namespaceURI,
148 // NamedNodeMap attributes;
165 // attributes = child2.getAttributes()
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilContentHandler.java 23 import org.xml.sax.Attributes;
57 public void startElement(String uri, String localName, String qName, Attributes attributes) {
62 if (attributes != null) {
63 for (int i = 0; i < attributes.getLength(); i++) {
66 " lname = " + attributes.getLocalName(i) +
67 " value = " + attributes.getValue(i));
69 element.setAttribute(attributes.getLocalName(i),
70 attributes.getValue(i));
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxgl.c 38 struct TagItem attributes [ 14 ]; /* 14 should be more than enough :) */ local
42 attributes[i].ti_Tag = AMA_Window; attributes[i++].ti_Data = (unsigned long)win;
43 attributes[i].ti_Tag = AMA_Left; attributes[i++].ti_Data = 0;
44 attributes[i].ti_Tag = AMA_Bottom; attributes[i++].ti_Data = 0;
45 attributes[i].ti_Tag = AMA_Width; attributes[i++].ti_Data = win->Width-win->BorderLeft-win->BorderRight;
46 attributes[i].ti_Tag = AMA_Height; attributes[i++].ti_Data = win->Height-win->BorderBottom-win->BorderTop
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macgl.c 37 GLint attributes [ 26 ]; /* 26 is max possible in this setup */ local
48 attributes[i++] = AGL_RGBA;
52 attributes[i++] = AGL_RED_SIZE;
53 attributes[i++] = this->gl_config.red_size;
54 attributes[i++] = AGL_GREEN_SIZE;
55 attributes[i++] = this->gl_config.green_size;
56 attributes[i++] = AGL_BLUE_SIZE;
57 attributes[i++] = this->gl_config.blue_size;
58 attributes[i++] = AGL_ALPHA_SIZE;
59 attributes[i++] = this->gl_config.alpha_size
    [all...]
  /external/webkit/WebCore/html/canvas/
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
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 14 private Hashtable attributes = new Hashtable(); field in class:AttributeTable
19 attributes = copyTable(attrs);
48 Object value = attributes.get(oid);
52 attributes.put(oid, a);
72 attributes.put(oid, v);
85 Object value = attributes.get(oid);
96 * Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be
97 * empty if there are no attributes of the required type present.
100 * @return a vector of all the attributes found of type oid.
107 Object value = attributes.get(oid)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 25 * Attribute class for standard {@code Code} attributes.
28 /** {@code non-null;} attribute name for attributes of this type */
43 /** {@code non-null;} the associated list of attributes */
44 private final AttributeList attributes; field in class:AttCode
53 * @param attributes {@code non-null;} the associated list of attributes
56 ByteCatchList catches, AttributeList attributes) {
81 if (attributes.isMutable()) {
82 throw new MutabilityException("attributes.isMutable()");
86 throw new NullPointerException("attributes == null")
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdMember.java 37 /** {@code non-null;} list of associated attributes */
38 private final AttributeList attributes; field in class:StdMember
46 * @param attributes {@code non-null;} list of associated attributes
49 AttributeList attributes) {
58 if (attributes == null) {
59 throw new NullPointerException("attributes == null");
65 this.attributes = attributes;
108 return attributes;
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrcreatetextnode.java 69 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 streetAttr = (Attr) attributes.getNamedItem("street");
attrcreatetextnode2.java 68 NamedNodeMap attributes; local
74 attributes = testNode.getAttributes();
75 streetAttr = (Attr) attributes.getNamedItem("street");
attreffectivevalue.java 31 * If an Attr is explicitly assigned any value, then that value is the attributes effective value.
65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrentityreplacement.java 70 NamedNodeMap attributes; local
76 attributes = testNode.getAttributes();
77 streetAttr = (Attr) attributes.getNamedItem("street");
attrname.java 66 NamedNodeMap attributes; local
72 attributes = testNode.getAttributes();
73 streetAttr = (Attr) attributes.getNamedItem("street");
attrnextsiblingnull.java 65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrnotspecifiedvalue.java 75 NamedNodeMap attributes; local
81 attributes = testNode.getAttributes();
82 streetAttr = (Attr) attributes.getNamedItem("street");
attrparentnodenull.java 65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrprevioussiblingnull.java 65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrspecifiedvalue.java 68 NamedNodeMap attributes; local
74 attributes = testNode.getAttributes();
75 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrspecifiedvaluechanged.java 69 NamedNodeMap attributes; local
76 attributes = testNode.getAttributes();
77 streetAttr = (Attr) attributes.getNamedItem("street");
attrspecifiedvalueremove.java 79 NamedNodeMap attributes; local
86 attributes = testNode.getAttributes();
87 streetAttr = (Attr) attributes.getNamedItem("street");
elementassociatedattribute.java 31 * Elements may have attributes associated with them.
36 * Elements can actually have attributes. This test uses
68 NamedNodeMap attributes; local
74 attributes = testEmployee.getAttributes();
75 domesticAttr = (Attr) attributes.getNamedItem("domestic");
elementremoveattributeaftercreate.java 70 NamedNodeMap attributes; local
78 attributes = testEmployee.getAttributes();
79 districtAttr = (Attr) attributes.getNamedItem("district");

Completed in 351 milliseconds

1 2 3 4 5 6 7 8 91011>>