/external/chromium_org/third_party/WebKit/Source/core/frame/ |
DOMWindowBase64.h | 40 class ExceptionState; 43 String btoa(void*, const String& stringToEncode, ExceptionState&); 44 String atob(void*, const String& encodedString, ExceptionState&);
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
Internals.h | 51 class ExceptionState; 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&) const; 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...] |
InternalSettings.h | 40 class ExceptionState; 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...] |
/external/chromium_org/third_party/WebKit/Source/core/storage/ |
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...] |
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;
|
/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; 67 bool perform(PassOwnPtr<Action>, ExceptionState&); 70 bool undo(ExceptionState&); 71 bool redo(ExceptionState&);
|
/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&);
|
XPathExpression.h | 37 class ExceptionState; 51 static PassRefPtr<XPathExpression> createExpression(const String& expression, PassRefPtr<XPathNSResolver>, ExceptionState&); 52 PassRefPtr<XPathResult> evaluate(Node* contextNode, unsigned short type, XPathResult*, 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&); 47 void setLength(unsigned, ExceptionState&); 49 bool anonymousIndexedSetter(unsigned, PassRefPtr<HTMLOptionElement>, ExceptionState&); 50 bool anonymousIndexedSetterRemove(unsigned, ExceptionState&);
|
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&);
|
HTMLTableRowElement.h | 33 class ExceptionState; 43 PassRefPtr<HTMLElement> insertCell(int index, ExceptionState&); 44 void deleteCell(int index, ExceptionState&);
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
NavigatorMediaStream.h | 29 class ExceptionState; 36 static void webkitGetUserMedia(Navigator*, const Dictionary&, PassOwnPtr<NavigatorUserMediaSuccessCallback>, PassOwnPtr<NavigatorUserMediaErrorCallback>, 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...] |
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/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/bindings/v8/ |
BindingSecurity.h | 39 class ExceptionState; 50 static bool shouldAllowAccessToNode(Node*, ExceptionState&); 52 static bool shouldAllowAccessToFrame(Frame*, ExceptionState&);
|
ExceptionStatePlaceholder.h | 34 #include "bindings/v8/ExceptionState.h" 40 class ExceptionState; 44 class IgnorableExceptionState : public ExceptionState { 46 IgnorableExceptionState(): ExceptionState(v8::Handle<v8::Object>(), 0) { } 47 ExceptionState& returnThis() { return *this; } 61 class NoExceptionStateAssertionChecker : public ExceptionState { 64 ExceptionState& returnThis() { return *this; }
|
/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/filesystem/ |
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/modules/mediasource/ |
WebKitSourceBuffer.h | 45 class ExceptionState; 56 PassRefPtr<TimeRanges> buffered(ExceptionState&) const; 58 void setTimestampOffset(double, ExceptionState&); 59 void append(PassRefPtr<Uint8Array> data, ExceptionState&); 60 void abort(ExceptionState&);
|
SourceBuffer.h | 53 class ExceptionState; 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/crypto/ |
SubtleCrypto.h | 43 class ExceptionState; 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 ScriptPromise verifySignature(const Dictionary&, Key*, ArrayBufferView* signature, ArrayBufferView* data, ExceptionState&); 55 ScriptPromise digest(const Dictionary&, ArrayBufferView* data, ExceptionState&); 57 ScriptPromise generateKey(const Dictionary&, bool extractable, const Vector<String>& keyUsages, ExceptionState&); 58 ScriptPromise importKey(const String&, ArrayBufferView*, 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/core/fileapi/ |
FileReaderSync.h | 42 class ExceptionState; 55 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ExecutionContext*, Blob*, ExceptionState&); 56 String readAsBinaryString(ExecutionContext*, Blob*, ExceptionState&); 57 String readAsText(ExecutionContext* executionContext, Blob* blob, ExceptionState& ec) 61 String readAsText(ExecutionContext*, Blob*, const String& encoding, ExceptionState&); 62 String readAsDataURL(ExecutionContext*, Blob*, ExceptionState&); 67 void startLoading(ExecutionContext*, FileReaderLoader&, const Blob&, ExceptionState&);
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBFactory.h | 40 class ExceptionState; 54 PassRefPtr<IDBRequest> getDatabaseNames(ExecutionContext*, ExceptionState&); 56 PassRefPtr<IDBOpenDBRequest> open(ExecutionContext*, const String& name, ExceptionState&); 57 PassRefPtr<IDBOpenDBRequest> open(ExecutionContext*, const String& name, unsigned long long version, ExceptionState&); 58 PassRefPtr<IDBOpenDBRequest> deleteDatabase(ExecutionContext*, const String& name, ExceptionState&); 60 short cmp(ExecutionContext*, const ScriptValue& first, const ScriptValue& second, ExceptionState&); 65 PassRefPtr<IDBOpenDBRequest> openInternal(ExecutionContext*, const String& name, int64_t version, ExceptionState&);
|