HomeSort by relevance Sort by last modified time
    Searched refs:ExceptionState (Results 76 - 100 of 406) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
NavigatorContentUtils.h 39 class ExceptionState;
50 static void registerProtocolHandler(Navigator*, const String& scheme, const String& url, const String& title, ExceptionState&);
53 static String isProtocolHandlerRegistered(Navigator*, const String& scheme, const String& url, ExceptionState&);
54 static void unregisterProtocolHandler(Navigator*, const String& scheme, const String& url, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 33 class ExceptionState;
52 void setInnerHTML(const String&, ExceptionState&);
53 void setOuterHTML(const String&, ExceptionState&);
54 void setInnerText(const String&, ExceptionState&);
55 void setOuterText(const String&, ExceptionState&);
57 Element* insertAdjacentElement(const String& where, Element* newChild, ExceptionState&);
58 void insertAdjacentHTML(const String& where, const String& html, ExceptionState&);
59 void insertAdjacentText(const String& where, const String& text, ExceptionState&);
65 void setContentEditable(const String&, ExceptionState&);
122 Node* insertAdjacent(const String& where, Node* newChild, ExceptionState&)
    [all...]
BaseDateAndTimeInputType.h 39 class ExceptionState;
57 virtual void setValueAsDate(double, ExceptionState&) const OVERRIDE;
59 virtual void setValueAsDecimal(const Decimal&, TextFieldEventBehavior, ExceptionState&) const OVERRIDE;
DOMSettableTokenList.h 35 class ExceptionState;
52 virtual void add(const Vector<String>&, ExceptionState&) OVERRIDE;
53 virtual void remove(const Vector<String>&, ExceptionState&) OVERRIDE;
HTMLProgressElement.h 28 class ExceptionState;
40 void setValue(double, ExceptionState&);
43 void setMax(double, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElementRegistry.h 48 class ExceptionState;
58 CustomElementDefinition* registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& name, CustomElement::NameSet validNames, ExceptionState&);
CharacterData.h 31 class ExceptionState;
39 String substringData(unsigned offset, unsigned count, ExceptionState&);
41 void insertData(unsigned offset, const String&, ExceptionState&);
42 void deleteData(unsigned offset, unsigned count, ExceptionState&);
43 void replaceData(unsigned offset, unsigned count, const String&, ExceptionState&);
NodeIterator.h 36 class ExceptionState;
46 PassRefPtr<Node> nextNode(ScriptState*, ExceptionState&);
47 PassRefPtr<Node> previousNode(ScriptState*, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackRegion.h 45 class ExceptionState;
65 void setWidth(double, ExceptionState&);
68 void setHeight(long, ExceptionState&);
71 void setRegionAnchorX(double, ExceptionState&);
74 void setRegionAnchorY(double, ExceptionState&);
77 void setViewportAnchorX(double, ExceptionState&);
80 void setViewportAnchorY(double, ExceptionState&);
83 void setScroll(const AtomicString&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGStaticListPropertyTearOff.h 27 class ExceptionState;
47 void clear(ExceptionState& es)
52 ListItemType initialize(const ListItemType& newItem, ExceptionState& es)
57 ListItemType getItem(unsigned index, ExceptionState& es)
62 ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionState& es)
67 ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionState& es)
72 ListItemType removeItem(unsigned index, ExceptionState& es)
77 ListItemType appendItem(const ListItemType& newItem, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorkerRepository.h 41 class ExceptionState;
53 static void connect(PassRefPtr<SharedWorker>, PassOwnPtr<MessagePortChannel>, const KURL&, const String& name, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.h 44 class ExceptionState;
48 static PassRefPtr<TextEncoder> create(const String& utfLabel, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCIceCandidate.h 44 class ExceptionState;
48 static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState&);
RTCDataChannel.h 41 class ExceptionState;
48 static PassRefPtr<RTCDataChannel> create(ScriptExecutionContext*, RTCPeerConnectionHandler*, const String& label, const WebKit::WebRTCDataChannelInit&, ExceptionState&);
66 void setBinaryType(const String&, ExceptionState&);
68 void send(const String&, ExceptionState&);
69 void send(PassRefPtr<ArrayBuffer>, ExceptionState&);
70 void send(PassRefPtr<ArrayBufferView>, ExceptionState&);
71 void send(PassRefPtr<Blob>, ExceptionState&);
RTCDTMFSender.h 38 class ExceptionState;
45 static PassRefPtr<RTCDTMFSender> create(ScriptExecutionContext*, RTCPeerConnectionHandler*, PassRefPtr<MediaStreamTrack>, ExceptionState&);
54 void insertDTMF(const String& tones, ExceptionState&);
55 void insertDTMF(const String& tones, long duration, ExceptionState&);
56 void insertDTMF(const String& tones, long duration, long interToneGap, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DefaultAudioDestinationNode.h 35 class ExceptionState;
49 virtual void setChannelCount(unsigned long, ExceptionState&) OVERRIDE;
WaveShaperNode.h 35 class ExceptionState;
48 void setOversample(const String& , ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.h 45 class ExceptionState;
57 Node* patchNode(Node*, const String& markup, ExceptionState&);
64 bool innerPatchNode(Digest* oldNode, Digest* newNode, ExceptionState&);
66 bool innerPatchChildren(ContainerNode*, const Vector<OwnPtr<Digest> >& oldChildren, const Vector<OwnPtr<Digest> >& newChildren, ExceptionState&);
68 bool insertBeforeAndMarkAsUsed(ContainerNode*, Digest*, Node* anchor, ExceptionState&);
69 bool removeChildAndMoveToNew(Digest*, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.h 46 class ExceptionState;
59 void write(Blob*, ExceptionState&);
60 void seek(long long position, ExceptionState&);
61 void truncate(long long length, ExceptionState&);
62 void abort(ExceptionState&);
115 void setError(FileError::ErrorCode, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.h 37 class ExceptionState;
66 static PassRefPtr<IDBKeyRange> only(ScriptExecutionContext*, const ScriptValue& key, ExceptionState&);
67 static PassRefPtr<IDBKeyRange> lowerBound(ScriptExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
68 static PassRefPtr<IDBKeyRange> upperBound(ScriptExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
69 static PassRefPtr<IDBKeyRange> bound(ScriptExecutionContext*, const ScriptValue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen, ExceptionState&);
71 static PassRefPtr<IDBKeyRange> only(PassRefPtr<IDBKey> value, ExceptionState&);
IDBCursor.h 41 class ExceptionState;
55 static IndexedDB::CursorDirection stringToDirection(const String& modeString, ExceptionState&);
68 PassRefPtr<IDBRequest> update(ScriptState*, ScriptValue&, ExceptionState&);
69 void advance(unsigned long, ExceptionState&);
70 void continueFunction(ScriptExecutionContext*, const ScriptValue& key, ExceptionState&);
71 PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, ExceptionState&);
73 void continueFunction(PassRefPtr<IDBKey>, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.h 47 class ExceptionState;
62 void readAsArrayBuffer(Blob*, ExceptionState&);
63 void readAsBinaryString(Blob*, ExceptionState&);
64 void readAsText(Blob*, const String& encoding, ExceptionState&);
65 void readAsText(Blob*, ExceptionState&);
66 void readAsDataURL(Blob*, ExceptionState&);
111 void readInternal(Blob*, FileReaderLoader::ReadType, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextContentElement.h 32 class ExceptionState;
81 float getSubStringLength(unsigned charnum, unsigned nchars, ExceptionState&);
82 SVGPoint getStartPositionOfChar(unsigned charnum, ExceptionState&);
83 SVGPoint getEndPositionOfChar(unsigned charnum, ExceptionState&);
84 SVGRect getExtentOfChar(unsigned charnum, ExceptionState&);
85 float getRotationOfChar(unsigned charnum, ExceptionState&);
87 void selectSubString(unsigned charnum, unsigned nchars, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
markup.h 40 class ExceptionState;
54 PassRefPtr<DocumentFragment> createFragmentForInnerOuterHTML(const String&, Element*, ParserContentPolicy, ExceptionState&);
56 PassRefPtr<DocumentFragment> createContextualFragment(const String&, HTMLElement*, ParserContentPolicy, ExceptionState&);
62 void replaceChildrenWithFragment(ContainerNode*, PassRefPtr<DocumentFragment>, ExceptionState&);
63 void replaceChildrenWithText(ContainerNode*, const String&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseSync.h 48 class ExceptionState;
58 void changeVersion(const String& oldVersion, const String& newVersion, PassRefPtr<SQLTransactionSyncCallback>, ExceptionState&);
59 void transaction(PassRefPtr<SQLTransactionSyncCallback>, ExceptionState&);
60 void readTransaction(PassRefPtr<SQLTransactionSyncCallback>, ExceptionState&);
82 void runTransaction(PassRefPtr<SQLTransactionSyncCallback>, bool readOnly, ExceptionState&);

Completed in 1019 milliseconds

1 2 34 5 6 7 8 91011>>