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

1 2 3 4 5 6 7 891011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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);
setNamedItemNS02.java 79 NamedNodeMap attributes; local
87 attributes = testAddress.getAttributes();
92 setNode = attributes.setNamedItemNS(arg);
setNamedItemNS05.java 75 NamedNodeMap attributes; local
83 attributes = testAddress.getAttributes();
84 retnode = attributes.setNamedItemNS(arg);
namednodemapsetnameditemns03.java 79 NamedNodeMap attributes; local
92 attributes = element.getAttributes();
103 newNode = attributes.setNamedItemNS(attr);
removeNamedItemNS03.java 86 NamedNodeMap attributes; local
103 attributes = child2.getAttributes();
108 removedNode = attributes.removeNamedItemNS(namespaceURI, localName);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNamedNodeMapInvalidType.java 83 NamedNodeMap attributes; local
89 attributes = docElem.getAttributes();
95 attributes.setNamedItem(newElem);
OwnerElement.java 90 NamedNodeMap attributes; local
97 attributes = testNode.getAttributes();
98 domesticAttr = (Attr) attributes.getNamedItem("domestic");
  /libcore/luni/src/main/java/java/text/
AttributedString.java 32 * Holds a string with attributes describing the characters of
71 AttributedCharacterIterator.Attribute[] attributes, int begin,
80 if (attributes != null) {
82 (attributes.length * 4 / 3) + 1);
83 for (int i = attributes.length; --i >= 0;) {
84 set.add(attributes[i]);
178 * Returns a set of attributes present in the {@code AttributedString}.
179 * An empty set returned indicates that no attributes where defined.
284 public int getRunLimit(Set<? extends Attribute> attributes) {
286 Iterator<? extends Attribute> it = attributes.iterator()
398 Set<AttributedCharacterIterator.Attribute> attributes = iterator local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSObject.cpp 58 if (entry->key() && (!(entry->attributes() & DontEnum) || (mode == IncludeDontEnumProperties)))
131 unsigned attributes; local
133 if ((m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly)
173 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot)
175 putDirectInternal(exec->globalData(), propertyName, value, attributes, checkReadOnly, slot);
178 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
180 putDirectInternal(exec->globalData(), propertyName, value, attributes);
183 void JSObject::putWithAttributes(ExecState* exec, unsigned propertyName, JSValue value, unsigned attributes)
185 putWithAttributes(exec, Identifier::from(exec, propertyName), value, attributes);
203 unsigned attributes; local
417 unsigned attributes; local
538 unsigned attributes = 0; local
    [all...]
Lookup.h 44 unsigned char attributes; // JSObject attributes member in struct:JSC::HashTableValue
56 void initialize(UString::Rep* key, unsigned char attributes, intptr_t v1, intptr_t v2)
59 m_attributes = attributes;
68 unsigned char attributes() const { return m_attributes; } function in class:JSC::HashEntry
83 unsigned char m_attributes; // JSObject attributes
181 if (entry->attributes() & Function)
198 if (entry->attributes() & Function)
203 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
243 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
    [all...]
PropertyDescriptor.cpp 87 void PropertyDescriptor::setDescriptor(JSValue value, unsigned attributes)
90 m_attributes = attributes;
91 if (attributes & (Getter | Setter)) {
104 void PropertyDescriptor::setAccessorDescriptor(JSValue getter, JSValue setter, unsigned attributes)
106 ASSERT(attributes & (Getter | Setter));
108 m_attributes = attributes;
Lookup.cpp 49 entry->initialize(identifier, values[i].attributes, values[i].value1, values[i].value2);
69 ASSERT(entry->attributes() & Function);
75 thisObj->putDirectFunction(propertyName, function, entry->attributes());
  /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
72 * Returns the {@code Attributes} object associated with this entry or
75 * @return the {@code Attributes} for this entry.
77 * If an error occurs obtaining the {@code Attributes}.
78 * @see Attributes
80 public Attributes getAttributes() throws IOException {
81 if (attributes != null || parentJar == null) {
82 return attributes;
    [all...]
JarVerifier.java 60 private final Hashtable<String, HashMap<String, Attributes>> signatures = new Hashtable<String, HashMap<String, Attributes>>(
168 Attributes attributes = man.getAttributes(name); local
170 if (attributes == null) {
175 Iterator<Map.Entry<String, HashMap<String, Attributes>>> it = signatures
178 Map.Entry<String, HashMap<String, Attributes>> entry = it.next();
179 HashMap<String, Attributes> hm = entry.getValue();
200 String algorithms = attributes.getValue("Digest-Algorithms");
207 String hash = attributes.getValue(algorithm + "-Digest")
316 Attributes attributes = new Attributes(); local
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 86 * The current element's attributes arranged in groups of 4:
92 private String[] attributes = new String[16]; field in class:KXmlParser
114 * Retains namespace attributes like {@code xmlns="http://foo"} or {@code
117 * attributes aren't useful. But for structure preserving wrappers like DOM,
141 String attrName = attributes[i + 2];
164 nspStack[j + 1] = attributes[i + 3];
166 if (attrName != null && attributes[i + 3].isEmpty())
175 // explicitly set the namespace for unprefixed attributes
177 attributes[i] = "http://www.w3.org/2000/xmlns/";
181 attributes,
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorLRE.java 41 import org.xml.sax.Attributes;
66 * @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)
    [all...]
ProcessorStylesheetElement.java 30 import org.xml.sax.Attributes;
55 * @param attributes The attributes attached to the element. If
56 * there are no attributes, it shall be an empty
57 * Attributes object.
60 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 super.startElement(handler, uri, localName, rawName, attributes);
106 setPropertiesFromAttributes(handler, rawName, attributes,
ProcessorTemplateElem.java 28 import org.xml.sax.Attributes;
46 * @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);
  /external/proguard/src/proguard/classfile/attribute/
CodeAttribute.java 42 public Attribute[] attributes; field in class:CodeAttribute
64 Attribute[] attributes)
75 this.attributes = attributes;
86 Attribute attribute = attributes[index];
193 * Applies the given attribute visitor to all attributes.
199 attributes[index].accept(clazz, method, this, attributeVisitor);
  /external/webkit/WebCore/bindings/js/
JSDOMWindowShell.cpp 102 void JSDOMWindowShell::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
104 m_window->putWithAttributes(exec, propertyName, value, attributes);
127 void JSDOMWindowShell::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
129 m_window->defineGetter(exec, propertyName, getterFunction, attributes);
132 void JSDOMWindowShell::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes)
134 m_window->defineSetter(exec, propertyName, setterFunction, attributes);
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
scrollbar_render.cpp 95 trackInfo.attributes = 0;
97 trackInfo.attributes |= kThemeTrackHorizontal;
100 trackInfo.attributes |= kThemeTrackShowThumb;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrinsertbefore3.java 62 NamedNodeMap attributes; local
76 attributes = testNode.getAttributes();
77 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrinsertbefore4.java 62 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrinsertbefore7.java 64 NamedNodeMap attributes; local
78 attributes = testNode.getAttributes();
79 titleAttr = (Attr) attributes.getNamedItem("title");
hc_attrreplacechild2.java 62 NamedNodeMap attributes; local
73 attributes = testNode.getAttributes();
74 titleAttr = (Attr) attributes.getNamedItem("title");

Completed in 406 milliseconds

1 2 3 4 5 6 7 891011>>