HomeSort by relevance Sort by last modified time
    Searched refs:ExceptionState (Results 251 - 275 of 406) sorted by null

<<11121314151617

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.cpp 34 #include "bindings/v8/ExceptionState.h"
101 void FileReader::readAsArrayBuffer(Blob* blob, ExceptionState& es)
111 void FileReader::readAsBinaryString(Blob* blob, ExceptionState& es)
121 void FileReader::readAsText(Blob* blob, const String& encoding, ExceptionState& es)
132 void FileReader::readAsText(Blob* blob, ExceptionState& es)
137 void FileReader::readAsDataURL(Blob* blob, ExceptionState& es)
147 void FileReader::readInternal(Blob* blob, FileReaderLoader::ReadType type, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMeterElement.cpp 26 #include "bindings/v8/ExceptionState.h"
80 void HTMLMeterElement::setMin(double min, ExceptionState& es)
94 void HTMLMeterElement::setMax(double max, ExceptionState& es)
109 void HTMLMeterElement::setValue(double value, ExceptionState& es)
124 void HTMLMeterElement::setLow(double low, ExceptionState& es)
139 void HTMLMeterElement::setHigh(double high, ExceptionState& es)
154 void HTMLMeterElement::setOptimum(double optimum, ExceptionState& es)
HTMLMarqueeElement.cpp 29 #include "bindings/v8/ExceptionState.h"
131 void HTMLMarqueeElement::setScrollAmount(int scrollAmount, ExceptionState& es)
146 void HTMLMarqueeElement::setScrollDelay(int scrollDelay, ExceptionState& es)
161 void HTMLMarqueeElement::setLoop(int loop, ExceptionState& es)
HTMLTableRowElement.cpp 29 #include "bindings/v8/ExceptionState.h"
121 PassRefPtr<HTMLElement> HTMLTableRowElement::insertCell(int index, ExceptionState& es)
144 void HTMLTableRowElement::deleteCell(int index, ExceptionState& es)
163 void HTMLTableRowElement::setCells(HTMLCollection*, ExceptionState& es)
HTMLCanvasElement.h 93 String toDataURL(const String& mimeType, const double* quality, ExceptionState&);
94 String toDataURL(const String& mimeType, ExceptionState& es) { return toDataURL(mimeType, 0, es); }
HTMLTableSectionElement.cpp 29 #include "bindings/v8/ExceptionState.h"
59 PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionState& es)
82 void HTMLTableSectionElement::deleteRow(int index, ExceptionState& es)
HTMLTextAreaElement.h 32 class ExceptionState;
50 void setMaxLength(int, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextContentElement.cpp 28 #include "bindings/v8/ExceptionState.h"
116 float SVGTextContentElement::getSubStringLength(unsigned charnum, unsigned nchars, ExceptionState& es)
129 SVGPoint SVGTextContentElement::getStartPositionOfChar(unsigned charnum, ExceptionState& es)
141 SVGPoint SVGTextContentElement::getEndPositionOfChar(unsigned charnum, ExceptionState& es)
153 SVGRect SVGTextContentElement::getExtentOfChar(unsigned charnum, ExceptionState& es)
165 float SVGTextContentElement::getRotationOfChar(unsigned charnum, ExceptionState& es)
183 void SVGTextContentElement::selectSubString(unsigned charnum, unsigned nchars, ExceptionState& es)
SVGAngle.cpp 25 #include "bindings/v8/ExceptionState.h"
153 void SVGAngle::setValueAsString(const String& value, ExceptionState& es)
174 void SVGAngle::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState& es)
187 void SVGAngle::convertToSpecifiedUnits(unsigned short unitType, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.cpp 28 #include "bindings/v8/ExceptionState.h"
47 PassRefPtr<RTCDataChannel> RTCDataChannel::create(ScriptExecutionContext* context, RTCPeerConnectionHandler* peerConnectionHandler, const String& label, const WebKit::WebRTCDataChannelInit& init, ExceptionState& es)
147 void RTCDataChannel::setBinaryType(const String& binaryType, ExceptionState& es)
157 void RTCDataChannel::send(const String& data, ExceptionState& es)
169 void RTCDataChannel::send(PassRefPtr<ArrayBuffer> prpData, ExceptionState& es)
190 void RTCDataChannel::send(PassRefPtr<ArrayBufferView> data, ExceptionState& es)
196 void RTCDataChannel::send(PassRefPtr<Blob> data, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp 28 #include "bindings/v8/ExceptionState.h"
128 Node* Range::startContainer(ExceptionState& es) const
138 int Range::startOffset(ExceptionState& es) const
148 Node* Range::endContainer(ExceptionState& es) const
158 int Range::endOffset(ExceptionState& es) const
168 Node* Range::commonAncestorContainer(ExceptionState& es) const
189 bool Range::collapsed(ExceptionState& es) const
211 void Range::setStart(PassRefPtr<Node> refNode, int offset, ExceptionState& es)
239 void Range::setEnd(PassRefPtr<Node> refNode, int offset, ExceptionState& es)
267 void Range::setStart(const Position& start, ExceptionState& es
    [all...]
Document.h 96 class ExceptionState;
312 PassRefPtr<Element> createElement(const AtomicString& name, ExceptionState&);
316 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionState&);
317 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&);
318 PassRefPtr<Attr> createAttribute(const String& name, ExceptionState&);
319 PassRefPtr<Attr> createAttributeNS(const String& namespaceURI, const String& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false);
320 PassRefPtr<Node> importNode(Node* importedNode, ExceptionState& ec) { return importNode(importedNode, true, ec); }
321 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&);
322 PassRefPtr<Element> createElementNS(const String& namespaceURI, const String& qualifiedName, ExceptionState&);
377 void setXMLVersion(const String&, ExceptionState&)
    [all...]
