HomeSort by relevance Sort by last modified time
    Searched full:exceptioncode (Results 26 - 50 of 561) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/storage/
IDBObjectStoreBackendImpl.h 69 virtual void get(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
70 virtual void put(PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBKey>, PutMode, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
71 virtual void deleteFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
72 virtual void clear(PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
74 virtual PassRefPtr<IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath, bool unique, IDBTransactionBackendInterface*, ExceptionCode&);
75 virtual PassRefPtr<IDBIndexBackendInterface> index(const String& name, ExceptionCode&);
76 virtual void deleteIndex(const String& name, IDBTransactionBackendInterface*, ExceptionCode&);
78 virtual void openCursor(PassRefPtr<IDBKeyRange> range, unsigned short direction, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
IDBCursorBackendInterface.h 31 #include "ExceptionCode.h"
60 virtual void update(PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBCallbacks>, ExceptionCode&) = 0;
61 virtual void continueFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks>, ExceptionCode&) = 0;
62 virtual void deleteFunction(PassRefPtr<IDBCallbacks>, ExceptionCode&) = 0;
IDBCursor.h 31 #include "ExceptionCode.h"
59 void continueFunction(ExceptionCode& ec) { continueFunction(0, ec); }
68 PassRefPtr<IDBRequest> update(ScriptExecutionContext*, PassRefPtr<SerializedScriptValue>, ExceptionCode&);
69 void continueFunction(PassRefPtr<IDBKey>, ExceptionCode&);
70 PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, ExceptionCode&);
IDBDatabaseBackendInterface.h 29 #include "ExceptionCode.h"
57 virtual PassRefPtr<IDBObjectStoreBackendInterface> createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
58 virtual void deleteObjectStore(const String& name, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
59 virtual void setVersion(const String& version, PassRefPtr<IDBCallbacks>, PassRefPtr<IDBDatabaseCallbacks>, ExceptionCode&) = 0;
60 virtual PassRefPtr<IDBTransactionBackendInterface> transaction(DOMStringList* storeNames, unsigned short mode, ExceptionCode&) = 0;
SQLTransactionSync.h 36 #include "ExceptionCode.h"
57 PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionCode&);
62 ExceptionCode begin();
63 ExceptionCode execute();
64 ExceptionCode commit();
  /external/webkit/Source/WebCore/bindings/objc/
DOMImplementationFront.h 41 typedef int ExceptionCode;
48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
49 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
51 PassRefPtr<CSSStyleSheet> createCSSStyleSheet(const String& title, const String& media, ExceptionCode&);
ExceptionHandlers.h 43 typedef int ExceptionCode;
48 void raiseDOMException(ExceptionCode);
50 inline void raiseOnDOMError(ExceptionCode ec)
  /external/webkit/Source/WebCore/html/
HTMLOptionsCollection.cpp 24 #include "ExceptionCode.h"
40 void HTMLOptionsCollection::add(PassRefPtr<HTMLOptionElement> element, ExceptionCode &ec)
45 void HTMLOptionsCollection::add(PassRefPtr<HTMLOptionElement> element, int index, ExceptionCode &ec)
85 void HTMLOptionsCollection::setLength(unsigned length, ExceptionCode& ec)
ClassList.h 29 #include "ExceptionCode.h"
49 virtual bool contains(const AtomicString&, ExceptionCode&) const;
50 virtual void add(const AtomicString&, ExceptionCode&);
51 virtual void remove(const AtomicString&, ExceptionCode&);
52 virtual bool toggle(const AtomicString&, ExceptionCode&);
DOMSettableTokenList.h 29 #include "ExceptionCode.h"
51 virtual bool contains(const AtomicString&, ExceptionCode&) const;
52 virtual void add(const AtomicString&, ExceptionCode&);
53 virtual void remove(const AtomicString&, ExceptionCode&);
54 virtual bool toggle(const AtomicString&, ExceptionCode&);
HTMLMarqueeElement.h 45 void setScrollAmount(int, ExceptionCode&);
48 void setScrollDelay(int, ExceptionCode&);
51 void setLoop(int, ExceptionCode&);
HTMLTableRowElement.h 44 PassRefPtr<HTMLElement> insertCell(int index, ExceptionCode&);
45 void deleteCell(int index, ExceptionCode&);
48 void setCells(HTMLCollection *, ExceptionCode&);
  /external/webkit/Source/WebCore/svg/
SVGAngle.h 26 #include "ExceptionCode.h"
51 void setValueAsString(const String&, ExceptionCode&);
54 void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionCode&);
55 void convertToSpecifiedUnits(unsigned short unitType, ExceptionCode&);
SVGStyleElement.h 41 void setType(const AtomicString&, ExceptionCode&);
44 void setMedia(const AtomicString&, ExceptionCode&);
47 void setTitle(const AtomicString&, ExceptionCode&);
  /external/webkit/Source/WebCore/dom/
