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

1 2 34 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
namednodemapsetnameditemwithnewvalue.java 35 * object from the attributes of the last child.
74 NamedNodeMap attributes; local
80 attributes = testAddress.getAttributes();
81 newNode = attributes.setNamedItem(newAttribute);
hc_attrcreatedocumentfragment.java 68 NamedNodeMap attributes; local
79 attributes = domesticNode.getAttributes();
80 for (int indexN10078 = 0; indexN10078 < attributes.getLength(); indexN10078++) {
81 attribute = (Attr) attributes.item(indexN10078);
hc_elementretrieveallattributes.java 31 * Create a list of all the attributes of the last child
64 NamedNodeMap attributes; local
79 attributes = testAddress.getAttributes();
80 for (int indexN1006B = 0; indexN1006B < attributes.getLength(); indexN1006B++) {
81 attribute = (Attr) attributes.item(indexN1006B);
hc_namednodemapreturnfirstitem.java 34 * Retrieve the second "acronym" get the NamedNodeMap of the attributes. Since the
68 NamedNodeMap attributes; local
85 attributes = testAddress.getAttributes();
86 for (int indexN10070 = 0; indexN10070 < attributes.getLength(); indexN10070++) {
87 child = (Node) attributes.item(indexN10070);
hc_namednodemapreturnlastitem.java 70 NamedNodeMap attributes; local
87 attributes = testEmployee.getAttributes();
88 for (int indexN10070 = 0; indexN10070 < attributes.getLength(); indexN10070++) {
89 child = (Node) attributes.item(indexN10070);
hc_namednodemapsetnameditem.java 32 * object from the attributes of the last child by
74 NamedNodeMap attributes; local
82 attributes = testAddress.getAttributes();
83 setNode = attributes.setNamedItem(newAttribute);
84 districtNode = (Attr) attributes.getNamedItem("lang");
hc_namednodemapsetnameditemthatexists.java 36 * object from the attributes of the last child by
77 NamedNodeMap attributes; local
85 attributes = testAddress.getAttributes();
86 setNode = attributes.setNamedItem(newAttribute);
87 districtNode = (Attr) attributes.getNamedItem("class");
hc_nodecloneattributescopied.java 34 * attributes associated with this node.
66 NamedNodeMap attributes; local
84 attributes = clonedNode.getAttributes();
85 for (int indexN10076 = 0; indexN10076 < attributes.getLength(); indexN10076++) {
86 attributeNode = (Node) attributes.item(indexN10076);
namednodemapsetnameditem.java 35 * object from the attributes of the last child by
76 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 setNode = attributes.setNamedItem(newAttribute);
86 districtNode = (Attr) attributes.getNamedItem("district");
namednodemapsetnameditemthatexists.java 36 * object from the attributes of the last child by
78 NamedNodeMap attributes; local
86 attributes = testAddress.getAttributes();
87 setNode = attributes.setNamedItem(newAttribute);
88 districtNode = (Attr) attributes.getNamedItem("street");
nodecloneattributescopied.java 32 * Element node, all the attributes of the Element are
38 * attributes associated with this node.
69 NamedNodeMap attributes; local
82 attributes = clonedNode.getAttributes();
83 for (int indexN10065 = 0; indexN10065 < attributes.getLength(); indexN10065++) {
84 attributeNode = (Node) attributes.item(indexN10065);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getNamedItemNS02.java 39 * Access the second element from the list and get its attributes.
75 NamedNodeMap attributes; local
80 attributes = testEmployee.getAttributes();
81 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName);
hc_namednodemapinvalidtype1.java 61 NamedNodeMap attributes; local
67 attributes = docElem.getAttributes();
73 retval = attributes.setNamedItem(newElem);
ownerElement01.java 68 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 domesticAttr = (Attr) attributes.getNamedItem("domestic");
importNode07.java 37 * If this document defines default attributes for this element name (importedNode),
38 * those default attributes are assigned.
83 NamedNodeMap attributes; local
93 attributes = aNode.getAttributes();
94 assertSize("throw_Size", 1, attributes);
97 attr = attributes.item(0);
namednodemapremovenameditemns01.java 71 NamedNodeMap attributes; local
78 attributes = element.getAttributes();
79 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", "domestic");
80 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", "domestic");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 114 NamedNodeMap attributes; local
123 attributes = element.getAttributes();
124 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
137 NamedNodeMap attributes; local
150 attributes = element.getAttributes();
151 attribute = (Attr) attributes.getNamedItemNS(
164 NamedNodeMap attributes; local
175 attributes = element.getAttributes();
176 attribute = (Attr) attributes.getNamedItemNS(
189 NamedNodeMap attributes; local
    [all...]
GetNamedItemNS.java 21 * element from the list and get its attributes. Try to retrieve the attribute
70 NamedNodeMap attributes; local
76 attributes = testEmployee.getAttributes();
77 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com",
94 NamedNodeMap attributes; local
99 attributes = testEmployee.getAttributes();
100 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName);
  /external/chromium/base/
platform_thread_posix.cc 84 pthread_attr_t attributes; local
85 pthread_attr_init(&attributes);
90 pthread_attr_setdetachstate(&attributes, PTHREAD_CREATE_DETACHED);
94 pthread_attr_setstacksize(&attributes, stack_size);
96 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);
98 pthread_attr_destroy(&attributes);
  /external/webkit/JavaScriptCore/debugger/
DebuggerActivation.cpp 64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
66 m_activation->putWithAttributes(exec, propertyName, value, attributes);
84 void DebuggerActivation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
86 m_activation->defineGetter(exec, propertyName, getterFunction, attributes);
89 void DebuggerActivation::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes)
91 m_activation->defineSetter(exec, propertyName, setterFunction, attributes);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
PrivateKeyInfo.java 26 private ASN1Set attributes; field in class:PrivateKeyInfo
60 ASN1Set attributes)
64 this.attributes = attributes;
93 attributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false);
109 return attributes;
120 * attributes [0] IMPLICIT Attributes OPTIONAL
126 * Attributes ::= SET OF Attribute
137 if (attributes != null
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/
PrivateKeyInfo.java 40 * attributes [0] IMPLICIT Attributes OPTIONAL }
48 * Attributes ::= SET OF Attribute
59 private List attributes; field in class:PrivateKeyInfo
64 byte[] privateKey, List attributes) {
69 this.attributes = attributes;
74 List attributes, byte[] encoding) {
75 this(version, privateKeyAlgorithm, privateKey, attributes);
94 * @return Returns List of attributes
    [all...]
  /external/svox/pico/tts/
svox_ssml_parser.cpp 103 void SvoxSsmlParser::starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes)
105 ((SvoxSsmlParser*)data)->startElement(element, attributes);
108 void SvoxSsmlParser::startElement(const XML_Char* element, const XML_Char** attributes)
127 for (int i = 0; attributes[i]; i += 2)
129 if (strcmp(attributes[i], "xml:lang") == 0)
133 m_docLanguage = new char[strlen(attributes[i+1])+1];
135 strcpy(m_docLanguage, attributes[i+1]);
140 else if (strcmp(element, "p") == 0) /* currently no attributes are supported for <p> */
152 else if (strcmp(element, "s") == 0) /* currently no attributes are supported for <s> */
173 for (int i = 0; attributes[i]; i += 2
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
X509Principal.java 60 * constructor from a table of attributes.
65 Hashtable attributes)
67 super(attributes);
71 * constructor from a table of attributes and a vector giving the
78 Hashtable attributes)
80 super(ordering, attributes);
95 * some such, converting it into an ordered set of name attributes.
105 * some such, converting it into an ordered set of name attributes. If reverse
119 * some such, converting it into an ordered set of name attributes. lookUp
  /external/openssl/crypto/store/
str_mem.c 73 from the range of attributes associated with the object (basically,
92 be used to add attributes
101 attributes to search for. Each
103 int search_index; /* which of the search attributes we
113 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
115 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
117 STORE_OBJECT *data, OPENSSL_ITEM attributes[],
124 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
126 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
130 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[],
    [all...]

Completed in 1041 milliseconds

1 2 34 5 6 7 8 91011>>