Home
last modified time | relevance | path

Searched refs:ExceptionState (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.h51 class ExceptionState; variable
77 String elementRenderTreeAsText(Element*, ExceptionState&);
89 String styleResolverStatsReport(ExceptionState&) const;
90 String styleResolverStatsTotalsReport(ExceptionState&) const;
92 size_t numberOfScopedHTMLStyleChildren(const Node*, ExceptionState&) const;
93 …PassRefPtr<CSSComputedStyleDeclaration> computedStyleIncludingVisitedInfo(Node*, ExceptionState&) …
95 ShadowRoot* ensureShadowRoot(Element* host, ExceptionState&);
96 ShadowRoot* shadowRoot(Element* host, ExceptionState&);
97 ShadowRoot* youngestShadowRoot(Element* host, ExceptionState&);
98 ShadowRoot* oldestShadowRoot(Element* host, ExceptionState&);
[all …]
DInternalSettings.h40 class ExceptionState; variable
84 void setStandardFontFamily(const String& family, const String& script, ExceptionState&);
85 void setSerifFontFamily(const String& family, const String& script, ExceptionState&);
86 void setSansSerifFontFamily(const String& family, const String& script, ExceptionState&);
87 void setFixedFontFamily(const String& family, const String& script, ExceptionState&);
88 void setCursiveFontFamily(const String& family, const String& script, ExceptionState&);
89 void setFantasyFontFamily(const String& family, const String& script, ExceptionState&);
90 void setPictographFontFamily(const String& family, const String& script, ExceptionState&);
92 void setDefaultVideoPosterURL(const String& url, ExceptionState&);
93 void setEditingBehavior(const String&, ExceptionState&);
[all …]
DInternalSettings.cpp165 void InternalSettings::setMockScrollbarsEnabled(bool enabled, ExceptionState& exceptionState) in setMockScrollbarsEnabled()
191 void InternalSettings::setTouchEventEmulationEnabled(bool enabled, ExceptionState& exceptionState) in setTouchEventEmulationEnabled()
197 void InternalSettings::setViewportEnabled(bool enabled, ExceptionState& exceptionState) in setViewportEnabled()
205 void InternalSettings::setCompositorDrivenAcceleratedScrollingEnabled(bool enabled, ExceptionState&… in setCompositorDrivenAcceleratedScrollingEnabled()
213 void InternalSettings::setLayerSquashingEnabled(bool enabled, ExceptionState& exceptionState) in setLayerSquashingEnabled()
219 …s::setStandardFontFamily(const String& family, const String& script, ExceptionState& exceptionStat… in setStandardFontFamily()
229 …ings::setSerifFontFamily(const String& family, const String& script, ExceptionState& exceptionStat… in setSerifFontFamily()
239 …::setSansSerifFontFamily(const String& family, const String& script, ExceptionState& exceptionStat… in setSansSerifFontFamily()
249 …ings::setFixedFontFamily(const String& family, const String& script, ExceptionState& exceptionStat… in setFixedFontFamily()
259 …gs::setCursiveFontFamily(const String& family, const String& script, ExceptionState& exceptionStat… in setCursiveFontFamily()
[all …]
DInternals.cpp281 unsigned Internals::updateStyleAndReturnAffectedElementCount(ExceptionState& exceptionState) const in updateStyleAndReturnAffectedElementCount()
322 String Internals::styleResolverStatsReport(ExceptionState& exceptionState) const in styleResolverStatsReport()
332 String Internals::styleResolverStatsTotalsReport(ExceptionState& exceptionState) const in styleResolverStatsTotalsReport()
342 PassRefPtr<Element> Internals::createContentElement(ExceptionState& exceptionState) in createContentElement()
353 bool Internals::isValidContentSelect(Element* insertionPoint, ExceptionState& exceptionState) in isValidContentSelect()
363 Node* Internals::treeScopeRootNode(Node* node, ExceptionState& exceptionState) in treeScopeRootNode()
373 Node* Internals::parentTreeScope(Node* node, ExceptionState& exceptionState) in parentTreeScope()
383 bool Internals::hasSelectorForIdInShadow(Element* host, const String& idValue, ExceptionState& exce… in hasSelectorForIdInShadow()
393 bool Internals::hasSelectorForClassInShadow(Element* host, const String& className, ExceptionState&… in hasSelectorForClassInShadow()
403 …ctorForAttributeInShadow(Element* host, const String& attributeName, ExceptionState& exceptionStat… in hasSelectorForAttributeInShadow()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DRange.h44 class ExceptionState; variable
63 Node* startContainer(ExceptionState&) const;
64 int startOffset(ExceptionState&) const;
65 Node* endContainer(ExceptionState&) const;
66 int endOffset(ExceptionState&) const;
67 bool collapsed(ExceptionState&) const;
69 Node* commonAncestorContainer(ExceptionState&) const;
71 void setStart(PassRefPtr<Node> container, int offset, ExceptionState& = ASSERT_NO_EXCEPTION);
72 void setEnd(PassRefPtr<Node> container, int offset, ExceptionState& = ASSERT_NO_EXCEPTION);
73 void collapse(bool toStart, ExceptionState&);
[all …]
DDOMTokenList.h35 class ExceptionState; variable
52 bool contains(const AtomicString&, ExceptionState&) const;
53 virtual void add(const Vector<String>&, ExceptionState&);
54 void add(const AtomicString&, ExceptionState&);
55 virtual void remove(const Vector<String>&, ExceptionState&);
56 void remove(const AtomicString&, ExceptionState&);
57 bool toggle(const AtomicString&, ExceptionState&);
58 bool toggle(const AtomicString&, bool force, ExceptionState&);
72 static bool validateToken(const AtomicString&, ExceptionState&);
73 static bool validateTokens(const Vector<String>&, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DDataView.h35 class ExceptionState; variable
46 int8_t getInt8(unsigned byteOffset, ExceptionState&);
47 uint8_t getUint8(unsigned byteOffset, ExceptionState&);
48 …int16_t getInt16(unsigned byteOffset, ExceptionState& ec) { return getInt16(byteOffset, false, ec)… in getInt16()
49 int16_t getInt16(unsigned byteOffset, bool littleEndian, ExceptionState&);
50 …uint16_t getUint16(unsigned byteOffset, ExceptionState& ec) { return getUint16(byteOffset, false, … in getUint16()
51 uint16_t getUint16(unsigned byteOffset, bool littleEndian, ExceptionState&);
52 …int32_t getInt32(unsigned byteOffset, ExceptionState& ec) { return getInt32(byteOffset, false, ec)… in getInt32()
53 int32_t getInt32(unsigned byteOffset, bool littleEndian, ExceptionState&);
54 …uint32_t getUint32(unsigned byteOffset, ExceptionState& ec) { return getUint32(byteOffset, false, … in getUint32()
[all …]
DCanvasRenderingContext2D.h53 class ExceptionState; variable
173 void drawImage(ImageBitmap*, float x, float y, ExceptionState&);
174 void drawImage(ImageBitmap*, float x, float y, float width, float height, ExceptionState&);
175 …, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState&);
176 void drawImage(HTMLImageElement*, float x, float y, ExceptionState&);
177 void drawImage(HTMLImageElement*, float x, float y, float width, float height, ExceptionState&);
178 …, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState&);
179 … drawImage(HTMLImageElement*, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionState&);
180 …, const FloatRect& dstRect, const CompositeOperator&, const blink::WebBlendMode&, ExceptionState&);
181 void drawImage(HTMLCanvasElement*, float x, float y, ExceptionState&);
[all …]
DDataView.cpp133 T DataView::getData(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) const in getData()
148 void DataView::setData(unsigned byteOffset, T value, bool littleEndian, ExceptionState& exceptionSt… in setData()
162 int8_t DataView::getInt8(unsigned byteOffset, ExceptionState& exceptionState) in getInt8()
167 uint8_t DataView::getUint8(unsigned byteOffset, ExceptionState& exceptionState) in getUint8()
172 int16_t DataView::getInt16(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getInt16()
177 uint16_t DataView::getUint16(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getUint16()
182 int32_t DataView::getInt32(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getInt32()
187 uint32_t DataView::getUint32(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getUint32()
192 float DataView::getFloat32(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getFloat32()
197 double DataView::getFloat64(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getFloat64()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/storage/
DStorage.h38 class ExceptionState; variable
46 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec, m_frame); } in length()
47 …String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_fram… in key()
48 …String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, e… in getItem()
49 …void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(… in setItem()
50 …void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_fram… in removeItem()
51 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); } in clear()
52 …bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, e… in contains()
56 String anonymousIndexedGetter(unsigned, ExceptionState&);
57 String anonymousNamedGetter(const AtomicString&, ExceptionState&);
[all …]
DStorageArea.h34 class ExceptionState; variable
46 virtual unsigned length(ExceptionState&, Frame* sourceFrame) = 0;
47 virtual String key(unsigned index, ExceptionState&, Frame* sourceFrame) = 0;
48 virtual String getItem(const String& key, ExceptionState&, Frame* sourceFrame) = 0;
49 …virtual void setItem(const String& key, const String& value, ExceptionState&, Frame* sourceFrame) …
50 virtual void removeItem(const String& key, ExceptionState&, Frame* sourceFrame) = 0;
51 virtual void clear(ExceptionState&, Frame* sourceFrame) = 0;
52 virtual bool contains(const String& key, ExceptionState&, Frame* sourceFrame) = 0;
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXMLHttpRequest.h46 class ExceptionState; variable
100 void setWithCredentials(bool, ExceptionState&);
101 void open(const AtomicString& method, const KURL&, ExceptionState&);
102 void open(const AtomicString& method, const KURL&, bool async, ExceptionState&);
103 …oid open(const AtomicString& method, const KURL&, bool async, const String& user, ExceptionState&);
104 …ing& method, const KURL&, bool async, const String& user, const String& password, ExceptionState&);
105 void send(ExceptionState&);
106 void send(Document*, ExceptionState&);
107 void send(const String&, ExceptionState&);
108 void send(Blob*, ExceptionState&);
[all …]
DXPathResult.h38 class ExceptionState; variable
59 void convertTo(unsigned short type, ExceptionState&);
63 double numberValue(ExceptionState&) const;
64 String stringValue(ExceptionState&) const;
65 bool booleanValue(ExceptionState&) const;
66 Node* singleNodeValue(ExceptionState&) const;
69 unsigned long snapshotLength(ExceptionState&) const;
70 Node* iterateNext(ExceptionState&);
71 Node* snapshotItem(unsigned long index, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
DRTCPeerConnection.h47 class ExceptionState; variable
62 …Context*, const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&);
65 …ptionCallback>, PassOwnPtr<RTCErrorCallback>, const Dictionary& mediaConstraints, ExceptionState&);
67 …ptionCallback>, PassOwnPtr<RTCErrorCallback>, const Dictionary& mediaConstraints, ExceptionState&);
69 …r<RTCSessionDescription>, PassOwnPtr<VoidCallback>, PassOwnPtr<RTCErrorCallback>, ExceptionState&);
70 PassRefPtr<RTCSessionDescription> localDescription(ExceptionState&);
72 …r<RTCSessionDescription>, PassOwnPtr<VoidCallback>, PassOwnPtr<RTCErrorCallback>, ExceptionState&);
73 PassRefPtr<RTCSessionDescription> remoteDescription(ExceptionState&);
77 …updateIce(const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&);
80 void addIceCandidate(RTCIceCandidate*, ExceptionState&);
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
DImageBitmapFactories.h50 class ExceptionState; variable
63 static ScriptPromise createImageBitmap(EventTarget*, HTMLImageElement*, ExceptionState&);
64 …reateImageBitmap(EventTarget*, HTMLImageElement*, int sx, int sy, int sw, int sh, ExceptionState&);
65 static ScriptPromise createImageBitmap(EventTarget*, HTMLVideoElement*, ExceptionState&);
66 …reateImageBitmap(EventTarget*, HTMLVideoElement*, int sx, int sy, int sw, int sh, ExceptionState&);
67 … static ScriptPromise createImageBitmap(EventTarget*, CanvasRenderingContext2D*, ExceptionState&);
68 …geBitmap(EventTarget*, CanvasRenderingContext2D*, int sx, int sy, int sw, int sh, ExceptionState&);
69 static ScriptPromise createImageBitmap(EventTarget*, HTMLCanvasElement*, ExceptionState&);
70 …eateImageBitmap(EventTarget*, HTMLCanvasElement*, int sx, int sy, int sw, int sh, ExceptionState&);
71 static ScriptPromise createImageBitmap(EventTarget*, Blob*, ExceptionState&);
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DSubtleCrypto.h43 class ExceptionState; variable
50 ScriptPromise encrypt(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
51 ScriptPromise decrypt(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
52 ScriptPromise sign(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
54 …ature(const Dictionary&, Key*, ArrayBufferView* signature, ArrayBufferView* data, ExceptionState&);
55 ScriptPromise digest(const Dictionary&, ArrayBufferView* data, ExceptionState&);
57 …generateKey(const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
58 …ufferView*, const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
59 ScriptPromise exportKey(const String&, Key*, ExceptionState&);
61 ScriptPromise wrapKey(const String&, Key*, Key*, const Dictionary&, ExceptionState&);
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBObjectStore.h49 class ExceptionState; variable
67 … openCursor(ExecutionContext*, const ScriptValue& range, const String& direction, ExceptionState&);
68 …enKeyCursor(ExecutionContext*, const ScriptValue& range, const String& direction, ExceptionState&);
69 PassRefPtr<IDBRequest> get(ExecutionContext*, const ScriptValue& key, ExceptionState&);
70 PassRefPtr<IDBRequest> add(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&);
71 PassRefPtr<IDBRequest> put(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&);
72 … PassRefPtr<IDBRequest> deleteFunction(ExecutionContext*, const ScriptValue& key, ExceptionState&);
73 PassRefPtr<IDBRequest> clear(ExecutionContext*, ExceptionState&);
75 …onst String& name, const String& keyPath, const Dictionary& options, ExceptionState& exceptionStat… in createIndex()
76 …ing& name, const Vector<String>& keyPath, const Dictionary& options, ExceptionState& exceptionStat… in createIndex()
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DWebSocket.h52 class ExceptionState; variable
61 static PassRefPtr<WebSocket> create(ExecutionContext*, const String& url, ExceptionState&);
62 …r<WebSocket> create(ExecutionContext*, const String& url, const String& protocol, ExceptionState&);
63 …et> create(ExecutionContext*, const String& url, const Vector<String>& protocols, ExceptionState&);
73 void connect(const String& url, ExceptionState&);
74 void connect(const String& url, const String& protocol, ExceptionState&);
75 void connect(const String& url, const Vector<String>& protocols, ExceptionState&);
77 void send(const String& message, ExceptionState&);
78 void send(ArrayBuffer*, ExceptionState&);
79 void send(ArrayBufferView*, ExceptionState&);
[all …]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DDOMEditor.cpp59 virtual bool perform(ExceptionState& exceptionState) in perform()
65 virtual bool undo(ExceptionState& exceptionState) in undo()
71 virtual bool redo(ExceptionState& exceptionState) in redo()
94 virtual bool perform(ExceptionState& exceptionState) in perform()
105 virtual bool undo(ExceptionState& exceptionState) in undo()
115 virtual bool redo(ExceptionState& exceptionState) in redo()
140 virtual bool perform(ExceptionState& exceptionState) in perform()
146 virtual bool undo(ExceptionState& exceptionState) in undo()
152 virtual bool redo(ExceptionState&) in redo() argument
176 virtual bool perform(ExceptionState& exceptionState) in perform()
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
DSourceBuffer.h53 class ExceptionState; variable
69 PassRefPtr<TimeRanges> buffered(ExceptionState&) const;
71 void setTimestampOffset(double, ExceptionState&);
72 void appendBuffer(PassRefPtr<ArrayBuffer> data, ExceptionState&);
73 void appendBuffer(PassRefPtr<ArrayBufferView> data, ExceptionState&);
74 void appendStream(PassRefPtr<Stream>, ExceptionState&);
75 void appendStream(PassRefPtr<Stream>, unsigned long long maxSize, ExceptionState&);
76 void abort(ExceptionState&);
77 void remove(double start, double end, ExceptionState&);
79 void setAppendWindowStart(double, ExceptionState&);
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DAudioContext.h62 class ExceptionState; variable
81 static PassRefPtr<AudioContext> create(Document&, ExceptionState&);
84 …te(Document&, unsigned numberOfChannels, size_t numberOfFrames, float sampleRate, ExceptionState&);
112 … createBuffer(unsigned numberOfChannels, size_t numberOfFrames, float sampleRate, ExceptionState&);
113 PassRefPtr<AudioBuffer> createBuffer(ArrayBuffer*, bool mixToMono, ExceptionState&);
116 …a(ArrayBuffer*, PassOwnPtr<AudioBufferCallback>, PassOwnPtr<AudioBufferCallback>, ExceptionState&);
122 …ssRefPtr<MediaElementAudioSourceNode> createMediaElementSource(HTMLMediaElement*, ExceptionState&);
123 PassRefPtr<MediaStreamAudioSourceNode> createMediaStreamSource(MediaStream*, ExceptionState&);
128 PassRefPtr<DelayNode> createDelay(ExceptionState&);
129 PassRefPtr<DelayNode> createDelay(double maxDelayTime, ExceptionState&);
[all …]
/external/chromium_org/third_party/WebKit/Source/core/page/
DDOMSelection.h42 class ExceptionState; variable
63 …BaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionState&);
64 void setPosition(Node*, int offset, ExceptionState&);
79 void collapse(Node*, int offset, ExceptionState&);
80 void collapseToEnd(ExceptionState&);
81 void collapseToStart(ExceptionState&);
82 void extend(Node*, int offset, ExceptionState&);
83 PassRefPtr<Range> getRangeAt(int, ExceptionState&);
88 void selectAllChildren(Node*, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/core/css/
DFontFace.h47 class ExceptionState; variable
56 …Face> create(const AtomicString& family, const String& source, const Dictionary&, ExceptionState&);
70 void setFamily(const AtomicString& s, ExceptionState&) { m_family = s; } in setFamily() argument
71 void setStyle(const String&, ExceptionState&);
72 void setWeight(const String&, ExceptionState&);
73 void setStretch(const String&, ExceptionState&);
74 void setUnicodeRange(const String&, ExceptionState&);
75 void setVariant(const String&, ExceptionState&);
76 void setFeatureSettings(const String&, ExceptionState&);
92 void setPropertyFromString(const String&, CSSPropertyID, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGLengthContext.h28 class ExceptionState; variable
66 …float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit, ExceptionState&) const;
67 …float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit, ExceptionState&) const;
74 float convertValueFromUserUnitsToPercentage(float value, SVGLengthMode, ExceptionState&) const;
75 float convertValueFromPercentageToUserUnits(float value, SVGLengthMode, ExceptionState&) const;
77 float convertValueFromUserUnitsToEMS(float value, ExceptionState&) const;
78 float convertValueFromEMSToUserUnits(float value, ExceptionState&) const;
80 float convertValueFromUserUnitsToEXS(float value, ExceptionState&) const;
81 float convertValueFromEXSToUserUnits(float value, ExceptionState&) const;
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLInputElement.h36 class ExceptionState; variable
81 void stepUp(int, ExceptionState&);
82 void stepDown(int, ExceptionState&);
83 void stepUp(ExceptionState& exceptionState) { stepUp(1, exceptionState); } in stepUp()
84 void stepDown(ExceptionState& exceptionState) { stepDown(1, exceptionState); } in stepDown()
140 void setValue(const String&, ExceptionState&, TextFieldEventBehavior = DispatchNoEvent);
161 void setValueAsDate(double, ExceptionState&);
164 void setValueAsNumber(double, ExceptionState&, TextFieldEventBehavior = DispatchNoEvent);
170 int selectionStartForBinding(ExceptionState&) const;
171 int selectionEndForBinding(ExceptionState&) const;
[all …]

12345678910>>...19