| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| DataTransferItemList.h | 44 class ExceptionState; 57 virtual void deleteItem(unsigned long index, ExceptionState&) = 0; 59 virtual void add(const String& data, const String& type, ExceptionState&) = 0;
|
| /external/chromium_org/third_party/WebKit/Source/core/xml/ |
| XPathExpression.h | 37 class ExceptionState; 51 static PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionState&); 52 PassRefPtr<XPathResult> evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionState&);
|
| XMLSerializer.h | 30 class ExceptionState; 37 String serializeToString(Node*, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
| FileEntrySync.h | 41 class ExceptionState; 54 PassRefPtr<File> file(ExceptionState&); 55 PassRefPtr<FileWriterSync> createWriter(ExceptionState&);
|
| DirectoryEntrySync.h | 43 class ExceptionState; 55 PassRefPtr<FileEntrySync> getFile(const String& path, const Dictionary&, ExceptionState&); 56 PassRefPtr<DirectoryEntrySync> getDirectory(const String& path, const Dictionary&, ExceptionState&); 57 void removeRecursively(ExceptionState&);
|
| DirectoryReaderSync.h | 44 class ExceptionState; 55 EntrySyncVector readEntries(ExceptionState&);
|
| FileEntrySync.cpp | 34 #include "bindings/v8/ExceptionState.h" 46 PassRefPtr<File> FileEntrySync::file(ExceptionState& es) 51 PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& es)
|
| /external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
| DelayNode.h | 35 class ExceptionState; 39 static PassRefPtr<DelayNode> create(AudioContext* context, float sampleRate, double maxDelayTime, ExceptionState& es) 47 DelayNode(AudioContext*, float sampleRate, double maxDelayTime, ExceptionState&);
|
| OfflineAudioContext.h | 32 class ExceptionState; 36 static PassRefPtr<OfflineAudioContext> create(ScriptExecutionContext*, unsigned numberOfChannels, size_t numberOfFrames, float sampleRate, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
| WorkerGlobalScopeWebDatabase.h | 40 class ExceptionState; 45 static PassRefPtr<Database> openDatabase(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&); 46 static PassRefPtr<DatabaseSync> openDatabaseSync(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&);
|
| DOMWindowWebDatabase.h | 40 class ExceptionState; 45 static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&);
|
| SQLResultSet.h | 39 class ExceptionState; 47 int64_t insertId(ExceptionState&) const;
|
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| HTMLMarqueeElement.h | 31 class ExceptionState; 46 void setScrollAmount(int, ExceptionState&); 49 void setScrollDelay(int, ExceptionState&); 52 void setLoop(int, ExceptionState&);
|
| HTMLTableRowElement.h | 33 class ExceptionState; 46 PassRefPtr<HTMLElement> insertCell(int index, ExceptionState&); 47 void deleteCell(int index, ExceptionState&); 50 void setCells(HTMLCollection *, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/svg/ |
| SVGAngle.h | 29 class ExceptionState; 52 void setValueAsString(const String&, ExceptionState&); 55 void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState&); 56 void convertToSpecifiedUnits(unsigned short unitType, ExceptionState&);
|
| SVGLengthContext.h | 28 class ExceptionState; 66 float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit, ExceptionState&) const; 67 float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit, ExceptionState&) const; 74 float convertValueFromUserUnitsToPercentage(float value, SVGLengthMode, ExceptionState&) const; 75 float convertValueFromPercentageToUserUnits(float value, SVGLengthMode, ExceptionState&) const; 77 float convertValueFromUserUnitsToEMS(float value, ExceptionState&) const; 78 float convertValueFromEMSToUserUnits(float value, ExceptionState&) const; 80 float convertValueFromUserUnitsToEXS(float value, ExceptionState&) const; 81 float convertValueFromEXSToUserUnits(float value, ExceptionState&) const;
|
| /external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
| TextDecoder.h | 43 class ExceptionState; 47 static PassRefPtr<TextDecoder> create(const String& label, const Dictionary&, ExceptionState&); 52 String decode(ArrayBufferView*, const Dictionary&, ExceptionState&); 53 String decode(ExceptionState& es) { return decode(0, Dictionary(), es); }
|
| /external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
| WebSocket.h | 50 class ExceptionState; 56 static PassRefPtr<WebSocket> create(ScriptExecutionContext*, const String& url, ExceptionState&); 57 static PassRefPtr<WebSocket> create(ScriptExecutionContext*, const String& url, const String& protocol, ExceptionState&); 58 static PassRefPtr<WebSocket> create(ScriptExecutionContext*, const String& url, const Vector<String>& protocols, ExceptionState&); 68 void connect(const String& url, ExceptionState&); 69 void connect(const String& url, const String& protocol, ExceptionState&); 70 void connect(const String& url, const Vector<String>& protocols, ExceptionState&); 72 void send(const String& message, ExceptionState&); 73 void send(ArrayBuffer*, ExceptionState&); 74 void send(ArrayBufferView*, ExceptionState&) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| DOMEditor.h | 39 class ExceptionState; 52 bool insertBefore(Node* parentNode, PassRefPtr<Node>, Node* anchorNode, ExceptionState&); 53 bool removeChild(Node* parentNode, Node*, ExceptionState&); 54 bool setAttribute(Element*, const String& name, const String& value, ExceptionState&); 55 bool removeAttribute(Element*, const String& name, ExceptionState&); 56 bool setOuterHTML(Node*, const String& html, Node** newNode, ExceptionState&); 57 bool replaceWholeText(Text*, const String& text, ExceptionState&); 58 bool replaceChild(Node* parentNode, PassRefPtr<Node> newNode, Node* oldNode, ExceptionState&); 59 bool setNodeValue(Node* parentNode, const String& value, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/page/ |
| DOMSelection.h | 42 class ExceptionState; 63 void setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionState&); 64 void setPosition(Node*, int offset, ExceptionState&); 79 void collapse(Node*, int offset, ExceptionState&); 80 void collapseToEnd(ExceptionState&); 81 void collapseToStart(ExceptionState&); 82 void extend(Node*, int offset, ExceptionState&); 83 PassRefPtr<Range> getRangeAt(int, ExceptionState&); 88 void selectAllChildren(Node*, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
| IDBIndex.h | 42 class ExceptionState; 62 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, const String& direction, ExceptionState&); 63 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, const ScriptValue& key, const String& direction, ExceptionState&); 64 PassRefPtr<IDBRequest> count(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionState&); 65 PassRefPtr<IDBRequest> count(ScriptExecutionContext*, const ScriptValue& key, ExceptionState&); 66 PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, const String& direction, ExceptionState&); 67 PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext*, const ScriptValue& key, const String& direction, ExceptionState&); 68 PassRefPtr<IDBRequest> get(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionState&); 69 PassRefPtr<IDBRequest> get(ScriptExecutionContext*, const ScriptValue& key, ExceptionState&); 70 PassRefPtr<IDBRequest> getKey(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionState&) [all...] |
| IDBObjectStore.h | 48 class ExceptionState; 67 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> range, const String& direction, ExceptionState& es) { return openCursor(context, range, direction, IDBDatabaseBackendInterface::NormalTask, es); } 68 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, const ScriptValue& key, const String& direction, ExceptionState&); 69 PassRefPtr<IDBRequest> get(ScriptExecutionContext*, const ScriptValue& key, ExceptionState&); 70 PassRefPtr<IDBRequest> get(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionState&); 71 PassRefPtr<IDBRequest> add(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); 72 PassRefPtr<IDBRequest> put(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); 73 PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, ExceptionState&); 74 PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, const ScriptValue& key, ExceptionState&); 75 PassRefPtr<IDBRequest> clear(ScriptExecutionContext*, ExceptionState&) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/workers/ |
| SharedWorker.h | 39 class ExceptionState; 43 static PassRefPtr<SharedWorker> create(ScriptExecutionContext*, const String& url, const String& name, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
| Crypto.h | 40 class ExceptionState; 46 static void getRandomValues(ArrayBufferView*, ExceptionState&);
|
| NormalizeAlgorithm.h | 41 class ExceptionState; 59 // normalization fails then returns false and sets the ExceptionState. 60 bool normalizeAlgorithm(const Dictionary&, AlgorithmOperation, WebKit::WebCryptoAlgorithm&, ExceptionState&) WARN_UNUSED_RETURN;
|