Searched defs:attributes (Results 1 - 25 of 60) sorted by relevance

123

/dalvik/dx/src/com/android/dx/cf/iface/
H A DStdField.java35 * @param attributes {@code non-null;} list of associated attributes
38 AttributeList attributes) {
39 super(definingClass, accessFlags, nat, attributes);
37 StdField(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DStdMethod.java38 * @param attributes {@code non-null;} list of associated attributes
41 AttributeList attributes) {
42 super(definingClass, accessFlags, nat, attributes);
40 StdMethod(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DStdMember.java37 /** {@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;
48 StdMember(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DSubjectDirectoryAttributes.java13 * This extension may contain further X.500 attributes of the subject. See also
34 private Vector attributes = new Vector(); field in class:SubjectDirectoryAttributes
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
90 * The attributes.
93 public SubjectDirectoryAttributes(Vector attributes) argument
95 Enumeration e = attributes.elements();
99 this.attributes
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
H A DProcessorAttributeSet.java51 * @param attributes The attributes attached to the element. If
52 * there are no attributes, it shall be an empty
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.
60 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorDecimalFormat.java51 * @param attributes The attributes attached to the element. If
52 * there are no attributes, it shall be an empty
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
70 setPropertiesFromAttributes(handler, rawName, attributes, dfp);
60 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorExsltFuncResult.java46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
51 super.startElement(handler, uri, localName, rawName, attributes);
45 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorKey.java60 * @param attributes The attributes attached to the element. If
61 * there are no attributes, it shall be an empty
65 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
73 setPropertiesFromAttributes(handler, rawName, attributes, kd);
83 * @param attributes The list of attributes.
87 StylesheetHandler handler, String rawName, Attributes attributes,
97 int nAttrs = attributes.getLength();
101 String attrUri = attributes
64 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
86 setPropertiesFromAttributes( StylesheetHandler handler, String rawName, Attributes attributes, org.apache.xalan.templates.ElemTemplateElement target) argument
[all...]
H A DProcessorLRE.java66 * @param attributes The specified or defaulted attributes.
69 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
119 int n = attributes.getLength();
123 String attrLocalName = attributes.getLocalName(i);
124 String attrUri = attributes.getURI(i);
125 String value = attributes.getValue(i);
130 attributes.getType(i),
131 attributes.getValue(i));
142 attributes
68 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
[all...]
H A DProcessorNamespaceAlias.java57 * @param attributes The attributes attached to the element. If
58 * there are no attributes, it shall be an empty
62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
68 setPropertiesFromAttributes(handler, rawName, attributes, na);
61 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorPreserveSpace.java54 * @param attributes The attributes attached to the element. If
55 * there are no attributes, it shall be an empty
60 Attributes attributes)
65 setPropertiesFromAttributes(handler, rawName, attributes, paths);
58 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorStripSpace.java54 * @param attributes The attributes attached to the element. If
55 * there are no attributes, it shall be an empty
59 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 setPropertiesFromAttributes(handler, rawName, attributes, paths);
58 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorStylesheetElement.java55 * @param attributes The attributes attached to the element. If
56 * there are no attributes, it shall be an empty
60 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 super.startElement(handler, uri, localName, rawName, attributes);
106 setPropertiesFromAttributes(handler, rawName, attributes,
59 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorTemplateElem.java46 * @param attributes The specified or defaulted attributes.
49 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
53 super.startElement(handler, uri, localName, rawName, attributes);
78 setPropertiesFromAttributes(handler, rawName, attributes, elem);
48 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
H A DProcessorExsltFunction.java62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
72 super.startElement(handler, uri, localName, rawName, attributes);
74 String val = attributes.getValue("name");
61 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttCode.java25 * 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
55 AttCode(int maxStack, int maxLocals, BytecodeArray code, ByteCatchList catches, AttributeList attributes) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/direct/
H A DFieldListParser.java79 AttributeList attributes) {
81 new StdField(getDefiner(), accessFlags, nat, attributes);
78 set(int n, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DMethodListParser.java79 AttributeList attributes) {
81 new StdMethod(getDefiner(), accessFlags, nat, attributes);
78 set(int n, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DMemberListParser.java149 * Gets the {@code CTX_*} constant to use when parsing attributes.
163 * @param attributes list of parsed attributes
167 AttributeList attributes);
214 StdAttributeList attributes = parser.getList();
215 attributes.setImmutable();
217 Member member = set(i, accessFlags, nat, attributes);
166 set(int n, int accessFlags, CstNat nat, AttributeList attributes) argument
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs10/
H A DCertificationRequestInfo.java39 attributes [0] IMPLICIT Attributes }
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);
78 * @return Returns the attributes.
81 return attributes;
62 CertificationRequestInfo(int version, Name subject, SubjectPublicKeyInfo subjectPublicKeyInfo, List attributes) argument
71 CertificationRequestInfo(int version, Name subject, SubjectPublicKeyInfo subjectPublicKeyInfo, List attributes, byte [] encoding) argument
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs8/
H A DPrivateKeyInfo.java43 * attributes [0] IMPLICIT Attributes OPTIONAL }
62 private List attributes; field in class:PrivateKeyInfo
67 byte[] privateKey, List attributes) {
72 this.attributes = attributes;
77 List attributes, byte[] encoding) {
78 this(version, privateKeyAlgorithm, privateKey, attributes);
97 * @return Returns List of attributes.
100 return attributes;
127 new ASN1Implicit(0, new ASN1SetOf(AttributeTypeAndValue.ASN1)) // attributes
66 PrivateKeyInfo(int version, AlgorithmIdentifier privateKeyAlgorithm, byte[] privateKey, List attributes) argument
75 PrivateKeyInfo(int version, AlgorithmIdentifier privateKeyAlgorithm, byte[] privateKey, List attributes, byte[] encoding) argument
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributeTable.java14 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
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
H A DCertificationRequestInfo.java21 * attributes [0] Attributes{{ CRIAttributes }}
38 ASN1Set attributes = null; field in class:CertificationRequestInfo
58 ASN1Set attributes)
62 this.attributes = attributes;
85 attributes = ASN1Set.getInstance(tagobj, false);
111 return attributes;
122 if (attributes != null)
124 v.add(new DERTaggedObject(false, 0, attributes));
55 CertificationRequestInfo( X509Name subject, SubjectPublicKeyInfo pkInfo, ASN1Set attributes) argument
H A DPrivateKeyInfo.java26 private ASN1Set attributes; field in class:PrivateKeyInfo
84 attributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false);
100 return attributes;
111 * attributes [0] IMPLICIT Attributes OPTIONAL
128 if (attributes != null)
130 v.add(new DERTaggedObject(false, 0, attributes));
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/
H A DX509Principal.java52 * constructor from a table of attributes.
57 Hashtable attributes)
59 super(attributes);
63 * constructor from a table of attributes and a vector giving the
70 Hashtable attributes)
72 super(ordering, attributes);
87 * some such, converting it into an ordered set of name attributes.
97 * some such, converting it into an ordered set of name attributes. If reverse
111 * some such, converting it into an ordered set of name attributes. lookUp
56 X509Principal( Hashtable attributes) argument
68 X509Principal( Vector ordering, Hashtable attributes) argument

Completed in 286 milliseconds

123