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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowBase64.h 40 class ExceptionState;
44 String btoa(const String& stringToEncode, ExceptionState&);
45 String atob(const String& encodedString, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeFilterCondition.h 33 class ExceptionState;
39 virtual short acceptNode(Node*, ExceptionState&) const = 0;
Iterator.h 14 class ExceptionState;
22 virtual ScriptValue next(ScriptState*, ExceptionState&) = 0;
23 virtual ScriptValue next(ScriptState*, ScriptValue /* value */, ExceptionState&) = 0;
24 Iterator* iterator(ScriptState*, ExceptionState&) { return this; }
TreeWalker.h 37 class ExceptionState;
49 void setCurrentNode(PassRefPtrWillBeRawPtr<Node>, ExceptionState&);
51 Node* parentNode(ExceptionState&);
52 Node* firstChild(ExceptionState&);
53 Node* lastChild(ExceptionState&);
54 Node* previousSibling(ExceptionState&);
55 Node* nextSibling(ExceptionState&);
56 Node* previousNode(ExceptionState&);
57 Node* nextNode(ExceptionState&);
DOMStringMap.cpp 33 bool DOMStringMap::namedPropertyQuery(const AtomicString& name, ExceptionState&)
DOMTokenList.h 36 class ExceptionState;
54 bool contains(const AtomicString&, ExceptionState&) const;
55 virtual void add(const Vector<String>&, ExceptionState&);
56 void add(const AtomicString&, ExceptionState&);
57 virtual void remove(const Vector<String>&, ExceptionState&);
58 void remove(const AtomicString&, ExceptionState&);
59 bool toggle(const AtomicString&, ExceptionState&);
60 bool toggle(const AtomicString&, bool force, ExceptionState&);
76 static bool validateToken(const String&, ExceptionState&);
77 static bool validateTokens(const Vector<String>&, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaConstraintsImpl.h 39 class ExceptionState;
44 WebMediaConstraints create(const Dictionary&, ExceptionState&);
NavigatorMediaStream.h 30 class ExceptionState;
38 static void webkitGetUserMedia(Navigator&, const Dictionary&, NavigatorUserMediaSuccessCallback*, NavigatorUserMediaErrorCallback*, ExceptionState&);
40 static void getMediaDevices(Navigator&, MediaDeviceInfoCallback*, ExceptionState&);
RTCSessionDescription.h 41 class ExceptionState;
46 static RTCSessionDescription* create(const Dictionary&, ExceptionState&);
50 void setType(const String&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalSettings.h 41 class ExceptionState;
90 void setStandardFontFamily(const AtomicString& family, const String& script, ExceptionState&);
91 void setSerifFontFamily(const AtomicString& family, const String& script, ExceptionState&);
92 void setSansSerifFontFamily(const AtomicString& family, const String& script, ExceptionState&);
93 void setFixedFontFamily(const AtomicString& family, const String& script, ExceptionState&);
94 void setCursiveFontFamily(const AtomicString& family, const String& script, ExceptionState&);
95 void setFantasyFontFamily(const AtomicString& family, const String& script, ExceptionState&);
96 void setPictographFontFamily(const AtomicString& family, const String& script, ExceptionState&);
98 void setDefaultVideoPosterURL(const String& url, ExceptionState&);
99 void setEditingBehavior(const String&, ExceptionState&)
    [all...]
Internals.h 55 class ExceptionState;
85 String elementRenderTreeAsText(Element*, ExceptionState&);
101 ShadowRoot* youngerShadowRoot(Node* shadow, ExceptionState&);
102 String shadowRootType(const Node*, ExceptionState&) const;
103 bool hasShadowInsertionPoint(const Node*, ExceptionState&) const;
104 bool hasContentElement(const Node*, ExceptionState&) const;
105 size_t countElementShadow(const Node*, ExceptionState&) const;
109 void pauseAnimations(double pauseTime, ExceptionState&);
111 bool isValidContentSelect(Element* insertionPoint, ExceptionState&);
114 bool hasSelectorForIdInShadow(Element* host, const AtomicString& idValue, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
EffectInput.h 16 class ExceptionState;
20 static PassRefPtrWillBeRawPtr<AnimationEffect> convert(Element*, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h 40 class ExceptionState;
50 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec, m_frame); }
51 String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_frame); }
52 String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, ec, m_frame); }
53 void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(key, value, ec, m_frame); }
54 void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_frame); }
55 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); }
56 bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, ec, m_frame); }
60 String anonymousIndexedGetter(unsigned, ExceptionState&);
61 String anonymousNamedGetter(const AtomicString&, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DataView.h 35 class ExceptionState;
45 int8_t getInt8(unsigned byteOffset, ExceptionState&);
46 uint8_t getUint8(unsigned byteOffset, ExceptionState&);
47 int16_t getInt16(unsigned byteOffset, ExceptionState& ec) { return getInt16(byteOffset, false, ec); }
48 int16_t getInt16(unsigned byteOffset, bool littleEndian, ExceptionState&);
49 uint16_t getUint16(unsigned byteOffset, ExceptionState& ec) { return getUint16(byteOffset, false, ec); }
50 uint16_t getUint16(unsigned byteOffset, bool littleEndian, ExceptionState&);
51 int32_t getInt32(unsigned byteOffset, ExceptionState& ec) { return getInt32(byteOffset, false, ec); }
52 int32_t getInt32(unsigned byteOffset, bool littleEndian, ExceptionState&);
53 uint32_t getUint32(unsigned byteOffset, ExceptionState& ec) { return getUint32(byteOffset, false, ec);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
BindingSecurity.h 42 class ExceptionState;
52 static bool shouldAllowAccessToNode(v8::Isolate*, Node*, ExceptionState&);
54 static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.h 33 class ExceptionState;
44 PassRefPtrWillBeRawPtr<HTMLElement> insertCell(int index, ExceptionState&);
45 void deleteCell(int index, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
Headers.h 16 class ExceptionState;
27 static Headers* create(ExceptionState&);
28 static Headers* create(const Headers*, ExceptionState&);
29 static Headers* create(const Dictionary&, ExceptionState&);
37 void append(const String& name, const String& value, ExceptionState&);
38 void remove(const String& key, ExceptionState&);
39 String get(const String& key, ExceptionState&);
40 Vector<String> getAll(const String& key, ExceptionState&);
41 bool has(const String& key, ExceptionState&);
42 void set(const String& key, const String& value, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
EntrySync.h 44 class ExceptionState;
53 Metadata* getMetadata(ExceptionState&);
54 EntrySync* moveTo(DirectoryEntrySync* parent, const String& name, ExceptionState&) const;
55 EntrySync* copyTo(DirectoryEntrySync* parent, const String& name, ExceptionState&) const;
56 void remove(ExceptionState&) const;
WorkerGlobalScopeFileSystem.h 38 class ExceptionState;
50 static DOMFileSystemSync* webkitRequestFileSystemSync(WorkerGlobalScope&, int type, long long size, ExceptionState&);
52 static EntrySync* webkitResolveLocalFileSystemSyncURL(WorkerGlobalScope&, const String& url, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.h 39 class ExceptionState;
48 void send(Uint8Array*, double timestamp, ExceptionState&);
49 void send(Vector<unsigned>, double timestamp, ExceptionState&);
52 void send(Uint8Array*, ExceptionState&);
53 void send(Vector<unsigned>, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderSync.h 43 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&);
69 void startLoading(ExecutionContext*, FileReaderLoader&, const Blob&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.h 41 class ExceptionState;
58 virtual bool perform(ExceptionState&) = 0;
60 virtual bool undo(ExceptionState&) = 0;
61 virtual bool redo(ExceptionState&) = 0;
71 bool perform(PassRefPtrWillBeRawPtr<Action>, ExceptionState&);
74 bool undo(ExceptionState&);
75 bool redo(ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.h 39 class ExceptionState;
53 IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
55 IDBOpenDBRequest* open(ScriptState*, const String& name, ExceptionState&);
56 IDBOpenDBRequest* open(ScriptState*, const String& name, unsigned long long version, ExceptionState&);
57 IDBOpenDBRequest* deleteDatabase(ScriptState*, const String& name, ExceptionState&);
59 short cmp(ScriptState*, const ScriptValue& first, const ScriptValue& second, ExceptionState&);
64 IDBOpenDBRequest* openInternal(ScriptState*, const String& name, int64_t version, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/beacon/
NavigatorBeacon.h 20 class ExceptionState;
29 static bool sendBeacon(ExecutionContext*, Navigator&, const String&, const String&, ExceptionState&);
30 static bool sendBeacon(ExecutionContext*, Navigator&, const String&, PassRefPtr<WTF::ArrayBufferView>, ExceptionState&);
31 static bool sendBeacon(ExecutionContext*, Navigator&, const String&, PassRefPtrWillBeRawPtr<Blob>, ExceptionState&);
32 static bool sendBeacon(ExecutionContext*, Navigator&, const String&, PassRefPtrWillBeRawPtr<DOMFormData>, ExceptionState&);
39 bool sendBeacon(ExecutionContext*, const String&, const String&, ExceptionState&);
40 bool sendBeacon(ExecutionContext*, const String&, PassRefPtr<WTF::ArrayBufferView>, ExceptionState&);
41 bool sendBeacon(ExecutionContext*, const String&, PassRefPtrWillBeRawPtr<Blob>, ExceptionState&);
42 bool sendBeacon(ExecutionContext*, const String&, PassRefPtrWillBeRawPtr<DOMFormData>, ExceptionState&);
44 bool canSendBeacon(ExecutionContext*, const KURL&, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAltGlyphElement.h 33 class ExceptionState;
42 void setGlyphRef(const AtomicString&, ExceptionState&);
44 void setFormat(const AtomicString&, ExceptionState&);

Completed in 511 milliseconds

1 2 3 4 5 6 7 8 91011>>