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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMWindowBase64.h 40 class ExceptionState;
43 String btoa(void*, const String& stringToEncode, ExceptionState&);
44 String atob(void*, const String& encodedString, ExceptionState&);
ImageBitmapFactories.h 40 class ExceptionState;
49 ScriptObject createImageBitmap(EventTarget*, HTMLImageElement*, ExceptionState&);
50 ScriptObject createImageBitmap(EventTarget*, HTMLImageElement*, int sx, int sy, int sw, int sh, ExceptionState&);
51 ScriptObject createImageBitmap(EventTarget*, HTMLVideoElement*, ExceptionState&);
52 ScriptObject createImageBitmap(EventTarget*, HTMLVideoElement*, int sx, int sy, int sw, int sh, ExceptionState&);
53 ScriptObject createImageBitmap(EventTarget*, CanvasRenderingContext2D*, ExceptionState&);
54 ScriptObject createImageBitmap(EventTarget*, CanvasRenderingContext2D*, int sx, int sy, int sw, int sh, ExceptionState&);
55 ScriptObject createImageBitmap(EventTarget*, HTMLCanvasElement*, ExceptionState&);
56 ScriptObject createImageBitmap(EventTarget*, HTMLCanvasElement*, int sx, int sy, int sw, int sh, ExceptionState&);
57 ScriptObject createImageBitmap(EventTarget*, ImageData*, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.h 40 class ExceptionState;
55 virtual bool perform(ExceptionState&) = 0;
57 virtual bool undo(ExceptionState&) = 0;
58 virtual bool redo(ExceptionState&) = 0;
68 bool perform(PassOwnPtr<Action>, ExceptionState&);
71 bool undo(ExceptionState&);
72 bool redo(ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.h 51 class ExceptionState;
78 String elementRenderTreeAsText(Element*, ExceptionState&);
89 size_t numberOfScopedHTMLStyleChildren(const Node*, ExceptionState&) const;
90 PassRefPtr<CSSComputedStyleDeclaration> computedStyleIncludingVisitedInfo(Node*, ExceptionState&) const;
92 ShadowRoot* ensureShadowRoot(Element* host, ExceptionState&);
93 ShadowRoot* shadowRoot(Element* host, ExceptionState&);
94 ShadowRoot* youngestShadowRoot(Element* host, ExceptionState&);
95 ShadowRoot* oldestShadowRoot(Element* host, ExceptionState&);
96 ShadowRoot* youngerShadowRoot(Node* shadow, ExceptionState&);
97 ShadowRoot* olderShadowRoot(Node* shadow, ExceptionState&)
    [all...]
InternalSettings.h 40 class ExceptionState;
82 void setStandardFontFamily(const String& family, const String& script, ExceptionState&);
83 void setSerifFontFamily(const String& family, const String& script, ExceptionState&);
84 void setSansSerifFontFamily(const String& family, const String& script, ExceptionState&);
85 void setFixedFontFamily(const String& family, const String& script, ExceptionState&);
86 void setCursiveFontFamily(const String& family, const String& script, ExceptionState&);
87 void setFantasyFontFamily(const String& family, const String& script, ExceptionState&);
88 void setPictographFontFamily(const String& family, const String& script, ExceptionState&);
90 void setDefaultVideoPosterURL(const String& url, ExceptionState&);
91 void setEditingBehavior(const String&, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathResult.h 38 class ExceptionState;
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/core/html/
HTMLOptionsCollection.h 31 class ExceptionState;
39 void add(PassRefPtr<HTMLOptionElement>, ExceptionState&);
40 void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionState&);
46 void setLength(unsigned, ExceptionState&);
48 bool anonymousIndexedSetter(unsigned, PassRefPtr<HTMLOptionElement>, ExceptionState&);
49 bool anonymousIndexedSetterRemove(unsigned, ExceptionState&);
DOMTokenList.h 35 class ExceptionState;
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&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageArea.h 34 class ExceptionState;
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) = 0;
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;
Storage.h 38 class ExceptionState;
46 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec, m_frame); }
47 String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_frame); }
48 String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, ec, m_frame); }
49 void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(key, value, ec, m_frame); }
50 void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_frame); }
51 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); }
52 bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, ec, m_frame); }
56 String anonymousIndexedGetter(unsigned, ExceptionState&);
57 String anonymousNamedGetter(const AtomicString&, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.h 44 class ExceptionState;
51 PassRefPtr<CryptoOperation> encrypt(const Dictionary&, Key*, ExceptionState&);
52 PassRefPtr<CryptoOperation> decrypt(const Dictionary&, Key*, ExceptionState&);
53 PassRefPtr<CryptoOperation> sign(const Dictionary&, Key*, ExceptionState&);
55 PassRefPtr<CryptoOperation> verifySignature(const Dictionary&, Key*, ArrayBufferView* signature, ExceptionState&);
56 PassRefPtr<CryptoOperation> digest(const Dictionary&, ExceptionState&);
58 ScriptObject generateKey(const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
59 ScriptObject importKey(const String&, ArrayBufferView*, const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
NavigatorMediaStream.h 29 class ExceptionState;
36 static void webkitGetUserMedia(Navigator*, const Dictionary&, PassRefPtr<NavigatorUserMediaSuccessCallback>, PassRefPtr<NavigatorUserMediaErrorCallback>, ExceptionState&);
RTCSessionDescription.h 43 class ExceptionState;
47 static PassRefPtr<RTCSessionDescription> create(const Dictionary&, ExceptionState&);
52 void setType(const String&, ExceptionState&);
55 void setSdp(const String&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMStringMap.cpp 35 bool DOMStringMap::namedPropertyQuery(const AtomicString& name, ExceptionState&)
Range.h 44 class ExceptionState;
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...]
DOMStringMap.h 29 #include "bindings/v8/ExceptionState.h"
50 virtual void setItem(const String& name, const String& value, ExceptionState&) = 0;
51 virtual void deleteItem(const String& name, ExceptionState&) = 0;
52 bool anonymousNamedSetter(const String& name, const String& value, ExceptionState& es)
57 bool anonymousNamedDeleter(const AtomicString& name, ExceptionState&)
59 // FIXME: Remove ExceptionState parameter.
70 void namedPropertyEnumerator(Vector<String>& names, ExceptionState&)
74 bool namedPropertyQuery(const AtomicString&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterSync.h 43 class ExceptionState;
54 void write(Blob*, ExceptionState&);
55 void seek(long long position, ExceptionState&);
56 void truncate(long long length, ExceptionState&);
EntrySync.h 45 class ExceptionState;
53 PassRefPtr<Metadata> getMetadata(ExceptionState&);
54 PassRefPtr<EntrySync> moveTo(PassRefPtr<DirectoryEntrySync> parent, const String& name, ExceptionState&) const;
55 PassRefPtr<EntrySync> copyTo(PassRefPtr<DirectoryEntrySync> parent, const String& name, ExceptionState&) const;
56 void remove(ExceptionState&) const;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DataView.h 35 class ExceptionState;
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); }
49 int16_t getInt16(unsigned byteOffset, bool littleEndian, ExceptionState&);
50 uint16_t getUint16(unsigned byteOffset, ExceptionState& ec) { return getUint16(byteOffset, false, ec); }
51 uint16_t getUint16(unsigned byteOffset, bool littleEndian, ExceptionState&);
52 int32_t getInt32(unsigned byteOffset, ExceptionState& ec) { return getInt32(byteOffset, false, ec); }
53 int32_t getInt32(unsigned byteOffset, bool littleEndian, ExceptionState&);
54 uint32_t getUint32(unsigned byteOffset, ExceptionState& ec) { return getUint32(byteOffset, false, ec);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBasicInspectorNode.h 32 class ExceptionState;
43 virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&);
44 virtual void disconnect(unsigned outputIndex, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitSourceBuffer.h 41 class ExceptionState;
53 PassRefPtr<TimeRanges> buffered(ExceptionState&) const;
55 void setTimestampOffset(double, ExceptionState&);
56 void append(PassRefPtr<Uint8Array> data, ExceptionState&);
57 void abort(ExceptionState&);
SourceBuffer.h 44 class ExceptionState;
58 PassRefPtr<TimeRanges> buffered(ExceptionState&) const;
60 void setTimestampOffset(double, ExceptionState&);
61 void appendBuffer(PassRefPtr<ArrayBuffer> data, ExceptionState&);
62 void appendBuffer(PassRefPtr<ArrayBufferView> data, ExceptionState&);
63 void abort(ExceptionState&);
64 void remove(double start, double end, ExceptionState&);
66 void setAppendWindowStart(double, ExceptionState&);
68 void setAppendWindowEnd(double, ExceptionState&);
97 void appendBufferInternal(unsigned char*, unsigned, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderSync.h 42 class ExceptionState;
55 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ScriptExecutionContext*, Blob*, ExceptionState&);
56 String readAsBinaryString(ScriptExecutionContext*, Blob*, ExceptionState&);
57 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& ec)
61 String readAsText(ScriptExecutionContext*, Blob*, const String& encoding, ExceptionState&);
62 String readAsDataURL(ScriptExecutionContext*, Blob*, ExceptionState&);
67 void startLoading(ScriptExecutionContext*, FileReaderLoader&, const Blob&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.h 40 class ExceptionState;
54 PassRefPtr<IDBRequest> getDatabaseNames(ScriptExecutionContext*, ExceptionState&);
56 PassRefPtr<IDBOpenDBRequest> open(ScriptExecutionContext*, const String& name, ExceptionState&);
57 PassRefPtr<IDBOpenDBRequest> open(ScriptExecutionContext*, const String& name, unsigned long long version, ExceptionState&);
58 PassRefPtr<IDBOpenDBRequest> deleteDatabase(ScriptExecutionContext*, const String& name, ExceptionState&);
60 short cmp(ScriptExecutionContext*, const ScriptValue& first, const ScriptValue& second, ExceptionState&);
65 PassRefPtr<IDBOpenDBRequest> openInternal(ScriptExecutionContext*, const String& name, int64_t version, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionStatePlaceholder.h 34 #include "bindings/v8/ExceptionState.h"
40 class ExceptionState;
44 class IgnorableExceptionState : public ExceptionState {
46 IgnorableExceptionState(): ExceptionState(0) { }
47 ExceptionState& returnThis() { return *this; }
60 class NoExceptionStateAssertionChecker : public ExceptionState {
63 ExceptionState& returnThis() { return *this; }

Completed in 328 milliseconds

1 2 3 4 5 6 7 8 91011>>