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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatementSync.h 43 class ExceptionState;
50 PassRefPtr<SQLResultSet> execute(DatabaseSync*, ExceptionState&);
SQLTransactionBackendSync.h 49 class ExceptionState;
56 PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionState&);
61 void begin(ExceptionState&);
62 void execute(ExceptionState&);
63 void commit(ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/web/
StorageAreaProxy.h 38 class ExceptionState;
51 virtual unsigned length(ExceptionState&, Frame* sourceFrame);
52 virtual String key(unsigned index, ExceptionState&, Frame* sourceFrame);
53 virtual String getItem(const String& key, ExceptionState&, Frame* sourceFrame);
54 virtual void setItem(const String& key, const String& value, ExceptionState&, Frame* sourceFrame);
55 virtual void removeItem(const String& key, ExceptionState&, Frame* sourceFrame);
56 virtual void clear(ExceptionState&, Frame* sourceFrame);
57 virtual bool contains(const String& key, ExceptionState&, Frame* sourceFrame);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionState.h 44 class ExceptionState {
45 WTF_MAKE_NONCOPYABLE(ExceptionState);
47 explicit ExceptionState(v8::Isolate* isolate)
81 class TrackExceptionState : public ExceptionState {
83 TrackExceptionState(): ExceptionState(0) { }
ExceptionState.cpp 32 #include "bindings/v8/ExceptionState.h"
39 void ExceptionState::clearException()
45 void ExceptionState::throwDOMException(const ExceptionCode& ec, const String& message)
53 void ExceptionState::setException(v8::Handle<v8::Value> exception)
64 void ExceptionState::throwTypeError(const String& message)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NamedNodeMap.h 37 class ExceptionState;
54 PassRefPtr<Node> removeNamedItem(const AtomicString& name, ExceptionState&);
57 PassRefPtr<Node> removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionState&);
59 PassRefPtr<Node> setNamedItem(Node*, ExceptionState&);
60 PassRefPtr<Node> setNamedItemNS(Node*, ExceptionState&);
DatasetDOMStringMap.h 35 class ExceptionState;
50 virtual void setItem(const String& name, const String& value, ExceptionState&);
51 virtual void deleteItem(const String& name, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.h 40 class ExceptionState;
49 void send(Uint8Array*, double timestamp, ExceptionState&);
50 void send(Vector<unsigned>, double timestamp, ExceptionState&);
53 void send(Uint8Array*, ExceptionState&);
54 void send(Vector<unsigned>, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSStyleDeclaration.h 36 class ExceptionState;
50 virtual void setCssText(const String&, ExceptionState&) = 0;
58 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&) = 0;
59 virtual String removeProperty(const String& propertyName, ExceptionState&) = 0;
64 virtual void setVariableValue(const AtomicString& name, const String& value, ExceptionState&) = 0;
66 virtual void clearVariables(ExceptionState&) = 0;
73 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&) = 0;
CSSGroupingRule.h 32 class ExceptionState;
43 unsigned insertRule(const String& rule, unsigned index, ExceptionState&);
44 void deleteRule(unsigned index, ExceptionState&);
CSSVariablesMap.h 38 class ExceptionState;
52 void set(const AtomicString& name, const String& value, ExceptionState&) const;
54 void clear(ExceptionState&) const;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMeterElement.h 28 class ExceptionState;
43 void setMin(double, ExceptionState&);
46 void setMax(double, ExceptionState&);
49 void setValue(double, ExceptionState&);
52 void setLow(double, ExceptionState&);
55 void setHigh(double, ExceptionState&);
58 void setOptimum(double, ExceptionState&);
HTMLDialogElement.h 34 class ExceptionState;
41 void close(const String& returnValue, ExceptionState&);
43 void showModal(ExceptionState&);
HTMLTableSectionElement.h 33 class ExceptionState;
39 PassRefPtr<HTMLElement> insertRow(int index, ExceptionState&);
40 void deleteRow(int index, ExceptionState&);
MediaControllerInterface.h 33 class ExceptionState;
47 virtual void setCurrentTime(double, ExceptionState&) = 0;
60 virtual void setVolume(double, ExceptionState&) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.h 45 class ExceptionState;
88 String statusText(ExceptionState&) const;
89 int status(ExceptionState&) const;
92 void setWithCredentials(bool, ExceptionState&);
93 void open(const String& method, const KURL&, ExceptionState&);
94 void open(const String& method, const KURL&, bool async, ExceptionState&);
95 void open(const String& method, const KURL&, bool async, const String& user, ExceptionState&);
96 void open(const String& method, const KURL&, bool async, const String& user, const String& password, ExceptionState&);
97 void send(ExceptionState&);
98 void send(Document*, ExceptionState&)
    [all...]
DocumentXPathEvaluator.h 34 class ExceptionState;
47 const String& expression, XPathNSResolver*, ExceptionState&);
51 unsigned short type, XPathResult*, ExceptionState&);
XPathEvaluator.h 37 class ExceptionState;
47 PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionState&);
50 XPathNSResolver*, unsigned short type, XPathResult*, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPathMethods.h 36 class ExceptionState;
48 void arcTo(float x0, float y0, float x1, float y1, float radius, ExceptionState&);
49 void arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAltGlyphElement.h 32 class ExceptionState;
41 void setGlyphRef(const AtomicString&, ExceptionState&);
43 void setFormat(const AtomicString&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.h 43 class ExceptionState;
51 static PassRefPtr<MediaKeys> create(const String& keySystem, ExceptionState&);
54 PassRefPtr<MediaKeySession> createSession(ScriptExecutionContext*, const String& mimeType, Uint8Array* initData, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
WorkerGlobalScopeFileSystem.h 38 class ExceptionState;
50 static PassRefPtr<DOMFileSystemSync> webkitRequestFileSystemSync(WorkerGlobalScope*, int type, long long size, ExceptionState&);
52 static PassRefPtr<EntrySync> webkitResolveLocalFileSystemSyncURL(WorkerGlobalScope*, const String& url, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitMediaSource.h 42 class ExceptionState;
52 WebKitSourceBuffer* addSourceBuffer(const String& type, ExceptionState&);
53 void removeSourceBuffer(WebKitSourceBuffer*, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.h 47 class ExceptionState;
61 static PassRefPtr<RTCPeerConnection> create(ScriptExecutionContext*, const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&);
64 void createOffer(PassRefPtr<RTCSessionDescriptionCallback>, PassRefPtr<RTCErrorCallback>, const Dictionary& mediaConstraints, ExceptionState&);
66 void createAnswer(PassRefPtr<RTCSessionDescriptionCallback>, PassRefPtr<RTCErrorCallback>, const Dictionary& mediaConstraints, ExceptionState&);
68 void setLocalDescription(PassRefPtr<RTCSessionDescription>, PassRefPtr<VoidCallback>, PassRefPtr<RTCErrorCallback>, ExceptionState&);
69 PassRefPtr<RTCSessionDescription> localDescription(ExceptionState&);
71 void setRemoteDescription(PassRefPtr<RTCSessionDescription>, PassRefPtr<VoidCallback>, PassRefPtr<RTCErrorCallback>, ExceptionState&);
72 PassRefPtr<RTCSessionDescription> remoteDescription(ExceptionState&);
76 void updateIce(const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&);
78 void addIceCandidate(RTCIceCandidate*, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PerformanceUserTiming.h 38 class ExceptionState;
49 void mark(const String& markName, ExceptionState&);
52 void measure(const String& measureName, const String& startMark, const String& endMark, ExceptionState&);
64 double findExistingMarkStartTime(const String& markName, ExceptionState&);

Completed in 508 milliseconds

1 23 4 5 6 7 8 91011>>