/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...] |
WebGLRenderingContext.h | 30 #include "ExceptionCode.h" 74 void activeTexture(GC3Denum texture, ExceptionCode&); 75 void attachShader(WebGLProgram*, WebGLShader*, ExceptionCode&); 76 void bindAttribLocation(WebGLProgram*, GC3Duint index, const String& name, ExceptionCode&); 77 void bindBuffer(GC3Denum target, WebGLBuffer*, ExceptionCode&); 78 void bindFramebuffer(GC3Denum target, WebGLFramebuffer*, ExceptionCode&); 79 void bindRenderbuffer(GC3Denum target, WebGLRenderbuffer*, ExceptionCode&); 80 void bindTexture(GC3Denum target, WebGLTexture*, ExceptionCode&); 87 void bufferData(GC3Denum target, GC3Dsizeiptr size, GC3Denum usage, ExceptionCode&); 88 void bufferData(GC3Denum target, ArrayBuffer* data, GC3Denum usage, ExceptionCode&) [all...] |
DataView.cpp | 121 T DataView::getData(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) const 136 void DataView::setData(unsigned byteOffset, T value, bool littleEndian, ExceptionCode& ec) 150 int8_t DataView::getInt8(unsigned byteOffset, ExceptionCode& ec) 155 uint8_t DataView::getUint8(unsigned byteOffset, ExceptionCode& ec) 160 int16_t DataView::getInt16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) 165 uint16_t DataView::getUint16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) 170 int32_t DataView::getInt32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) 175 uint32_t DataView::getUint32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) 180 float DataView::getFloat32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) 185 double DataView::getFloat64(unsigned byteOffset, bool littleEndian, ExceptionCode& ec [all...] |
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...] |
/external/webkit/Source/WebCore/dom/ |
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...] |
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/xml/ |
XMLHttpRequest.h | 80 String statusText(ExceptionCode&) const; 81 int status(ExceptionCode&) const; 84 void setWithCredentials(bool, ExceptionCode&); 87 void setAsBlob(bool, ExceptionCode&); 89 void open(const String& method, const KURL&, ExceptionCode&); 90 void open(const String& method, const KURL&, bool async, ExceptionCode&); 91 void open(const String& method, const KURL&, bool async, const String& user, ExceptionCode&); 92 void open(const String& method, const KURL&, bool async, const String& user, const String& password, ExceptionCode&); 93 void send(ExceptionCode&); 94 void send(Document*, ExceptionCode&) [all...] |
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/storage/ |
IDBObjectStore.h | 62 PassRefPtr<IDBRequest> add(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, ExceptionCode& ec) { return add(context, value, 0, ec); } 63 PassRefPtr<IDBRequest> put(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, ExceptionCode& ec) { return put(context, value, 0, ec); } 64 PassRefPtr<IDBIndex> createIndex(const String& name, const String& keyPath, ExceptionCode& ec) { return createIndex(name, keyPath, OptionsObject(), ec); } 65 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, ExceptionCode& ec) { return openCursor(context, 0, ec); } 66 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionCode& ec) { return openCursor(context, keyRange, IDBCursor::NEXT, ec); } 68 PassRefPtr<IDBRequest> get(ScriptExecutionContext*, PassRefPtr<IDBKey>, ExceptionCode&); 69 PassRefPtr<IDBRequest> add(ScriptExecutionContext*, PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBKey>, ExceptionCode&); 70 PassRefPtr<IDBRequest> put(ScriptExecutionContext*, PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBKey>, ExceptionCode&); 71 PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, PassRefPtr<IDBKey> key, ExceptionCode&); 72 PassRefPtr<IDBRequest> clear(ScriptExecutionContext*, ExceptionCode&) [all...] |
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;
|
IDBIndex.h | 57 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, ExceptionCode& ec) { return openCursor(context, 0, ec); } 58 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionCode& ec) { return openCursor(context, keyRange, IDBCursor::NEXT, ec); } 59 PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, unsigned short direction, ExceptionCode&); 61 PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext* context, ExceptionCode& ec) { return openKeyCursor(context, 0, ec); } 62 PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionCode& ec) { return openKeyCursor(context, keyRange, IDBCursor::NEXT, ec); } 63 PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, unsigned short direction, ExceptionCode&); 65 PassRefPtr<IDBRequest> get(ScriptExecutionContext*, PassRefPtr<IDBKey>, ExceptionCode&); 66 PassRefPtr<IDBRequest> getKey(ScriptExecutionContext*, PassRefPtr<IDBKey>, ExceptionCode&);
|
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;
|
IDBDatabase.h | 33 #include "ExceptionCode.h" 63 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, ExceptionCode& ec) { return createObjectStore(name, OptionsObject(), ec); } 64 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, ExceptionCode& ec) { return transaction(context, 0, ec); } 65 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, PassRefPtr<DOMStringList> storeNames, ExceptionCode& ec) { return transaction(context, storeNames, IDBTransaction::READ_ONLY, ec); } 66 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext*, PassRefPtr<DOMStringList>, unsigned short mode, ExceptionCode&); 68 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const OptionsObject&, ExceptionCode&); 69 void deleteObjectStore(const String& name, ExceptionCode&); 70 PassRefPtr<IDBVersionChangeRequest> setVersion(ScriptExecutionContext*, const String& version, ExceptionCode&); 91 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); }
|
DatabaseSync.h | 36 #include "ExceptionCode.h" 57 const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback>, ExceptionCode&); 58 void changeVersion(const String& oldVersion, const String& newVersion, PassRefPtr<SQLTransactionSyncCallback>, ExceptionCode&); 59 void transaction(PassRefPtr<SQLTransactionSyncCallback>, ExceptionCode&); 60 void readTransaction(PassRefPtr<SQLTransactionSyncCallback>, ExceptionCode&); 68 void runTransaction(PassRefPtr<SQLTransactionSyncCallback>, bool readOnly, ExceptionCode&);
|
/external/webkit/Source/WebCore/svg/ |
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...] |
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;
|
/external/webkit/Source/WebCore/html/ |
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&);
|
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&);
|
HTMLElement.h | 49 void setInnerHTML(const String&, ExceptionCode&); 50 void setOuterHTML(const String&, ExceptionCode&); 51 void setInnerText(const String&, ExceptionCode&); 52 void setOuterText(const String&, ExceptionCode&); 54 Element* insertAdjacentElement(const String& where, Element* newChild, ExceptionCode&); 55 void insertAdjacentHTML(const String& where, const String& html, ExceptionCode&); 56 void insertAdjacentText(const String& where, const String& text, ExceptionCode&); 61 void setContentEditable(const String&, ExceptionCode&); 103 Node* insertAdjacent(const String& where, Node* newChild, ExceptionCode&); 104 PassRefPtr<DocumentFragment> textToFragment(const String&, ExceptionCode&) [all...] |
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&);
|
/external/webkit/Source/WebKit/chromium/src/ |
IDBObjectStoreBackendProxy.h | 49 virtual void get(PassRefPtr<WebCore::IDBKey>, PassRefPtr<WebCore::IDBCallbacks>, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&); 50 virtual void put(PassRefPtr<WebCore::SerializedScriptValue>, PassRefPtr<WebCore::IDBKey>, PutMode, PassRefPtr<WebCore::IDBCallbacks>, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&); 51 virtual void deleteFunction(PassRefPtr<WebCore::IDBKey>, PassRefPtr<WebCore::IDBCallbacks>, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&); 52 virtual void clear(PassRefPtr<WebCore::IDBCallbacks>, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&); 54 PassRefPtr<WebCore::IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath, bool unique, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&); 55 PassRefPtr<WebCore::IDBIndexBackendInterface> index(const String& name, WebCore::ExceptionCode&); 56 void deleteIndex(const String& name, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&); 58 virtual void openCursor(PassRefPtr<WebCore::IDBKeyRange>, unsigned short direction, PassRefPtr<WebCore::IDBCallbacks>, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&);
|
/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;
|
/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&);
|
/external/webkit/Source/WebCore/svg/properties/ |
SVGStaticListPropertyTearOff.h | 43 void clear(ExceptionCode& ec) 53 ListItemType initialize(const ListItemType& newItem, ExceptionCode& ec) 58 ListItemType getItem(unsigned index, ExceptionCode& ec) 63 ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionCode& ec) 68 ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionCode& ec) 73 ListItemType removeItem(unsigned index, ExceptionCode& ec) 78 ListItemType appendItem(const ListItemType& newItem, ExceptionCode& ec)
|
/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&);
|