HomeSort by relevance Sort by last modified time
    Searched refs:attributes (Results 101 - 125 of 679) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapremovenameditemns02.java 36 * attributes attached to an element, as returned by the attributes attribute of the Node
77 NamedNodeMap attributes; local
87 attributes = element.getAttributes();
88 attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
89 attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
namednodemapremovenameditemns03.java 72 NamedNodeMap attributes; local
85 attributes = element.getAttributes();
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.w3.org/DOM/L1", "att");
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
namednodemapsetnameditemns02.java 74 NamedNodeMap attributes; local
83 attributes = element.getAttributes();
84 newNode = attributes.setNamedItemNS(attribute1);
85 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "att");
removeNamedItemNS01.java 38 * Access the second element from the list and get its attributes.
78 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 removedNode = attributes.removeNamedItemNS("http://www.usa.com", "domestic");
87 newAttr = (Attr) attributes.getNamedItem("dmstc:domestic");
setNamedItemNS03.java 75 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 setNode = attributes.setNamedItemNS(arg);
86 retnode = attributes.getNamedItemNS(namespaceURI, "newAttr");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
ManifestElementDescriptor.java 26 * element name, its possible attributes, its possible child elements but also
40 * @param attributes The list of allowed attributes. Can be null or empty.
45 AttributeDescriptor[] attributes,
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
58 * @param attributes The list of allowed attributes. Can be null or empty.
62 AttributeDescriptor[] attributes,
64 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, false);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ViewClassInfo.java 36 /** Attributes for this view or view group. Can be empty but never null. */
46 /** Layout Data Attributes for layout classes. Can be empty but not null. */
69 /** Returns the LayoutData attributes. Can be empty but not null. */
73 /** Sets the LayoutData attributes. Can be empty but not null. */
74 public void setAttributes(AttributeInfo[] attributes) {
75 mAttributes = attributes;
117 /** Returns the attributes for this view or view group. Maybe empty but not null. */
144 /** Sets the list of attributes for this View or ViewGroup. */
145 public void setAttributes(AttributeInfo[] attributes) {
146 mAttributes = attributes;
    [all...]
  /frameworks/base/sax/java/android/sax/
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/xml/
NamespacedAttributesLookupTest.java 20 import org.xml.sax.Attributes;
32 * Tests that we both report and retrieve attributes using the appropriate
107 String uri, String localName, String qName, Attributes attributes) {
119 for (int i = 0; i < attributes.getLength(); i++) {
122 serialized.append(attributes.getURI(i)).append(",");
123 serialized.append(attributes.getLocalName(i));
125 serialized.append(attributes.getQName(i));
129 .append(attributes.getValue("http://bar", "c")).append(",")
131 .append(attributes.getValue("bar:c")
    [all...]
  /libcore/luni/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...]
SetNamedItemNS.java 129 NamedNodeMap attributes; local
137 attributes = testAddress.getAttributes();
142 attributes.setNamedItemNS(arg);
162 NamedNodeMap attributes; local
171 attributes = testAddress.getAttributes();
172 attributes.setNamedItemNS(arg);
173 retnode = attributes.getNamedItemNS(namespaceURI, "newAttr");
189 // NamedNodeMap attributes;
207 // attributes = child2.getAttributes();
208 // arg = attributes.getNamedItemNS(namespaceURI, localName)
233 NamedNodeMap attributes; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequestInfo.java 37 attributes [0] IMPLICIT Attributes }
41 Attributes ::= SET OF Attribute
54 // the value of attributes field of the structure
55 private List attributes; field in class:CertificationRequestInfo
61 SubjectPublicKeyInfo subjectPublicKeyInfo, List attributes) {
65 this.attributes = attributes;
70 SubjectPublicKeyInfo subjectPublicKeyInfo, List attributes, byte [] encoding) {
71 this(version, subject, subjectPublicKeyInfo, attributes);
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 12 import org.xml.sax.Attributes;
324 * @param atts The SAX2 attributes.
330 String qName, Attributes atts)
444 * Internal class to wrap a SAX2 Attributes object for SAX1.
454 * Set the embedded Attributes object.
456 * @param The embedded SAX2 Attributes.
458 void setAttributes (Attributes attributes)
460 this.attributes = attributes;
531 private Attributes attributes; field in class:XMLReaderAdapter.AttributesAdapter
    [all...]
  /external/proguard/src/proguard/classfile/
ProgramMember.java 39 public Attribute[] attributes; field in class:ProgramMember
62 Attribute[] attributes)
68 this.attributes = attributes;
107 Attribute attribute = attributes[index];
127 * Lets the given attribute info visitor visit all the attributes of
  /libcore/luni/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 33 import org.xml.sax.Attributes;
