/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCPeerConnection.idl | 43 [GetterRaisesException] readonly attribute RTCSessionDescription localDescription; 46 [GetterRaisesException] readonly attribute RTCSessionDescription remoteDescription; 48 readonly attribute DOMString signalingState; 54 readonly attribute DOMString iceGatheringState; 55 readonly attribute DOMString iceConnectionState; 72 attribute EventHandler onnegotiationneeded; 73 attribute EventHandler onicecandidate; 74 attribute EventHandler onsignalingstatechange; 75 attribute EventHandler onaddstream; 76 attribute EventHandler onremovestream [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
RetargetedInnerClassAttributeRemover.java | 24 import proguard.classfile.attribute.*; 25 import proguard.classfile.attribute.visitor.*; 53 Attribute[] attributes = programClass.attributes; 60 Attribute attribute = attributes[index]; local 62 // Check if it's an InnerClasses or EnclosingMethod attribute in 65 attribute.accept(programClass, this); 68 attributes[newAtributesCount++] = attribute; 85 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {} [all...] |
/frameworks/base/core/java/android/util/ |
AttributeSet.java | 26 * the Resources API will convert resource references (attribute values such as 32 * application of themes and styles when retrieving attribute values. 56 * identifier associated with a particular XML attribute name. 67 * Returns the name of the specified attribute. 69 * @param index Index of the desired attribute, 0...count-1. 71 * @return A String containing the name of the attribute, or null if the 72 * attribute cannot be found. 77 * Returns the value of the specified attribute as a string representation. 79 * @param index Index of the desired attribute, 0...count-1. 81 * @return A String containing the value of the attribute, or null if th [all...] |
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMEmulation.cpp | 27 pConfig.attribute().constraint().enableWholeArchive(); 28 pConfig.attribute().constraint().enableAsNeeded(); 29 pConfig.attribute().constraint().setSharedSystem(); 32 pConfig.attribute().predefined().unsetWholeArchive(); 33 pConfig.attribute().predefined().unsetAsNeeded(); 34 pConfig.attribute().predefined().setDynamic();
|
/frameworks/compile/mclinker/lib/Target/X86/ |
X86Emulation.cpp | 37 pConfig.attribute().constraint().enableWholeArchive(); 38 pConfig.attribute().constraint().enableAsNeeded(); 39 pConfig.attribute().constraint().setSharedSystem(); 42 pConfig.attribute().predefined().unsetWholeArchive(); 43 pConfig.attribute().predefined().unsetAsNeeded(); 44 pConfig.attribute().predefined().setDynamic();
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementHasAttribute.java | 10 * The method hasAttribute returns true when an attribute with a given name is 75 Attr attribute; local 79 attribute = doc.createAttribute("domestic"); 82 element.setAttributeNode(attribute); 90 Attr attribute; local 94 attribute = doc.createAttribute("domestic"); 95 element.setAttributeNode(attribute);
|
GetAttributeNodeNS.java | 33 * attribute node by local name and NamespaceURI. 37 * attribute node was retrieved. This attribute value should be null since there 38 * is no such attribute. 80 Attr attribute; local 85 attribute = testAddr.getAttributeNodeNS(namespaceURI, localName); 86 assertNull("throw_Null", attribute); 92 Attr attribute; local 98 attribute = testAddr.getAttributeNodeNS("http://www.nist.gov", 100 attrName = attribute.getNodeName() [all...] |
/external/javassist/src/main/javassist/bytecode/ |
MethodInfo.java | 39 ArrayList attribute; // may be null field in class:MethodInfo 42 * If this value is true, Javassist maintains a <code>StackMap</code> attribute 61 attribute = null; 132 attribute = AttributeInfo.copyAll(attribute, cp); 183 attribute = newAttributes; 276 * is shared with this object. If you add a new attribute to the list, 277 * the attribute is also added to the method represented by this 278 * object. If you remove an attribute from the list, it is also removed 285 if (attribute == null [all...] |
/external/smack/asmack-master/lib/ |
jstun.jar | |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MessageEvent.idl | 32 [InitializedByEventConstructor] readonly attribute DOMString origin; 33 [InitializedByEventConstructor] readonly attribute DOMString lastEventId; 34 [InitializedByEventConstructor] readonly attribute Window source; 35 [InitializedByEventConstructor, CustomGetter] readonly attribute any data; 36 [InitializedByEventConstructor] readonly attribute MessagePort[] ports;
|
VisitedLinkState.cpp | 58 inline static LinkHash linkHashForElementWithAttribute(Document* document, Element* element, const AtomicString& attribute) 60 ASSERT(linkAttribute(element) == attribute); 63 return visitedLinkHash(document->baseURL(), attribute); 100 const AtomicString& attribute = linkAttribute(element); local 102 if (attribute.isNull()) 105 // An empty attribute refers to the document itself which is always 109 if (attribute.isEmpty()) 118 LinkHash hash = linkHashForElementWithAttribute(m_document, element, attribute);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/ |
ShadowRoot.idl | 30 readonly attribute Element activeElement; 31 attribute boolean applyAuthorStyles; 32 attribute boolean resetStyleInheritance; 33 [EnabledAtRuntime=ShadowDOM, ImplementedAs=bindingsOlderShadowRoot] readonly attribute ShadowRoot olderShadowRoot; 35 [TreatNullAs=NullString, CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds, SetterRaisesException] attribute DOMString innerHTML;
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
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/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...] |
/external/chromium_org/chrome/browser/chromeos/policy/ |
device_policy_cros_browser_test.cc | 32 cryptohome::SerializedInstallAttributes::Attribute* attribute = NULL; local 34 attribute = install_attrs_proto.add_attributes(); 35 attribute->set_name(EnterpriseInstallAttributes::kAttrEnterpriseOwned); 36 attribute->set_value("true"); 38 attribute = install_attrs_proto.add_attributes(); 39 attribute->set_name(EnterpriseInstallAttributes::kAttrEnterpriseUser); 40 attribute->set_value(DevicePolicyBuilder::kFakeUsername);
|
/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);
|
/external/droiddriver/src/com/google/android/droiddriver/finders/ |
By.java | 72 * @param attribute the attribute to match against 75 * @param expected the expected attribute value 78 public static <T> ByAttribute<T> attribute(Attribute attribute, method in class:By 80 return new ByAttribute<T>(attribute, strategy, expected); 83 /** Shorthand for {@link #attribute}{@code (attribute, OBJECT_EQUALS, expected)} */ 84 public static <T> ByAttribute<T> attribute(Attribute attribute, T expected) method in class:By [all...] |
/external/kernel-headers/original/linux/ |
sysfs.h | 18 struct attribute { struct 26 struct attribute ** attrs; 54 struct attribute attr; 64 ssize_t (*show)(struct kobject *, struct attribute *,char *); 65 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t); 100 sysfs_create_file(struct kobject *, const struct attribute *); 103 sysfs_update_file(struct kobject *, const struct attribute *); 106 sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode); 109 sysfs_remove_file(struct kobject *, const struct attribute *); 143 static inline int sysfs_create_file(struct kobject * k, const struct attribute * a [all...] |
/bionic/libc/kernel/common/linux/ |
sysfs.h | 25 struct attribute { struct 34 struct attribute ** attrs; 44 struct attribute attr; 55 ssize_t (*show)(struct kobject *, struct attribute *,char *); 56 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
|
/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/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; 50 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
|