HomeSort by relevance Sort by last modified time
    Searched defs:attributes (Results 201 - 225 of 925) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapsetnameditemns10.java 76 NamedNodeMap attributes; local
89 attributes = element.getAttributes();
94 newNode = attributes.setNamedItemNS(entity);
namednodemapsetnameditemns11.java 76 NamedNodeMap attributes; local
90 attributes = element.getAttributes();
95 newNode = attributes.setNamedItemNS(notation);
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");
removeNamedItemNS02.java 39 * Access the second element from the list and get its attributes.
77 NamedNodeMap attributes; local
82 attributes = testAddress.getAttributes();
87 removedNode = attributes.removeNamedItemNS(namespaceURI, localName);
removeNamedItemNS03.java 86 NamedNodeMap attributes; local
103 attributes = child2.getAttributes();
108 removedNode = attributes.removeNamedItemNS(namespaceURI, localName);
setNamedItemNS02.java 79 NamedNodeMap attributes; local
87 attributes = testAddress.getAttributes();
92 setNode = attributes.setNamedItemNS(arg);
setNamedItemNS03.java 75 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 setNode = attributes.setNamedItemNS(arg);
86 retnode = attributes.getNamedItemNS(namespaceURI, "newAttr");
setNamedItemNS05.java 75 NamedNodeMap attributes; local
83 attributes = testAddress.getAttributes();
84 retnode = attributes.setNamedItemNS(arg);
  /libcore/luni/src/main/java/java/util/jar/
JarEntry.java 34 * attributes and digital signatures associated with it.
40 private Attributes attributes; field in class:JarEntry
87 attributes = je.attributes;
93 * Returns the {@code Attributes} object associated with this entry or
96 * @return the {@code Attributes} for this entry.
98 * If an error occurs obtaining the {@code Attributes}.
99 * @see Attributes
101 public Attributes getAttributes() throws IOException
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetNamedItemNS.java 16 * element from the list and get its attributes. Try to retrieve the attribute
58 NamedNodeMap attributes; local
64 attributes = testEmployee.getAttributes();
65 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
76 NamedNodeMap attributes; local
81 attributes = testEmployee.getAttributes();
82 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName);
NamedNodeMapGetNamedItemNS.java 102 NamedNodeMap attributes; local
111 attributes = element.getAttributes();
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
119 NamedNodeMap attributes; local
132 attributes = element.getAttributes();
133 attribute = (Attr) attributes.getNamedItemNS(
140 NamedNodeMap attributes; local
151 attributes = element.getAttributes();
152 attribute = (Attr) attributes.getNamedItemNS(
159 NamedNodeMap attributes; local
    [all...]
OwnerElement.java 78 NamedNodeMap attributes; local
85 attributes = testNode.getAttributes();
86 domesticAttr = (Attr) attributes.getNamedItem("domestic");
  /packages/experimental/PrintService/src/foo/bar/printservice/
CustomPrintOptionsActivity.java 33 PrintAttributes attributes = new PrintAttributes.Builder() local
40 builder.setAttributes(attributes);
42 builder.setAttributes(attributes);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_genericpath.py 24 attributes = [] variable in class:GenericTest
27 for attr in self.common_attributes + self.attributes:
test_ntpath.py 195 attributes = ['relpath', 'splitunc'] variable in class:NtCommonTest
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_genericpath.py 24 attributes = [] variable in class:GenericTest
27 for attr in self.common_attributes + self.attributes:
test_ntpath.py 195 attributes = ['relpath', 'splitunc'] variable in class:NtCommonTest
  /prebuilts/tools/common/m2/repository/org/twdata/maven/mojo-executor/2.2.0/
mojo-executor-2.2.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ObsoleteLayoutParamsFix.java 56 NamedNodeMap attributes = element.getAttributes(); local
57 for (int i = 0, n = attributes.getLength(); i < n; i++) {
58 Attr attribute = (Attr) attributes.item(i);
  /cts/tests/tests/drm/src/android/drm/cts/
DrmInfoRequestTest.java 64 HashMap<String, Object> attributes = new HashMap<String, Object>(3); local
65 attributes.put("Hello", "");
66 attributes.put("World", null);
67 attributes.put("Hello World", "Hello World");
69 // Store all the attributes in DrmInfoRequest object request.
71 Iterator<String> keys = attributes.keySet().iterator();
74 request.put(key, attributes.get(key));
77 // Request object must have all the keys that attributes does.
81 assertEquals(request.get(key), attributes.get(key));
84 // Attributes object must have all the keys that request does
    [all...]
DrmInfoTest.java 74 HashMap<String, Object> attributes = new HashMap<String, Object>(3); local
75 attributes.put("Hello", "");
76 attributes.put("World", null);
77 attributes.put("Hello World", "Hello World");
79 // Store all the attributes in DrmInfo object info.
81 Iterator<String> keys = attributes.keySet().iterator();
84 info.put(key, attributes.get(key));
87 // info object must have all the keys that attributes does.
91 assertEquals(info.get(key), attributes.get(key));
94 // Attributes object must have all the keys that info does
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
MemberListParser.java 149 * 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(); local
215 attributes.setImmutable();
217 Member member = set(i, accessFlags, nat, attributes);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoView.java 78 * @param attributeSet The entire set of attributes for the View
83 // Gets attributes associated with the attribute set
90 * @param attributeSet The entire set of attributes for the View
96 // Gets attributes associated with the attribute set
102 * @param attributeSet The entire set of attributes for the View
106 // Gets an array of attributes for the View
107 TypedArray attributes = local
112 attributes.getResourceId(R.styleable.ImageDownloaderView_hideShowSibling, -1);
115 attributes.recycle();
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs10/
CertificationRequestTest.java 48 List attributes = new ArrayList(); local
50 attributes.add(new AttributeTypeAndValue("1.2.840.113549.1.9.1",
53 version, subject, spki, attributes);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 15 * This is helper tool to construct {@link Attributes} sets.
19 private Hashtable attributes = new Hashtable(); field in class:AttributeTable
24 attributes = copyTable(attrs);
56 Attributes attrs)
65 Object value = attributes.get(oid);
69 attributes.put(oid, a);
89 attributes.put(oid, v);
110 Object value = attributes.get(oid);
129 * Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be
130 * empty if there are no attributes of the required type present
    [all...]

Completed in 2384 milliseconds

1 2 3 4 5 6 7 891011>>