HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 376 - 400 of 2365) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDocument.idl 36 [Replaceable, ImplementedAs=allForBinding] readonly attribute HTMLAllCollection all;
43 readonly attribute DOMString compatMode;
46 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString bgColor;
47 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString fgColor;
48 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString alinkColor;
49 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString linkColor;
50 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString vlinkColor;
HTMLEmbedElement.idl 24 [Reflect] attribute DOMString align;
25 [Reflect] attribute DOMString height;
26 [Reflect] attribute DOMString name;
27 [Reflect, URL, LogActivity=SetterOnly, LogPreviousValue] attribute DOMString src;
28 [Reflect] attribute DOMString type;
29 [Reflect] attribute DOMString width;
37 [Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity;
HTMLModElement.cpp 40 bool HTMLModElement::isURLAttribute(const Attribute& attribute) const
42 return attribute.name() == citeAttr || HTMLElement::isURLAttribute(attribute);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathResult.idl 34 readonly attribute unsigned short resultType;
35 [RaisesException=Getter] readonly attribute double numberValue;
37 [RaisesException=Getter] readonly attribute DOMString stringValue;
39 [RaisesException=Getter] readonly attribute boolean booleanValue;
41 [RaisesException=Getter] readonly attribute Node singleNodeValue;
43 readonly attribute boolean invalidIteratorState;
44 [RaisesException=Getter] readonly attribute unsigned long snapshotLength;
XMLHttpRequest.idl 46 attribute EventHandler onreadystatechange;
55 [RaisesException=Setter] attribute unsigned long timeout;
56 readonly attribute unsigned short readyState;
58 [RaisesException=Setter] attribute boolean withCredentials;
68 readonly attribute XMLHttpRequestUpload upload;
73 [Custom=Getter, RaisesException=Getter] readonly attribute DOMString responseText; // The custom getter implements TreatReturnedNullStringAs=Null
74 [RaisesException=Getter] readonly attribute Document responseXML;
76 [RaisesException=Setter] attribute XMLHttpRequestResponseType responseType;
77 [Custom=Getter, RaisesException=Getter] readonly attribute object response;
78 readonly attribute DOMString responseURL
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.idl 33 readonly attribute DOMString name;
34 [CallWith=ScriptState] readonly attribute any version;
35 readonly attribute DOMStringList objectStoreNames;
43 attribute EventHandler onabort;
44 attribute EventHandler onclose;
45 attribute EventHandler onerror;
46 attribute EventHandler onversionchange;
  /external/chromium_org/third_party/WebKit/Source/core/events/
Event.idl 52 readonly attribute DOMString type;
53 readonly attribute EventTarget target;
54 readonly attribute EventTarget currentTarget;
55 readonly attribute unsigned short eventPhase;
56 [InitializedByEventConstructor] readonly attribute boolean bubbles;
57 [InitializedByEventConstructor] readonly attribute boolean cancelable;
58 readonly attribute DOMTimeStamp timeStamp;
67 readonly attribute boolean defaultPrevented;
71 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement;
72 [CallWith=ExecutionContext, ImplementedAs=legacyReturnValue, MeasureAs=EventReturnValue] attribute boolean returnValue
    [all...]
KeyboardEvent.idl 29 [InitializedByEventConstructor] readonly attribute DOMString keyIdentifier;
30 [InitializedByEventConstructor] readonly attribute unsigned long location;
31 [ImplementedAs=location, DeprecateAs=KeyboardEventKeyLocation, InitializedByEventConstructor] readonly attribute unsigned long keyLocation; // Deprecated.
32 [InitializedByEventConstructor] readonly attribute boolean ctrlKey;
33 [InitializedByEventConstructor] readonly attribute boolean shiftKey;
34 [InitializedByEventConstructor] readonly attribute boolean altKey;
35 [InitializedByEventConstructor] readonly attribute boolean metaKey;
36 [InitializedByEventConstructor] readonly attribute boolean repeat;
37 readonly attribute boolean altGraphKey;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSVGElement.idl 31 readonly attribute SVGAnimatedLength x;
32 readonly attribute SVGAnimatedLength y;
33 readonly attribute SVGAnimatedLength width;
34 readonly attribute SVGAnimatedLength height;
35 readonly attribute SVGRect viewport;
36 readonly attribute float pixelUnitToMillimeterX;
37 readonly attribute float pixelUnitToMillimeterY;
38 readonly attribute float screenPixelToMillimeterX;
39 readonly attribute float screenPixelToMillimeterY;
40 readonly attribute boolean useCurrentView
    [all...]
SVGFEBlendElement.idl 40 readonly attribute SVGAnimatedString in1;
41 readonly attribute SVGAnimatedString in2;
42 readonly attribute SVGAnimatedEnumeration mode;
SVGGraphicsElement.idl 36 readonly attribute SVGAnimatedTransformList transform;
38 [MeasureAs=SVGLocatableNearestViewportElement] readonly attribute SVGElement nearestViewportElement;
39 [MeasureAs=SVGLocatableFarthestViewportElement] readonly attribute SVGElement farthestViewportElement;
SVGMatrix.idl 30 [RaisesException=Setter] attribute double a;
31 [RaisesException=Setter] attribute double b;
32 [RaisesException=Setter] attribute double c;
33 [RaisesException=Setter] attribute double d;
34 [RaisesException=Setter] attribute double e;
35 [RaisesException=Setter] attribute double f;
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.idl 51 [RaisesException=Setter, SetterCallWith=ExecutionContext] attribute DOMString family;
52 [RaisesException=Setter, SetterCallWith=ExecutionContext] attribute DOMString style;
53 [RaisesException=Setter, SetterCallWith=ExecutionContext] attribute DOMString weight;
54 [RaisesException=Setter, SetterCallWith=ExecutionContext] attribute DOMString stretch;
55 [RaisesException=Setter, SetterCallWith=ExecutionContext] attribute DOMString unicodeRange;
56 [RaisesException=Setter, SetterCallWith=ExecutionContext] attribute DOMString variant;
57 [RaisesException=Setter, SetterCallWith=ExecutionContext] attribute DOMString featureSettings;
59 readonly attribute FontFaceLoadStatus status;
60 [CallWith=ScriptState] readonly attribute Promise loaded;
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataTransfer.idl 33 [TreatReturnedNullStringAs=Undefined] attribute DOMString dropEffect;
34 [TreatReturnedNullStringAs=Undefined] attribute DOMString effectAllowed;
35 readonly attribute DOMString[] types;
36 readonly attribute FileList files;
43 readonly attribute DataTransferItemList items;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeWalker.idl 26 readonly attribute Node root;
27 readonly attribute unsigned long whatToShow;
28 readonly attribute NodeFilter filter;
29 [DeprecateAs=TreeWalkerExpandEntityReferences] readonly attribute boolean expandEntityReferences;
30 [RaisesException=Setter] attribute Node currentNode;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
EntrySync.idl 36 readonly attribute boolean isFile;
37 readonly attribute boolean isDirectory;
38 readonly attribute DOMString name;
39 readonly attribute DOMString fullPath;
40 readonly attribute DOMFileSystemSync filesystem;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerContainer.idl 35 [Unforgeable] readonly attribute ServiceWorker active;
36 [Unforgeable] readonly attribute ServiceWorker controller;
37 [Unforgeable] readonly attribute ServiceWorker installing;
38 [Unforgeable] readonly attribute ServiceWorker waiting;
40 [CallWith=ScriptState] readonly attribute Promise ready;
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.idl 39 readonly attribute DOMString encoding;
40 readonly attribute boolean fatal;
41 readonly attribute boolean ignoreBOM;
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_xml_utils.cc 42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute();
43 attribute != NULL; attribute = attribute->Next()) {
44 if (attribute->Name() == name) {
45 return attribute;
  /external/sfntly/cpp/src/test/
test_xml_utils.cc 42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute();
43 attribute != NULL; attribute = attribute->Next()) {
44 if (attribute->Name() == name) {
45 return attribute;
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonEmulation.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();
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.idl 47 readonly attribute AudioContext context;
48 readonly attribute unsigned long numberOfInputs;
49 readonly attribute unsigned long numberOfOutputs;
50 [RaisesException=Setter] attribute unsigned long channelCount;
51 [RaisesException=Setter] attribute ChannelCountMode channelCountMode;
52 [RaisesException=Setter] attribute ChannelInterpretation channelInterpretation;
  /external/deqp/framework/egl/
egluStrUtil.hpp 34 deUint32 attribute; member in struct:eglu::ConfigAttribValueFmt
36 ConfigAttribValueFmt (deUint32 attribute_, int value_) : attribute(attribute_), value(value_) {}
41 deUint32 attribute; member in struct:eglu::SurfaceAttribValueFmt
43 SurfaceAttribValueFmt (deUint32 attribute_, int value_) : attribute(attribute_), value(value_) {}
48 deUint32 attribute; member in struct:eglu::ContextAttribValueFmt
50 ContextAttribValueFmt (deUint32 attribute_, int value_) : attribute(attribute_), value(value_) {}
71 inline ConfigAttribValueFmt getConfigAttribValueStr (deUint32 attribute, int value) { return ConfigAttribValueFmt(attribute, value); }
74 inline SurfaceAttribValueFmt getSurfaceAttribValueStr (deUint32 attribute, int value) { return SurfaceAttribValueFmt(attribute, value);
    [all...]
  /external/libsepol/tests/policies/test-linker/
module2.conf 6 attribute g_b_attr_5;
7 attribute g_b_attr_6;
8 attribute g_m1_attr_3;
9 attribute o3_m1_attr_2;
58 attribute g_m1_attr_4;
59 attribute o4_m1_attr_1;
  /external/proguard/src/proguard/classfile/attribute/visitor/
AllBootstrapMethodInfoVisitor.java 21 package proguard.classfile.attribute.visitor;
24 import proguard.classfile.attribute.*;
48 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}

Completed in 605 milliseconds

<<11121314151617181920>>