HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 526 - 550 of 2398) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8DOMConfiguration.h 66 v8::PropertyAttribute attribute; member in struct:blink::V8DOMConfiguration::AttributeConfiguration
81 v8::PropertyAttribute attribute; member in struct:blink::V8DOMConfiguration::AccessorConfiguration
88 static inline void installAttribute(v8::Handle<ObjectOrTemplate> instanceTemplate, v8::Handle<ObjectOrTemplate> prototype, const AttributeConfiguration& attribute, v8::Isolate* isolate)
91 if (attribute.exposeConfiguration == OnlyExposedToPrivateScript && !world.isPrivateScriptIsolatedWorld())
94 v8::AccessorGetterCallback getter = attribute.getter;
95 v8::AccessorSetterCallback setter = attribute.setter;
97 if (attribute.getterForMainWorld)
98 getter = attribute.getterForMainWorld;
99 if (attribute.setterForMainWorld)
100 setter = attribute.setterForMainWorld
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.idl 37 readonly attribute AudioDestinationNode destination;
40 readonly attribute double currentTime;
43 readonly attribute float sampleRate;
46 readonly attribute AudioListener listener;
80 attribute EventHandler oncomplete;
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface_base.cpp 53 {% for attribute in attributes if not attribute.constructor_type %}
54 {% if attribute.should_be_exposed_to_script %}
55 {% for world_suffix in attribute.world_suffixes %}
56 {% if not attribute.has_custom_getter %}
57 {{attribute_getter(attribute, world_suffix)}}
59 {{attribute_getter_callback(attribute, world_suffix)}}
60 {% if not attribute.is_read_only or attribute.put_forwards %}
61 {% if not attribute.has_custom_setter %
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_Format.java 23 import java.text.AttributedCharacterIterator.Attribute;
81 * which stores start and end indexes and an attribute this range
90 Iterator<Attribute> it = iterator.getAttributes().keySet().iterator();
92 AttributedCharacterIterator.Attribute attribute = it.next(); local
93 Object value = iterator.getAttribute(attribute);
94 result.add(new FieldContainer(start, end, attribute, value));
95 // System.out.println(start + " " + end + ": " + attribute + ",
98 // end +"," + attribute+ "," + value+ "));");
108 AttributedCharacterIterator.Attribute attribute field in class:Support_Format.FieldContainer
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetattributenodens01.java 33 * Create a new element node and add 2 new attribute nodes to it that have the same
35 * Retrieve an attribute using namespace and localname and check its value, name and
76 Attr attribute; local
88 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", "att");
89 attrValue = attribute.getNodeValue();
90 attrName = attribute.getName();
91 attNodeName = attribute.getNodeName();
92 attrLocalName = attribute.getLocalName();
93 attrNS = attribute.getNamespaceURI();
nodeissupported02.java 37 * Call the isSupported method on a new attribute node with a combination of features
68 Attr attribute; local
84 attribute = doc.createAttribute("TestAttr");
87 success = attribute.isSupported(featureXML, version);
89 success = attribute.isSupported(featureXML, version1);
94 success = attribute.isSupported(featureCore, version);
96 success = attribute.isSupported(featureCore, version1);
97 success = attribute.isSupported(featureCore, version2);
elementgetattributenodens02.java 35 * Create a new element node and add a new attribute node to it. Using the getAttributeNodeNS,
36 * retrieve the newly added attribute node and check its value.
72 Attr attribute; local
77 attribute = doc.createAttributeNS("http://www.w3.org/DOM/Level2", "l2:att");
78 newAttribute1 = element.setAttributeNodeNS(attribute);
79 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", "att");
80 attrValue = attribute.getNodeValue();
namednodemapgetnameditemns06.java 35 * of this element into 2 nodemaps. Create a new attribute node and add it to this element.
37 * the newly created attribute from each node map.
75 Attr attribute; local
87 attribute = (Attr) attributesMap1.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
88 attrName = attribute.getNodeName();
90 attribute = (Attr) attributesMap2.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
91 attrName = attribute.getNodeName();
namednodemapremovenameditemns02.java 35 * A removed attribute may be known to have a default value when this map contains the
36 * attributes attached to an element, as returned by the attributes attribute of the Node
37 * interface. If so, an attribute immediately appears containing the default value as well
40 * Retreive a default attribute node. Remove it from the NodeMap. Check if a new one immediately
79 Attr attribute; local
88 attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
89 attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
90 attrValue = attribute.getNodeValue();
91 assertNotNull("namednodemapremovenameditemns02", attribute);
namednodemapremovenameditemns04.java 73 Attr attribute; local
81 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
82 assertNull("namednodemapremovenameditemns04_1", attribute);
84 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
85 assertNull("namednodemapremovenameditemns04_2", attribute);
  /development/ndk/platforms/android-3/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /external/chromium_org/ui/accessibility/
ax_node_data.h 27 void AddStringAttribute(AXStringAttribute attribute,
29 void AddIntAttribute(AXIntAttribute attribute, int value);
30 void AddFloatAttribute(AXFloatAttribute attribute, float value);
31 void AddBoolAttribute(AXBoolAttribute attribute, bool value);
32 void AddIntListAttribute(AXIntListAttribute attribute,
  /external/proguard/src/proguard/classfile/
ProgramMember.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
39 public Attribute[] attributes;
62 Attribute[] attributes)
73 * Returns the (first) attribute with the given name.
75 private Attribute getAttribute(Clazz clazz, String name)
79 Attribute attribute = attributes[index]; local
80 if (attribute.getAttributeName(clazz).equals(name))
82 return attribute;
    [all...]
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AllAnnotationVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.Attribute;
25 import proguard.classfile.attribute.annotation.*;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
55 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
sysfs.h 20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);

Completed in 1949 milliseconds

<<21222324252627282930>>