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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/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&);
HTMLTableRowElement.h 48 PassRefPtr<HTMLElement> insertCell(int index, ExceptionCode&);
49 void deleteCell(int index, ExceptionCode&);
52 void setCells(HTMLCollection *, ExceptionCode&);
HTMLOptGroupElement.h 48 virtual bool insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode&, bool shouldLazyAttach = false);
49 virtual bool replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
50 virtual bool removeChild(Node* child, ExceptionCode&);
51 virtual bool appendChild(PassRefPtr<Node> newChild, ExceptionCode&, bool shouldLazyAttach = false);
HTMLElement.h 50 void setInnerHTML(const String&, ExceptionCode&);
51 void setOuterHTML(const String&, ExceptionCode&);
52 void setInnerText(const String&, ExceptionCode&);
53 void setOuterText(const String&, ExceptionCode&);
55 Element* insertAdjacentElement(const String& where, Element* newChild, ExceptionCode&);
56 void insertAdjacentHTML(const String& where, const String& html, ExceptionCode&);
57 void insertAdjacentText(const String& where, const String& text, ExceptionCode&);
113 Node* insertAdjacent(const String& where, Node* newChild, ExceptionCode&);
  /external/webkit/WebCore/xml/
XPathResult.h 37 typedef int ExceptionCode;
61 void convertTo(unsigned short type, ExceptionCode&);
65 double numberValue(ExceptionCode&) const;
66 String stringValue(ExceptionCode&) const;
67 bool booleanValue(ExceptionCode&) const;
68 Node* singleNodeValue(ExceptionCode&) const;
71 unsigned long snapshotLength(ExceptionCode&) const;
72 Node* iterateNext(ExceptionCode&);
73 Node* snapshotItem(unsigned long index, ExceptionCode&);
XMLSerializer.h 28 typedef int ExceptionCode;
36 String serializeToString(Node*, ExceptionCode&);
XPathEvaluator.h 37 typedef int ExceptionCode;
49 PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionCode&);
52 XPathNSResolver*, unsigned short type, XPathResult*, ExceptionCode&);
XPathExpression.h 37 typedef int ExceptionCode;
53 static PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionCode&);
54 PassRefPtr<XPathResult> evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionCode&);
XMLHttpRequest.h 64 String statusText(ExceptionCode&) const;
65 int status(ExceptionCode&) const;
68 void setWithCredentials(bool, ExceptionCode&);
69 void open(const String& method, const KURL&, bool async, ExceptionCode&);
70 void open(const String& method, const KURL&, bool async, const String& user, ExceptionCode&);
71 void open(const String& method, const KURL&, bool async, const String& user, const String& password, ExceptionCode&);
72 void send(ExceptionCode&);
73 void send(Document*, ExceptionCode&);
74 void send(const String&, ExceptionCode&);
75 void send(Blob*, ExceptionCode&)
    [all...]
  /external/webkit/WebCore/dom/
Range.h 54 Node* startContainer(ExceptionCode&) const;
55 int startOffset(ExceptionCode&) const;
56 Node* endContainer(ExceptionCode&) const;
57 int endOffset(ExceptionCode&) const;
58 bool collapsed(ExceptionCode&) const;
60 Node* commonAncestorContainer(ExceptionCode&) const;
62 void setStart(PassRefPtr<Node> container, int offset, ExceptionCode&);
63 void setEnd(PassRefPtr<Node> container, int offset, ExceptionCode&);
64 void collapse(bool toStart, ExceptionCode&);
65 bool isPointInRange(Node* refNode, int offset, ExceptionCode&)
    [all...]
CharacterData.h 33 void setData(const String&, ExceptionCode&);
35 String substringData(unsigned offset, unsigned count, ExceptionCode&);
36 void appendData(const String&, ExceptionCode&);
37 void insertData(unsigned offset, const String&, ExceptionCode&);
38 void deleteData(unsigned offset, unsigned count, ExceptionCode&);
39 void replaceData(unsigned offset, unsigned count, const String&, ExceptionCode&);
55 virtual void setNodeValue(const String&, ExceptionCode&);
60 void checkCharDataOperation(unsigned offset, ExceptionCode&);
  /external/webkit/WebCore/bindings/objc/
ExceptionHandlers.h 43 typedef int ExceptionCode;
48 void raiseDOMException(ExceptionCode);
50 inline void raiseOnDOMError(ExceptionCode ec)
DOMImplementationFront.h 42 typedef int ExceptionCode;
49 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
50 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
52 PassRefPtr<CSSStyleSheet> createCSSStyleSheet(const String& title, const String& media, ExceptionCode&);
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.h 30 #include "ExceptionCode.h"
64 int sizeInBytes(int type, ExceptionCode& ec);
66 void activeTexture(unsigned long texture, ExceptionCode& ec);
67 void attachShader(WebGLProgram*, WebGLShader*, ExceptionCode& ec);
68 void bindAttribLocation(WebGLProgram*, unsigned long index, const String& name, ExceptionCode& ec);
69 void bindBuffer(unsigned long target, WebGLBuffer*, ExceptionCode& ec);
70 void bindFramebuffer(unsigned long target, WebGLFramebuffer*, ExceptionCode& ec);
71 void bindRenderbuffer(unsigned long target, WebGLRenderbuffer*, ExceptionCode& ec);
72 void bindTexture(unsigned long target, WebGLTexture*, ExceptionCode& ec);
79 void bufferData(unsigned long target, int size, unsigned long usage, ExceptionCode&)
    [all...]
  /external/webkit/WebCore/svg/
