HomeSort by relevance Sort by last modified time
    Searched defs:ExceptionCode (Results 1 - 25 of 45) sorted by null

1 2

  /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.h 34 typedef int ExceptionCode;
40 void add(PassRefPtr<HTMLOptionElement>, ExceptionCode&);
41 void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionCode&);
47 void setLength(unsigned, ExceptionCode&);
  /external/webkit/Source/WebCore/dom/
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;
DOMImplementation.h 40 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&);
54 static PassRefPtr<CSSStyleSheet> createCSSStyleSheet(const String& title, const String& media, ExceptionCode&);
  /external/webkit/Source/WebCore/fileapi/
DOMFileSystemSync.h 45 typedef int ExceptionCode;
60 PassRefPtr<File> createFile(const FileEntrySync*, ExceptionCode&);
61 PassRefPtr<FileWriterSync> createWriter(const FileEntrySync*, ExceptionCode&);
FileWriterSync.h 45 typedef int ExceptionCode;
56 void write(Blob*, ExceptionCode&);
57 void seek(long long position, ExceptionCode&);
58 void truncate(long long length, 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/page/
Crypto.h 40 typedef int ExceptionCode;
46 void getRandomValues(ArrayBufferView*, ExceptionCode&);
DOMSelection.h 44 typedef int ExceptionCode;
60 void setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionCode&);
61 void setPosition(Node*, int offset, ExceptionCode&);
76 void collapse(Node*, int offset, ExceptionCode&);
77 void collapseToEnd(ExceptionCode&);
78 void collapseToStart(ExceptionCode&);
79 void extend(Node*, int offset, ExceptionCode&);
80 PassRefPtr<Range> getRangeAt(int, ExceptionCode&);
85 void selectAllChildren(Node*, ExceptionCode&);
History.h 39 typedef int ExceptionCode;
61 void stateObjectAdded(PassRefPtr<SerializedScriptValue>, const String& title, const String& url, StateObjectType, ExceptionCode&);
Location.h 42 typedef int ExceptionCode;
58 void setProtocol(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow, ExceptionCode&);
  /external/webkit/Source/WebCore/xml/
XMLSerializer.h 28 typedef int ExceptionCode;
36 String serializeToString(Node*, ExceptionCode&);
XPathEvaluator.h 38 typedef int ExceptionCode;
49 PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionCode&);
52 XPathNSResolver*, unsigned short type, XPathResult*, ExceptionCode&);
XPathExpression.h 38 typedef int ExceptionCode;
53 static PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionCode&);
54 PassRefPtr<XPathResult> evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionCode&);
  /external/webkit/Source/WebCore/bindings/js/
JSMessagePortCustom.h 40 typedef int ExceptionCode;
57 ExceptionCode ec = 0;
  /external/webkit/Source/WebCore/css/
CSSStyleDeclaration.h 34 typedef int ExceptionCode;
43 virtual void setCssText(const String&, ExceptionCode&) = 0;
62 void setProperty(const String& propertyName, const String& value, ExceptionCode&);
63 void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionCode&);
64 String removeProperty(const String& propertyName, ExceptionCode&);
65 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&) = 0;
66 virtual String removeProperty(int propertyID, ExceptionCode&) = 0;
MediaList.h 35 typedef int ExceptionCode;
70 void deleteMedium(const String& oldMedium, ExceptionCode&);
71 void appendMedium(const String& newMedium, ExceptionCode&);
74 void setMediaText(const String&, ExceptionCode&xo);
  /external/webkit/Source/WebCore/platform/chromium/
DataTransferItemsChromium.h 46 typedef int ExceptionCode;
54 virtual void deleteItem(unsigned long index, ExceptionCode&);
57 virtual void add(const String& data, const String& type, ExceptionCode&);
  /external/webkit/Source/WebCore/html/canvas/
CanvasGradient.h 37 typedef int ExceptionCode;
52 void addColorStop(float value, const String& color, ExceptionCode&);
CanvasPattern.h 38 typedef int ExceptionCode;
42 static void parseRepetitionType(const String&, bool& repeatX, bool& repeatY, ExceptionCode&);
  /external/webkit/Source/WebCore/storage/
Storage.h 39 typedef int ExceptionCode;
49 void setItem(const String& key, const String& value, ExceptionCode&);
StorageArea.h 41 typedef int ExceptionCode;
53 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
  /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&);

Completed in 296 milliseconds

1 2