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

12

  /external/webkit/Source/WebCore/css/
WebKitCSSKeyframeRule.h 37 typedef int ExceptionCode;
WebKitCSSKeyframesRule.h 39 typedef int ExceptionCode;
CSSRule.h 31 typedef int ExceptionCode;
61 void setCssText(const String&, ExceptionCode&);
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); }
CSSValue.h 32 typedef int ExceptionCode;
51 void setCssText(const String&, ExceptionCode&) { } // FIXME: Not implemented.
  /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); }
TreeWalker.h 35 typedef int ExceptionCode;
45 void setCurrentNode(PassRefPtr<Node>, ExceptionCode&);
NamedNodeMap.h 35 typedef int ExceptionCode;
50 PassRefPtr<Node> removeNamedItem(const String& name, ExceptionCode&);
53 PassRefPtr<Node> removeNamedItemNS(const String& namespaceURI, const String& localName, ExceptionCode&);
56 PassRefPtr<Node> removeNamedItem(const QualifiedName& name, ExceptionCode&);
57 PassRefPtr<Node> setNamedItem(Node*, ExceptionCode&);
58 PassRefPtr<Node> setNamedItemNS(Node*, ExceptionCode&);
EventTarget.h 70 typedef int ExceptionCode;
157 bool dispatchEvent(PassRefPtr<Event>, ExceptionCode&); // DOM API
Document.h 155 typedef int ExceptionCode;
317 virtual PassRefPtr<Element> createElement(const AtomicString& tagName, ExceptionCode&);
321 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionCode&);
322 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionCode&);
323 PassRefPtr<Attr> createAttribute(const String& name, ExceptionCode&);
324 PassRefPtr<Attr> createAttributeNS(const String& namespaceURI, const String& qualifiedName, ExceptionCode&, bool shouldIgnoreNamespaceChecks = false);
325 PassRefPtr<EntityReference> createEntityReference(const String& name, ExceptionCode&);
326 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionCode&);
327 virtual PassRefPtr<Element> createElementNS(const String& namespaceURI, const String& qualifiedName, ExceptionCode&);
368 void setXMLVersion(const String&, ExceptionCode&)
    [all...]
ExceptionCode.h 28 typedef int ExceptionCode;
100 void getExceptionCodeDescription(ExceptionCode, ExceptionCodeDescription&);
Node.h 80 typedef int ExceptionCode;
142 virtual void setNodeValue(const String&, ExceptionCode&);
161 bool insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode&, bool shouldLazyAttach = false);
162 bool replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
163 bool removeChild(Node* child, ExceptionCode&);
164 bool appendChild(PassRefPtr<Node> newChild, ExceptionCode&, bool shouldLazyAttach = false);
166 void remove(ExceptionCode&);
172 virtual void setPrefix(const AtomicString&, ExceptionCode&);
183 void setTextContent(const String&, ExceptionCode&);
408 void checkSetPrefix(const AtomicString& prefix, ExceptionCode&)
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileWriterBase.h 46 typedef int ExceptionCode;
  /external/webkit/Source/WebCore/html/
InputType.h 61 typedef int ExceptionCode;
123 virtual void setValueAsDate(double, ExceptionCode&) const;
125 virtual void setValueAsNumber(double, ExceptionCode&) const;
  /external/webkit/Source/WebCore/page/
Navigator.h 47 typedef int ExceptionCode;
86 void registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode&);
DOMWindow.h 77 typedef int ExceptionCode;
155 String btoa(const String& stringToEncode, ExceptionCode&);
156 String atob(const String& encodedString, ExceptionCode&);
229 void postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray*, const String& targetOrigin, DOMWindow* source, ExceptionCode&);
231 void postMessage(PassRefPtr<SerializedScriptValue> message, MessagePort*, const String& targetOrigin, DOMWindow* source, ExceptionCode&);
245 int setTimeout(PassOwnPtr<ScheduledAction>, int timeout, ExceptionCode&);
247 int setInterval(PassOwnPtr<ScheduledAction>, int timeout, ExceptionCode&);
368 PassRefPtr<Database> openDatabase(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode&);
378 Storage* sessionStorage(ExceptionCode&) const;
379 Storage* localStorage(ExceptionCode&) const
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathParser.h 37 typedef int ExceptionCode;
70 Expression* parseStatement(const String& statement, PassRefPtr<XPathNSResolver>, ExceptionCode&);
XPathResult.h 38 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&);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMBinding.h 50 typedef int ExceptionCode;
208 void setDOMException(JSC::ExecState*, ExceptionCode);
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 66 typedef int ExceptionCode;
145 void arcTo(float x0, float y0, float x1, float y1, float radius, ExceptionCode&);
146 void arc(float x, float y, float r, float sa, float ea, bool clockwise, ExceptionCode&);
170 void drawImage(HTMLImageElement*, float x, float y, ExceptionCode&);
171 void drawImage(HTMLImageElement*, float x, float y, float width, float height, ExceptionCode&);
172 void drawImage(HTMLImageElement*, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionCode&);
173 void drawImage(HTMLImageElement*, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionCode&);
174 void drawImage(HTMLCanvasElement*, float x, float y, ExceptionCode&);
175 void drawImage(HTMLCanvasElement*, float x, float y, float width, float height, ExceptionCode&);
176 void drawImage(HTMLCanvasElement*, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionCode&)
    [all...]

Completed in 408 milliseconds

12