SVGTextContentElement.h 53 float getSubStringLength(unsigned charnum, unsigned nchars, ExceptionCode&) const;
54 FloatPoint getStartPositionOfChar(unsigned charnum, ExceptionCode&) const;
55 FloatPoint getEndPositionOfChar(unsigned charnum, ExceptionCode&) const;
56 FloatRect getExtentOfChar(unsigned charnum, ExceptionCode&) const;
57 float getRotationOfChar(unsigned charnum, ExceptionCode&) const;
59 void selectSubString(unsigned charnum, unsigned nchars, ExceptionCode&) const;
SVGStyleElement.h 48 void setType(const AtomicString&, ExceptionCode&);
51 void setMedia(const AtomicString&, ExceptionCode&);
54 void setTitle(const AtomicString&, ExceptionCode&);
  /external/webkit/WebCore/workers/
Worker.h 52 typedef int ExceptionCode;
56 static PassRefPtr<Worker> create(const String& url, ScriptExecutionContext* context, ExceptionCode& ec) { return adoptRef(new Worker(url, context, ec)); }
61 void postMessage(PassRefPtr<SerializedScriptValue>, ExceptionCode&);
62 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionCode&);
64 void postMessage(PassRefPtr<SerializedScriptValue> message, MessagePort*, ExceptionCode&);
75 Worker(const String&, ScriptExecutionContext*, ExceptionCode&);
DedicatedWorkerContext.h 54 virtual void importScripts(const Vector<String>& urls, const String& callerURL, int callerLine, ExceptionCode&);
58 void postMessage(PassRefPtr<SerializedScriptValue>, ExceptionCode&);
59 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionCode&);
61 void postMessage(PassRefPtr<SerializedScriptValue>, MessagePort*, ExceptionCode&);
  /external/webkit/WebCore/css/
CSSStyleDeclaration.h 34 typedef int ExceptionCode;
43 virtual void setCssText(const String&, ExceptionCode&) = 0;
61 void setProperty(const String& propertyName, const String& value, ExceptionCode&);
62 void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionCode&);
63 String removeProperty(const String& propertyName, ExceptionCode&);
64 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&) = 0;
65 virtual String removeProperty(int propertyID, ExceptionCode&) = 0;
CSSRule.h 31 typedef int ExceptionCode;
56 void setCssText(const String&, ExceptionCode&);
  /external/webkit/WebCore/page/
DOMSelection.h 45 typedef int ExceptionCode;
61 void setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionCode&);
62 void setPosition(Node*, int offset, ExceptionCode&);
77 void collapse(Node*, int offset, ExceptionCode&);
80 void extend(Node*, int offset, ExceptionCode&);
81 PassRefPtr<Range> getRangeAt(int, ExceptionCode&);
86 void selectAllChildren(Node*, ExceptionCode&);
  /external/webkit/WebCore/storage/
IndexedDatabaseRequest.cpp 33 #include "ExceptionCode.h"
46 void IndexedDatabaseRequest::open(const String& name, const String& description, bool modifyDatabase, ExceptionCode& exception)
SQLResultSet.h 39 typedef int ExceptionCode;
47 int64_t insertId(ExceptionCode&) const;
  /external/webkit/WebCore/wml/
WMLOptGroupElement.h 39 virtual bool insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode&, bool shouldLazyAttach = false);
40 virtual bool replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
41 virtual bool removeChild(Node* child, ExceptionCode&);
42 virtual bool appendChild(PassRefPtr<Node> newChild, ExceptionCode&, bool shouldLazyAttach = false);
  /external/webkit/WebCore/bindings/generic/
BindingElement.h 37 #include "ExceptionCode.h"
46 static void setAttribute(State<Binding>*, Element*, const AtomicString&, const AtomicString&, ExceptionCode&);
47 static RefPtr<Attr> setAttributeNode(State<Binding>*, Element*, Attr*, ExceptionCode&);
48 static void setAttributeNS(State<Binding>*, Element*, const AtomicString&, const AtomicString&, const AtomicString&, ExceptionCode&);
49 static RefPtr<Attr> setAttributeNodeNS(State<Binding>*, Element*, Attr*, ExceptionCode&);
55 void BindingElement<Binding>::setAttribute(State<Binding>* state, Element* element, const AtomicString& name, const AtomicString& value, ExceptionCode& ec)
66 RefPtr<Attr> BindingElement<Binding>::setAttributeNode(State<Binding>* state, Element* element, Attr* newAttr, ExceptionCode& ec)
78 void BindingElement<Binding>::setAttributeNS(State<Binding>* state, Element* element, const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& value, ExceptionCode& ec)
89 RefPtr<Attr> BindingElement<Binding>::setAttributeNodeNS(State<Binding>* state, Element* element, Attr* newAttr, ExceptionCode& ec)

Completed in 656 milliseconds

1 2 3 4 5 6 7 8 91011>>