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

1 2 3 45 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
namednodemapsetnameditemreturnvalue.java 36 * object from the attributes of the last child by
77 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 newNode = attributes.setNamedItem(newAttribute);
namednodemapsetnameditemwithnewvalue.java 35 * object from the attributes of the last child.
74 NamedNodeMap attributes; local
80 attributes = testAddress.getAttributes();
81 newNode = attributes.setNamedItem(newAttribute);
  /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);
namednodemapgetnameditemns05.java 39 * namespace doesnot apply to attributes this should return null.
73 NamedNodeMap attributes; local
80 attributes = element.getAttributes();
81 attribute = (Attr) attributes.getNamedItemNS("*", "street");
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");
ownerElement01.java 68 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 domesticAttr = (Attr) attributes.getNamedItem("domestic");
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/
PrivateKeyInfo.java 40 * attributes [0] IMPLICIT Attributes OPTIONAL }
48 * Attributes ::= SET OF Attribute
54 private final List<?> attributes; field in class:PrivateKeyInfo
58 byte[] privateKey, List attributes) {
62 this.attributes = attributes;
67 List attributes, byte[] encoding) {
68 this(version, privateKeyAlgorithm, privateKey, attributes);
81 return attributes;
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNamedNodeMapInvalidType.java 71 NamedNodeMap attributes; local
77 attributes = docElem.getAttributes();
83 attributes.setNamedItem(newElem);
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlSerializer.java 53 NamedNodeMap attributes = element.getAttributes(); local
54 for (int i = 0; i < attributes.getLength(); i++) {
55 Attr attribute = (Attr)attributes.item(i);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AttributeScope.java 36 /** Track the attributes within a scope. A named scoped has just its list
37 * of attributes. Each rule has potentially 3 scopes: return values,
45 * of predefined attributes. I keep this out of the runtime.Token
83 protected LinkedHashMap<String,Attribute> attributes = new LinkedHashMap(); field in class:AttributeScope
108 /** From a chunk of text holding the definitions of the attributes,
110 * the list of attributes for this scope. Pass in the character
133 attributes.put(attr.name, attr);
138 attributes.put(name, new Attribute(name,decl));
159 return (Attribute)attributes.get(name);
162 /** Used by templates to get all attributes */
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PrivateKeyInfo.java 27 private ASN1Set attributes; field in class:PrivateKeyInfo
62 ASN1Set attributes)
67 this.attributes = attributes;
90 attributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false);
129 return attributes;
140 * attributes [0] IMPLICIT Attributes OPTIONAL
146 * Attributes ::= SET OF Attribute
157 if (attributes != null
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AttributeCertificateInfo.java 22 private ASN1Sequence attributes; field in class:AttributeCertificateInfo
73 this.attributes = ASN1Sequence.getInstance(seq.getObjectAt(start + 5));
122 return attributes;
145 * attributes SEQUENCE OF Attribute,
166 v.add(attributes);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 134 $attributes = $openid->getAttributes(); variable
135 $_SESSION['attributes'] = $attributes;
155 unset($_SESSION['attributes']);
182 <span>Welcome <?php echo @$_SESSION['attributes']['namePerson/first'] ?> <?php echo @$_SESSION['attributes']['namePerson/last'] ?> ( <?php echo $_SESSION['attributes']['contact/email'] ?> )</span>
186 <?php if (isset($_SESSION['attributes'])): ?>
  /external/chromium_org/cloud_print/service/win/
local_security_policy.cc 72 LSA_OBJECT_ATTRIBUTES attributes = {0}; local
74 ::LsaOpenPolicy(NULL, &attributes,
  /external/chromium_org/device/nfc/
nfc_peer_chromeos.cc 82 base::DictionaryValue attributes; local
84 record, &attributes)) {
91 attributes,
nfc_tag_technology_chromeos.cc 81 base::DictionaryValue attributes; local
83 record, &attributes)) {
90 attributes,
  /external/chromium_org/net/third_party/nss/ssl/
sslmutex.c 347 SECURITY_ATTRIBUTES attributes = local
371 attributes.bInheritHandle = (shared ? TRUE : FALSE);
372 hMutex = CreateMutex(&attributes, FALSE, NULL);
  /external/chromium_org/sandbox/win/src/
process_thread_policy.cc 112 OBJECT_ATTRIBUTES attributes = {0}; local
113 attributes.Length = sizeof(attributes);
121 NTSTATUS status = NtOpenThread(&local_handle, desired_access, &attributes,
147 OBJECT_ATTRIBUTES attributes = {0};
148 attributes.Length = sizeof(attributes);
153 NTSTATUS status = NtOpenProcess(&local_handle, desired_access, &attributes,
195 uint32 attributes,
206 attributes, &local_handle)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMConfiguration.cpp 38 void V8DOMConfiguration::installAttributes(v8::Handle<v8::ObjectTemplate> instanceTemplate, v8::Handle<v8::ObjectTemplate> prototype, const AttributeConfiguration* attributes, size_t attributeCount, v8::Isolate* isolate)
41 installAttribute(instanceTemplate, prototype, attributes[i], isolate);
81 void V8DOMConfiguration::installCallbacks(v8::Handle<v8::ObjectTemplate> prototype, v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate)
90 prototype->Set(v8AtomicString(isolate, callbacks[i].name), functionTemplate, attributes); local
95 const AttributeConfiguration* attributes, size_t attributeCount,
114 installAttributes(instanceTemplate, functionDescriptor->PrototypeTemplate(), attributes, attributeCount, isolate);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 57 RefPtr<CanvasContextAttributes> attributes; local
84 attributes = webGLAttributes;
93 attributes = canvas2DAttributes;
95 CanvasRenderingContext* result = impl->getContext(contextId, attributes.get());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementData.cpp 103 AttributeCollection attributes = this->attributes();
104 if (attributes.size() != other->attributeCount())
107 AttributeCollection::const_iterator end = attributes.end();
108 for (AttributeCollection::const_iterator it = attributes.begin(); it != end; ++it) {
119 AttributeCollection attributes = this->attributes(); local
120 AttributeCollection::const_iterator end = attributes.end();
122 for (AttributeCollection::const_iterator it = attributes.begin(); it != end; ++it, ++index) {
132 AttributeCollection attributes = this->attributes() local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextAttributes.cpp 145 blink::WebGraphicsContext3D::Attributes WebGLContextAttributes::attributes( function in class:WebCore::WebGLContextAttributes
148 blink::WebGraphicsContext3D::Attributes attrs;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
AtomicHTMLToken.h 74 Vector<Attribute>& attributes() function in class:WebCore::AtomicHTMLToken
80 const Vector<Attribute>& attributes() const function in class:WebCore::AtomicHTMLToken
132 initializeAttributes(token.attributes());
164 m_attributes.reserveInitialCapacity(token.attributes().size());
165 for (Vector<CompactHTMLToken::Attribute>::const_iterator it = token.attributes().begin(); it != token.attributes().end(); ++it) {
167 // FIXME: This is N^2 for the number of attributes.
189 AtomicHTMLToken(HTMLToken::Type type, const AtomicString& name, const Vector<Attribute>& attributes = Vector<Attribute>())
193 , m_attributes(attributes)
201 void initializeAttributes(const HTMLToken::AttributeList& attributes);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLErrors.cpp 155 Vector<Attribute> attributes; local
156 attributes.append(Attribute(styleAttr, "white-space: normal"));
158 paragraph->parserSetAttributes(attributes);

Completed in 1822 milliseconds

1 2 3 45 6 7 8 91011>>