155 * @param attributes The specified or defaulted attributes.
158 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
260 * @param attributes The list of attributes.
264 StylesheetHandler handler, String rawName, Attributes attributes,
268 setPropertiesFromAttributes(handler, rawName, attributes, target, true)
    [all...]
  /external/jdiff/src/jdiff/
CommentsHandler.java 7 import org.xml.sax.Attributes;
58 java.lang.String qName, Attributes attributes) {
63 String commentsName = attributes.getValue("name");
64 String version = attributes.getValue("jdversion"); // Not used yet
81 String id = attributes.getValue("id");
91 addStartTagToText(localName, attributes);
152 public void addStartTagToText(String localName, Attributes attributes) {
158 // Now add all the attributes into the current tex
    [all...]
  /external/openssl/crypto/evp/
evp_pkey.c 186 return X509at_get_attr_count(key->attributes);
192 return X509at_get_attr_by_NID(key->attributes, nid, lastpos);
198 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos);
203 return X509at_get_attr(key->attributes, loc);
208 return X509at_delete_attr(key->attributes, loc);
213 if(X509at_add1_attr(&key->attributes, attr)) return 1;
221 if(X509at_add1_attr_by_OBJ(&key->attributes, obj,
230 if(X509at_add1_attr_by_NID(&key->attributes, nid,
239 if(X509at_add1_attr_by_txt(&key->attributes, attrname,
  /external/v8/src/
contexts.cc 78 int* index_, PropertyAttributes* attributes) {
83 *attributes = ABSENT;
106 *attributes = extension->GetLocalPropertyAttribute(*name);
108 *attributes = extension->GetPropertyAttribute(*name);
110 if (*attributes != ABSENT) {
142 case Variable::VAR: *attributes = NONE; break;
143 case Variable::CONST: *attributes = READ_ONLY; break;
167 *attributes = NONE;
181 *attributes = READ_ONLY;
  /external/openssl/crypto/store/
store.h 172 /* Store functions take attribute lists. Those attributes come with codes.
236 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
238 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
243 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
245 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
247 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
252 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
254 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
257 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
261 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
    [all...]
  /libcore/xml/src/main/java/org/kxml2/kdom/
Element.java 37 protected Vector attributes; field in class:Element
56 * removes all children and attributes */
59 attributes = null;
77 * Returns the number of attributes of this element. */
80 return attributes == null ? 0 : attributes.size();
84 return ((String []) attributes.elementAt (index)) [0];
88 return ((String []) attributes.elementAt (index)) [1];
92 return ((String []) attributes.elementAt (index)) [1];
97 return ((String []) attributes.elementAt (index)) [2]
    [all...]
  /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");
  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 35 * @param attributes {@code non-null;} list of associated attributes
38 AttributeList attributes) {
39 super(definingClass, accessFlags, nat, attributes);
StdMethod.java 38 * @param attributes {@code non-null;} list of associated attributes
41 AttributeList attributes) {
42 super(definingClass, accessFlags, nat, attributes);
  /external/svox/pico/tts/
svox_ssml_parser.h 83 static void starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes);
103 void startElement(const XML_Char* element, const XML_Char** attributes);
  /external/webkit/JavaScriptCore/runtime/
JSStaticScopeObject.cpp 53 void JSStaticScopeObject::putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes)
55 if (symbolTablePutWithAttributes(propertyName, value, attributes))

Completed in 572 milliseconds

1 2 3 45 6 7 8 91011>>