| /external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
| MediaSourceBase.h | 45 class ExceptionState; 71 void setDuration(double, ExceptionState&); 74 void endOfStream(const AtomicString& error, ExceptionState&); 100 PassOwnPtr<SourceBufferPrivate> createSourceBufferPrivate(const String& type, const MediaSourcePrivate::CodecsArray&, ExceptionState&);
|
| WebKitSourceBuffer.cpp | 34 #include "bindings/v8/ExceptionState.h" 62 PassRefPtr<TimeRanges> WebKitSourceBuffer::buffered(ExceptionState& es) const 81 void WebKitSourceBuffer::setTimestampOffset(double offset, ExceptionState& es) 107 void WebKitSourceBuffer::append(PassRefPtr<Uint8Array> data, ExceptionState& es) 134 void WebKitSourceBuffer::abort(ExceptionState& es)
|
| /external/chromium_org/third_party/WebKit/Source/core/css/ |
| CSSComputedStyleDeclaration.h | 40 class ExceptionState; 96 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&); 97 virtual String removeProperty(const String& propertyName, ExceptionState&); 99 virtual void setCssText(const String&, ExceptionState&); 102 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&); 107 virtual void setVariableValue(const AtomicString& name, const String& value, ExceptionState&) OVERRIDE; 109 virtual void clearVariables(ExceptionState&) OVERRIDE;
|
| PropertySetCSSStyleDeclaration.h | 39 class ExceptionState; 63 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&) OVERRIDE; 64 virtual String removeProperty(const String& propertyName, ExceptionState&) OVERRIDE; 66 virtual void setCssText(const String&, ExceptionState&) OVERRIDE; 69 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&) OVERRIDE; 73 virtual void setVariableValue(const AtomicString& name, const String& value, ExceptionState&) OVERRIDE; 75 virtual void clearVariables(ExceptionState&) OVERRIDE;
|
| /external/chromium_org/third_party/WebKit/Source/core/svg/properties/ |
| SVGPathSegListPropertyTearOff.h | 23 #include "bindings/v8/ExceptionState.h" 69 void clear(ExceptionState&); 71 PassListItemType initialize(PassListItemType passNewItem, ExceptionState& es) 84 PassListItemType getItem(unsigned index, ExceptionState&); 86 PassListItemType insertItemBefore(PassListItemType passNewItem, unsigned index, ExceptionState& es) 98 PassListItemType replaceItem(PassListItemType, unsigned index, ExceptionState&); 100 PassListItemType removeItem(unsigned index, ExceptionState&); 102 PassListItemType appendItem(PassListItemType passNewItem, ExceptionState& es)
|
| SVGListProperty.h | 23 #include "bindings/v8/ExceptionState.h" 52 bool canAlterList(ExceptionState& es) const 100 void clearValues(ExceptionState& es) 109 void clearValuesAndWrappers(ExceptionState& es) 126 ListItemType initializeValues(const ListItemType& newItem, ExceptionState& es) 142 PassListItemTearOff initializeValuesAndWrappers(PassListItemTearOff passNewItem, ExceptionState& es) 172 bool canGetItem(unsigned index, ExceptionState& es) 182 ListItemType getItemValues(unsigned index, ExceptionState& es) 191 PassListItemTearOff getItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, unsigned index, ExceptionState& es) 213 ListItemType insertItemBeforeValues(const ListItemType& newItem, unsigned index, ExceptionState& es [all...] |
| SVGListPropertyTearOff.h | 27 class ExceptionState; 83 void clear(ExceptionState& es) 88 PassListItemTearOff initialize(PassListItemTearOff passNewItem, ExceptionState& es) 93 PassListItemTearOff getItem(unsigned index, ExceptionState& es) 98 PassListItemTearOff insertItemBefore(PassListItemTearOff passNewItem, unsigned index, ExceptionState& es) 103 PassListItemTearOff replaceItem(PassListItemTearOff passNewItem, unsigned index, ExceptionState& es) 108 PassListItemTearOff removeItem(unsigned index, ExceptionState& es) 113 PassListItemTearOff appendItem(PassListItemTearOff passNewItem, ExceptionState& es)
|
| /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
| IDBDatabase.h | 47 class ExceptionState; 66 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const Dictionary&, ExceptionState&); 67 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const IDBKeyPath&, bool autoIncrement, ExceptionState&); 68 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext* context, PassRefPtr<DOMStringList> scope, const String& mode, ExceptionState& es) { return transaction(context, *scope, mode, es); } 69 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext*, const Vector<String>&, const String& mode, ExceptionState&); 70 PassRefPtr<IDBTransaction> transaction(ScriptExecutionContext*, const String&, const String& mode, ExceptionState&); 71 void deleteObjectStore(const String& name, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
| AudioNode.h | 45 class ExceptionState; 130 virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&); 131 void connect(AudioParam*, unsigned outputIndex, ExceptionState&); 132 virtual void disconnect(unsigned outputIndex, ExceptionState&); 171 virtual void setChannelCount(unsigned long, ExceptionState&); 174 void setChannelCountMode(const String&, ExceptionState&); 177 void setChannelInterpretation(const String&, ExceptionState&);
|
| AnalyserNode.h | 34 class ExceptionState; 51 void setFftSize(unsigned size, ExceptionState&);
|
| AudioBuffer.h | 42 class ExceptionState; 58 PassRefPtr<Float32Array> getChannelData(unsigned channelIndex, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
| FileReaderSync.cpp | 34 #include "bindings/v8/ExceptionState.h" 49 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es) 62 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es) 74 String FileReaderSync::readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, const String& encoding, ExceptionState& es) 87 String FileReaderSync::readAsDataURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es) 100 void FileReaderSync::startLoading(ScriptExecutionContext* scriptExecutionContext, FileReaderLoader& loader, const Blob& blob, ExceptionState& es)
|
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| HTMLInputElement.h | 36 class ExceptionState; 80 void stepUp(int, ExceptionState&); 81 void stepDown(int, ExceptionState&); 82 void stepUp(ExceptionState& es) { stepUp(1, es); } 83 void stepDown(ExceptionState& es) { stepDown(1, es); } 149 void setValue(const String&, ExceptionState&, TextFieldEventBehavior = DispatchNoEvent); 170 void setValueAsDate(double, ExceptionState&); 173 void setValueAsNumber(double, ExceptionState&, TextFieldEventBehavior = DispatchNoEvent); 179 int selectionStartForBinding(ExceptionState&) const; 180 int selectionEndForBinding(ExceptionState&) const [all...] |
| DateTimeLocalInputType.h | 39 class ExceptionState; 57 virtual void setValueAsDate(double, ExceptionState&) const OVERRIDE;
|
| /external/chromium_org/third_party/WebKit/Source/core/testing/ |
| Internals.cpp | 41 #include "bindings/v8/ExceptionState.h" 299 PassRefPtr<Element> Internals::createContentElement(ExceptionState& es) 310 bool Internals::isValidContentSelect(Element* insertionPoint, ExceptionState& es) 320 Node* Internals::treeScopeRootNode(Node* node, ExceptionState& es) 330 Node* Internals::parentTreeScope(Node* node, ExceptionState& es) 340 bool Internals::hasSelectorForIdInShadow(Element* host, const String& idValue, ExceptionState& es) 350 bool Internals::hasSelectorForClassInShadow(Element* host, const String& className, ExceptionState& es) 360 bool Internals::hasSelectorForAttributeInShadow(Element* host, const String& attributeName, ExceptionState& es) 370 bool Internals::hasSelectorForPseudoClassInShadow(Element* host, const String& pseudoClass, ExceptionState& es) 397 unsigned short Internals::compareTreeScopePosition(const Node* node1, const Node* node2, ExceptionState& es) cons [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| CustomElementRegistrationContext.h | 48 class ExceptionState; 57 void registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& type, CustomElement::NameSet validNames, ExceptionState&);
|
| MutationObserver.h | 44 class ExceptionState; 78 void observe(Node*, const Dictionary&, ExceptionState&);
|
| TreeWalker.h | 36 class ExceptionState; 46 void setCurrentNode(PassRefPtr<Node>, ExceptionState&);
|
| NamedNodeMap.cpp | 28 #include "bindings/v8/ExceptionState.h" 63 PassRefPtr<Node> NamedNodeMap::removeNamedItem(const AtomicString& name, ExceptionState& es) 73 PassRefPtr<Node> NamedNodeMap::removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionState& es) 83 PassRefPtr<Node> NamedNodeMap::setNamedItem(Node* node, ExceptionState& es) 99 PassRefPtr<Node> NamedNodeMap::setNamedItemNS(Node* node, ExceptionState& es)
|
| /external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
| CanvasGradient.h | 38 class ExceptionState; 53 void addColorStop(float value, const String& color, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/html/track/ |
| TextTrackCue.h | 43 class ExceptionState; 94 void setStartTime(double, ExceptionState&); 97 void setEndTime(double, ExceptionState&); 103 void setVertical(const String&, ExceptionState&); 109 virtual void setLine(int, ExceptionState&); 112 virtual void setPosition(int, ExceptionState&); 115 virtual void setSize(int, ExceptionState&); 118 void setAlign(const String&, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/page/ |
| History.h | 42 class ExceptionState; 61 void stateObjectAdded(PassRefPtr<SerializedScriptValue>, const String& title, const String& url, SameDocumentNavigationSource, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/svg/ |
| SVGLength.h | 24 #include "bindings/v8/ExceptionState.h" 33 class ExceptionState; 72 float value(const SVGLengthContext&, ExceptionState&) const; 73 void setValue(float, const SVGLengthContext&, ExceptionState&); 74 void setValue(const SVGLengthContext&, float, SVGLengthMode, SVGLengthType, ExceptionState&); 82 void setValueAsString(const String&, ExceptionState&); 83 void setValueAsString(const String&, SVGLengthMode, ExceptionState&); 85 void newValueSpecifiedUnits(unsigned short, float valueInSpecifiedUnits, ExceptionState&); 86 void convertToSpecifiedUnits(unsigned short, const SVGLengthContext&, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/workers/ |
| AbstractWorker.h | 46 class ExceptionState; 66 KURL resolveURL(const String& url, ExceptionState&);
|
| /external/chromium_org/third_party/WebKit/Source/core/xml/ |
| XPathEvaluator.cpp | 30 #include "bindings/v8/ExceptionState.h" 42 PassRefPtr<XPathExpression> XPathEvaluator::createExpression(const String& expression, XPathNSResolver* resolver, ExceptionState& es) 53 XPathNSResolver* resolver, unsigned short type, XPathResult* result, ExceptionState& es)
|