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

1 2 3 4 5 6 7 8 91011>>

  /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&);
DOMTokenList.h 28 #include "ExceptionCode.h"
47 virtual bool contains(const AtomicString&, ExceptionCode&) const = 0;
48 virtual void add(const AtomicString&, ExceptionCode&) = 0;
49 virtual void remove(const AtomicString&, ExceptionCode&) = 0;
50 virtual bool toggle(const AtomicString&, ExceptionCode&) = 0;
56 static bool validateToken(const AtomicString&, ExceptionCode&);
HTMLMeterElement.h 42 void setMin(double, ExceptionCode&);
45 void setMax(double, ExceptionCode&);
48 void setValue(double, ExceptionCode&);
51 void setLow(double, ExceptionCode&);
54 void setHigh(double, ExceptionCode&);
57 void setOptimum(double, 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&);
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&);
  /external/webkit/Source/WebCore/bindings/objc/
ExceptionHandlers.h 43 typedef int ExceptionCode;
48 void raiseDOMException(ExceptionCode);
50 inline void raiseOnDOMError(ExceptionCode ec)
  /external/webkit/Source/WebCore/dom/
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;
Range.h 55 Node* startContainer(ExceptionCode&) const;
56 int startOffset(ExceptionCode&) const;
57 Node* endContainer(ExceptionCode&) const;
58 int endOffset(ExceptionCode&) const;
59 bool collapsed(ExceptionCode&) const;
61 Node* commonAncestorContainer(ExceptionCode&) const;
63 void setStart(PassRefPtr<Node> container, int offset, ExceptionCode&);
64 void setEnd(PassRefPtr<Node> container, int offset, ExceptionCode&);
65 void collapse(bool toStart, ExceptionCode&);
66 bool isPointInRange(Node* refNode, int offset, ExceptionCode&)
    [all...]
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;
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&);
64 virtual void setNodeValue(const String&, ExceptionCode&);
70 void checkCharDataOperation(unsigned offset, ExceptionCode&);
  /external/webkit/Source/WebCore/html/canvas/
DataView.h 30 #include "ExceptionCode.h"
44 int8_t getInt8(unsigned byteOffset, ExceptionCode&);
45 uint8_t getUint8(unsigned byteOffset, ExceptionCode&);
46 int16_t getInt16(unsigned byteOffset, ExceptionCode& ec) { return getInt16(byteOffset, false, ec); }
47 int16_t getInt16(unsigned byteOffset, bool littleEndian, ExceptionCode&);
48 uint16_t getUint16(unsigned byteOffset, ExceptionCode& ec) { return getUint16(byteOffset, false, ec); }
49 uint16_t getUint16(unsigned byteOffset, bool littleEndian, ExceptionCode&);
50 int32_t getInt32(unsigned byteOffset, ExceptionCode& ec) { return getInt32(byteOffset, false, ec); }
51 int32_t getInt32(unsigned byteOffset, bool littleEndian, ExceptionCode&);
52 uint32_t getUint32(unsigned byteOffset, ExceptionCode& ec) { return getUint32(byteOffset, false, ec);
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileReaderSync.h 36 #include "ExceptionCode.h"
57 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ScriptExecutionContext*, Blob*, ExceptionCode&);
58 String readAsBinaryString(ScriptExecutionContext*, Blob*, ExceptionCode&);
59 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
63 String readAsText(ScriptExecutionContext*, Blob*, const String& encoding, ExceptionCode&);
64 String readAsDataURL(ScriptExecutionContext*, Blob*, ExceptionCode&);
69 void startLoading(ScriptExecutionContext*, FileReaderLoader&, Blob*, ExceptionCode&);
DirectoryEntrySync.h 55 PassRefPtr<DirectoryReaderSync> createReader(ExceptionCode&);
56 PassRefPtr<FileEntrySync> getFile(const String& path, PassRefPtr<WebKitFlags>, ExceptionCode&);
57 PassRefPtr<DirectoryEntrySync> getDirectory(const String& path, PassRefPtr<WebKitFlags>, ExceptionCode&);
58 void removeRecursively(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&);
FileEntrySync.cpp 46 PassRefPtr<File> FileEntrySync::file(ExceptionCode& ec)
51 PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionCode& ec)
  /external/webkit/Source/WebCore/svg/
SVGTextContentElement.h 48 float getSubStringLength(unsigned charnum, unsigned nchars, ExceptionCode&) const;
49 FloatPoint getStartPositionOfChar(unsigned charnum, ExceptionCode&) const;
50 FloatPoint getEndPositionOfChar(unsigned charnum, ExceptionCode&) const;
51 FloatRect getExtentOfChar(unsigned charnum, ExceptionCode&) const;
52 float getRotationOfChar(unsigned charnum, ExceptionCode&) const;
54 void selectSubString(unsigned charnum, unsigned nchars, ExceptionCode&) const;
SVGLength.h 25 #include "ExceptionCode.h"
80 float value(const SVGElement* context, ExceptionCode&) const;
81 void setValue(float, const SVGElement* context, ExceptionCode&);
89 void setValueAsString(const String&, ExceptionCode&);
91 void newValueSpecifiedUnits(unsigned short, float valueInSpecifiedUnits, ExceptionCode&);
92 void convertToSpecifiedUnits(unsigned short, const SVGElement* context, ExceptionCode&);
107 float convertValueFromPercentageToUserUnits(float value, const SVGElement* context, ExceptionCode&) const;
108 float convertValueFromUserUnitsToPercentage(float value, const SVGElement* context, ExceptionCode&) const;
110 float convertValueFromUserUnitsToEMS(float value, const SVGElement* context, ExceptionCode&) const;
111 float convertValueFromEMSToUserUnits(float value, const SVGElement* context, ExceptionCode&) const
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBIndexBackendInterface.h 29 #include "ExceptionCode.h"
51 virtual void openCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
52 virtual void openKeyCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
53 virtual void get(PassRefPtr<IDBKey>, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
54 virtual void getKey(PassRefPtr<IDBKey>, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
IDBObjectStoreBackendInterface.h 29 #include "ExceptionCode.h"
53 virtual void get(PassRefPtr<IDBKey>, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
60 virtual void put(PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBKey>, PutMode, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
61 virtual void deleteFunction(PassRefPtr<IDBKey>, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
63 virtual void clear(PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
65 virtual PassRefPtr<IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath, bool unique, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
66 virtual PassRefPtr<IDBIndexBackendInterface> index(const String& name, ExceptionCode&) = 0;
67 virtual void deleteIndex(const String& name, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
69 virtual void openCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
  /external/webkit/Source/WebCore/workers/
DedicatedWorkerContext.h 54 virtual void importScripts(const Vector<String>& urls, ExceptionCode&);
58 void postMessage(PassRefPtr<SerializedScriptValue>, ExceptionCode&);
59 void postMessage(PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionCode&);
61 void postMessage(PassRefPtr<SerializedScriptValue>, MessagePort*, ExceptionCode&);
  /external/webkit/Source/WebCore/page/
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&);
Crypto.h 40 typedef int ExceptionCode;
46 void getRandomValues(ArrayBufferView*, ExceptionCode&);
  /external/webkit/Source/WebCore/xml/
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&);
XMLSerializer.h 28 typedef int ExceptionCode;
36 String serializeToString(Node*, ExceptionCode&);

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>