ContainerNode.h 34 class ExceptionState;
99 void insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
100 void replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
101 void removeChild(Node* child, ExceptionState& = ASSERT_NO_EXCEPTION);
102 void appendChild(PassRefPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.cpp 31 #include "bindings/v8/ExceptionState.h"
292 PassRefPtr<AudioBuffer> AudioContext::createBuffer(unsigned numberOfChannels, size_t numberOfFrames, float sampleRate, ExceptionState& es)
303 PassRefPtr<AudioBuffer> AudioContext::createBuffer(ArrayBuffer* arrayBuffer, bool mixToMono, ExceptionState& es)
320 void AudioContext::decodeAudioData(ArrayBuffer* audioData, PassRefPtr<AudioBufferCallback> successCallback, PassRefPtr<AudioBufferCallback> errorCallback, ExceptionState& es)
342 PassRefPtr<MediaElementAudioSourceNode> AudioContext::createMediaElementSource(HTMLMediaElement* mediaElement, ExceptionState& es)
367 PassRefPtr<MediaStreamAudioSourceNode> AudioContext::createMediaStreamSource(MediaStream* mediaStream, ExceptionState& es)
409 PassRefPtr<ScriptProcessorNode> AudioContext::createScriptProcessor(size_t bufferSize, ExceptionState& es)
415 PassRefPtr<ScriptProcessorNode> AudioContext::createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, ExceptionState& es)
421 PassRefPtr<ScriptProcessorNode> AudioContext::createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, size_t numberOfOutputChannels, ExceptionState& es)
485 PassRefPtr<DelayNode> AudioContext::createDelay(ExceptionState& es
    [all...]
AudioNode.cpp 31 #include "bindings/v8/ExceptionState.h"
127 void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& es)
161 void AudioNode::connect(AudioParam* param, unsigned outputIndex, ExceptionState& es)
185 void AudioNode::disconnect(unsigned outputIndex, ExceptionState& es)
205 void AudioNode::setChannelCount(unsigned long channelCount, ExceptionState& es)
235 void AudioNode::setChannelCountMode(const String& mode, ExceptionState& es)
267 void AudioNode::setChannelInterpretation(const String& interpretation, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.cpp 35 #include "bindings/v8/ExceptionState.h"
158 PassRefPtr<WebSocket> WebSocket::create(ScriptExecutionContext* context, const String& url, ExceptionState& es)
164 PassRefPtr<WebSocket> WebSocket::create(ScriptExecutionContext* context, const String& url, const Vector<String>& protocols, ExceptionState& es)
181 PassRefPtr<WebSocket> WebSocket::create(ScriptExecutionContext* context, const String& url, const String& protocol, ExceptionState& es)
188 void WebSocket::connect(const String& url, ExceptionState& es)
194 void WebSocket::connect(const String& url, const String& protocol, ExceptionState& es)
201 void WebSocket::connect(const String& url, const Vector<String>& protocols, ExceptionState& es)
281 void WebSocket::handleSendResult(WebSocketChannel::SendResult result, ExceptionState& es)
305 void WebSocket::send(const String& message, ExceptionState& es)
321 void WebSocket::send(ArrayBuffer* binaryData, ExceptionState& es
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackRegion.cpp 37 #include "bindings/v8/ExceptionState.h"
103 void TextTrackRegion::setWidth(double value, ExceptionState& es)
118 void TextTrackRegion::setHeight(long value, ExceptionState& es)
128 void TextTrackRegion::setRegionAnchorX(double value, ExceptionState& es)
143 void TextTrackRegion::setRegionAnchorY(double value, ExceptionState& es)
158 void TextTrackRegion::setViewportAnchorX(double value, ExceptionState& es)
173 void TextTrackRegion::setViewportAnchorY(double value, ExceptionState& es)
198 void TextTrackRegion::setScroll(const AtomicString& value, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.cpp 34 #include "bindings/v8/ExceptionState.h"
96 void FileWriter::write(Blob* data, ExceptionState& es)
129 void FileWriter::seek(long long position, ExceptionState& es)
142 void FileWriter::truncate(long long position, ExceptionState& es)
169 void FileWriter::abort(ExceptionState& es)
321 void FileWriter::setError(FileError::ErrorCode errorCode, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/core/css/
PropertySetCSSStyleDeclaration.cpp 27 #include "bindings/v8/ExceptionState.h"
152 void PropertySetCSSStyleDeclaration::setCssText(const String& text, ExceptionState& es)
208 void PropertySetCSSStyleDeclaration::setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState& es)
230 String PropertySetCSSStyleDeclaration::removeProperty(const String& propertyName, ExceptionState& es)
259 void PropertySetCSSStyleDeclaration::setPropertyInternal(CSSPropertyID propertyID, const String& value, bool important, ExceptionState& es)
284 void PropertySetCSSStyleDeclaration::setVariableValue(const AtomicString& name, const String& value, ExceptionState&)
307 void PropertySetCSSStyleDeclaration::clearVariables(ExceptionState&)
CSSGroupingRule.cpp 34 #include "bindings/v8/ExceptionState.h"
60 unsigned CSSGroupingRule::insertRule(const String& ruleString, unsigned index, ExceptionState& es)
92 void CSSGroupingRule::deleteRule(unsigned index, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursor.cpp 29 #include "bindings/v8/ExceptionState.h"
96 PassRefPtr<IDBRequest> IDBCursor::update(ScriptState* state, ScriptValue& value, ExceptionState& es)
139 void IDBCursor::advance(unsigned long count, ExceptionState& es)
170 void IDBCursor::continueFunction(ScriptExecutionContext* context, const ScriptValue& keyValue, ExceptionState& es)
177 void IDBCursor::continueFunction(PassRefPtr<IDBKey> key, ExceptionState& es)
226 PassRefPtr<IDBRequest> IDBCursor::deleteFunction(ScriptExecutionContext* context, ExceptionState& es)
322 IndexedDB::CursorDirection IDBCursor::stringToDirection(const String& directionString, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 37 #include "bindings/v8/ExceptionState.h"
89 ExceptionState es(args.GetIsolate());
109 ExceptionState es(info.GetIsolate());
V8HistoryCustom.cpp 35 #include "bindings/v8/ExceptionState.h"
72 ExceptionState es(args.GetIsolate());
89 ExceptionState es(args.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContext.h 50 class ExceptionState;
223 GC3Denum format, GC3Denum type, ArrayBufferView*, ExceptionState&);
225 GC3Denum format, GC3Denum type, ImageData*, ExceptionState&);
227 GC3Denum format, GC3Denum type, HTMLImageElement*, ExceptionState&);
229 GC3Denum format, GC3Denum type, HTMLCanvasElement*, ExceptionState&);
231 GC3Denum format, GC3Denum type, HTMLVideoElement*, ExceptionState&);
238 GC3Denum format, GC3Denum type, ArrayBufferView*, ExceptionState&);
240 GC3Denum format, GC3Denum type, ImageData*, ExceptionState&);
242 GC3Denum format, GC3Denum type, HTMLImageElement*, ExceptionState&);
244 GC3Denum format, GC3Denum type, HTMLCanvasElement*, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 34 #include "bindings/v8/ExceptionState.h"
196 void DOMSelection::collapse(Node* node, int offset, ExceptionState& es)
213 void DOMSelection::collapseToEnd(ExceptionState& es)
228 void DOMSelection::collapseToStart(ExceptionState& es)
250 void DOMSelection::setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionState& es)
270 void DOMSelection::setPosition(Node* node, int offset, ExceptionState& es)
336 void DOMSelection::extend(Node* node, int offset, ExceptionState& es)
358 PassRefPtr<Range> DOMSelection::getRangeAt(int index, ExceptionState& es)
482 void DOMSelection::selectAllChildren(Node* n, ExceptionState& es)

Completed in 954 milliseconds

<<11121314151617