/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTRegionList.idl | 30 readonly attribute unsigned long length;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGResourceFilterPrimitive.h | 48 inline void primitiveAttributeChanged(const QualifiedName& attribute) 53 toRenderSVGResourceFilter(filter)->primitiveAttributeChanged(this, attribute);
|
/external/chromium_org/third_party/WebKit/Source/core/workers/ |
DedicatedWorkerGlobalScope.idl | 36 attribute EventHandler onmessage;
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBCursor.idl | 39 readonly attribute IDBCursorDirection direction; 40 [CallWith=ScriptState, CachedAttribute=isKeyDirty] readonly attribute any key; 41 [CallWith=ScriptState, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey; 42 [CallWith=ScriptState] readonly attribute any source;
|
/external/chromium_org/tools/idl_parser/test_parser/ |
interface_web.idl | 73 * Attribute(myString) 76 * Attribute(readOnlyString) 79 * Attribute(staticString) 101 attribute DOMString myString; 102 readonly attribute DOMString readOnlyString; 103 static attribute DOMString staticString; 155 * Attribute(stringValue) 163 stringifier attribute DOMString stringValue;
|
/external/libsepol/tests/policies/test-hooks/ |
module_add_symbols.conf | 6 attribute attrib_add_1;
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
RuntimeInvisibleParameterAnnotationsAttribute.java | 21 package proguard.classfile.attribute.annotation; 24 import proguard.classfile.attribute.visitor.AttributeVisitor; 27 * This Attribute represents a runtime invisible parameter annotations attribute. 56 // Implementations for Attribute.
|
RuntimeVisibleParameterAnnotationsAttribute.java | 21 package proguard.classfile.attribute.annotation; 24 import proguard.classfile.attribute.visitor.AttributeVisitor; 27 * This Attribute represents a runtime visible parameter annotations attribute. 56 // Implementations for Attribute.
|
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AnnotationVisitor.java | 21 package proguard.classfile.attribute.annotation.visitor; 24 import proguard.classfile.attribute.annotation.Annotation;
|
/prebuilts/misc/common/swig/include/2.0.11/ |
attribute.i | 2 * attribute.i 21 %include <typemaps/attribute.swg>
|
/cts/suite/cts/deviceTests/opengl/assets/vertex/ |
perspective | 17 attribute vec4 a_Position; 18 attribute vec3 a_Normal; 19 attribute vec2 a_TexCoordinate;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSStyleSheet.idl | 25 readonly attribute CSSRule ownerRule; 26 readonly attribute CSSRuleList cssRules; 32 [MeasureAs=CSSStyleSheetRules] readonly attribute CSSRuleList rules;
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
CompositionEvent.idl | 30 [InitializedByEventConstructor] readonly attribute DOMString data; 32 [RuntimeEnabled=IMEAPI] readonly attribute long activeSegmentStart; 33 [RuntimeEnabled=IMEAPI] readonly attribute long activeSegmentEnd;
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGTransform.idl | 36 [ImplementedAs=transformType] readonly attribute unsigned short type; 37 readonly attribute SVGMatrix matrix; 38 readonly attribute float angle;
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCPeerConnection.idl | 44 [RaisesException=Getter] readonly attribute RTCSessionDescription localDescription; 47 [RaisesException=Getter] readonly attribute RTCSessionDescription remoteDescription; 49 readonly attribute DOMString signalingState; 58 readonly attribute DOMString iceGatheringState; 59 readonly attribute DOMString iceConnectionState; 76 attribute EventHandler onnegotiationneeded; 77 attribute EventHandler onicecandidate; 78 attribute EventHandler onsignalingstatechange; 79 attribute EventHandler onaddstream; 80 attribute EventHandler onremovestream [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/AArch64/ |
AArch64Emulation.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/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/Mips/ |
MipsEmulation.cpp | 31 pConfig.attribute().constraint().enableWholeArchive(); 32 pConfig.attribute().constraint().enableAsNeeded(); 33 pConfig.attribute().constraint().setSharedSystem(); 36 pConfig.attribute().predefined().unsetWholeArchive(); 37 pConfig.attribute().predefined().unsetAsNeeded(); 38 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...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
Support_Format.java | 23 import java.text.AttributedCharacterIterator.Attribute; 79 * which stores start and end indexes and an attribute this range has 87 Iterator<Attribute> it = iterator.getAttributes().keySet().iterator(); 89 AttributedCharacterIterator.Attribute attribute = it.next(); local 90 Object value = iterator.getAttribute(attribute); 91 result.add(new FieldContainer(start, end, attribute, value)); 92 // System.out.println(start + " " + end + ": " + attribute + ", 95 // end +"," + attribute+ "," + value+ "));"); 105 final Attribute attribute field in class:Support_Format.FieldContainer [all...] |
/external/smack/asmack-master/lib/ |
jstun.jar | |