NodeIterator.h 35 typedef int ExceptionCode;
45 PassRefPtr<Node> nextNode(ScriptState*, ExceptionCode&);
46 PassRefPtr<Node> previousNode(ScriptState*, ExceptionCode&);
57 PassRefPtr<Node> nextNode(ExceptionCode& ec) { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); }
58 PassRefPtr<Node> previousNode(ExceptionCode& ec) { return previousNode(scriptStateFromNode(mainThreadNormalWorld(), referenceNode()), ec); }
DOMStringMap.h 36 typedef int ExceptionCode;
49 virtual void setItem(const String& name, const String& value, ExceptionCode&) = 0;
50 virtual void deleteItem(const String& name, ExceptionCode&) = 0;
DataTransferItems.h 43 typedef int ExceptionCode;
51 virtual void deleteItem(unsigned long index, ExceptionCode&) = 0;
54 virtual void add(const String& data, const String& type, ExceptionCode&) = 0;
  /external/webkit/Source/WebCore/fileapi/
EntrySync.h 38 #include "ExceptionCode.h"
54 PassRefPtr<Metadata> getMetadata(ExceptionCode&);
55 PassRefPtr<EntrySync> moveTo(PassRefPtr<DirectoryEntrySync> parent, const String& name, ExceptionCode&) const;
56 PassRefPtr<EntrySync> copyTo(PassRefPtr<DirectoryEntrySync> parent, const String& name, ExceptionCode&) const;
57 void remove(ExceptionCode&) const;
FileReaderSync.cpp 50 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
61 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
71 String FileReaderSync::readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, const String& encoding, ExceptionCode& ec)
82 String FileReaderSync::readAsDataURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
93 void FileReaderSync::startLoading(ScriptExecutionContext* scriptExecutionContext, FileReaderLoader& loader, Blob* blob, ExceptionCode& ec)
DOMFileSystemSync.h 45 typedef int ExceptionCode;
60 PassRefPtr<File> createFile(const FileEntrySync*, ExceptionCode&);
61 PassRefPtr<FileWriterSync> createWriter(const FileEntrySync*, ExceptionCode&);
WebKitBlobBuilder.h 44 typedef int ExceptionCode;
51 void append(const String& text, ExceptionCode&);
52 void append(const String& text, const String& ending, ExceptionCode&);
  /external/webkit/Source/WebCore/workers/
Worker.h 52 typedef int ExceptionCode;
56 static PassRefPtr<Worker> create(const String& url, ScriptExecutionContext*, ExceptionCode&);
61 void postMessage(PassRefPtr<SerializedScriptValue> message, ExceptionCode&);
62 void postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray*, ExceptionCode&);
64 void postMessage(PassRefPtr<SerializedScriptValue> message, MessagePort*, ExceptionCode&);
  /external/webkit/Source/WebKit/chromium/src/
WebStorageAreaImpl.cpp 36 #include "ExceptionCode.h"
71 int exceptionCode = 0;
74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0);
76 if (exceptionCode) {
77 ASSERT(exceptionCode == WebCore::QUOTA_EXCEEDED_ERR);
  /external/webkit/Source/WebCore/svg/properties/
SVGPathSegListPropertyTearOff.h 66 void clear(ExceptionCode&);
74 PassListItemType initialize(PassListItemType passNewItem, ExceptionCode& ec)
87 PassListItemType getItem(unsigned index, ExceptionCode&);
89 PassListItemType insertItemBefore(PassListItemType passNewItem, unsigned index, ExceptionCode& ec)
102 PassListItemType replaceItem(PassListItemType passNewItem, unsigned index, ExceptionCode& ec)
115 PassListItemType removeItem(unsigned index, ExceptionCode&);
117 PassListItemType appendItem(PassListItemType passNewItem, ExceptionCode& ec)
  /external/webkit/Source/WebCore/css/
CSSStyleSheet.h 35 typedef int ExceptionCode;
68 unsigned insertRule(const String& rule, unsigned index, ExceptionCode&);
69 void deleteRule(unsigned index, ExceptionCode&);
73 int addRule(const String& selector, const String& style, int index, ExceptionCode&);
74 int addRule(const String& selector, const String& style, ExceptionCode&);
75 void removeRule(unsigned index, ExceptionCode& ec) { deleteRule(index, ec); }

Completed in 571 milliseconds

12 3 4 5 6 7 8 91011>>