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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAltGlyphElement.cpp 30 #include "bindings/v8/ExceptionState.h"
59 void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionState& es)
69 void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionState& es)
SVGLengthContext.cpp 27 #include "bindings/v8/ExceptionState.h"
90 float SVGLengthContext::convertValueToUserUnits(float value, SVGLengthMode mode, SVGLengthType fromUnit, ExceptionState& es) const
130 float SVGLengthContext::convertValueFromUserUnits(float value, SVGLengthMode mode, SVGLengthType toUnit, ExceptionState& es) const
162 float SVGLengthContext::convertValueFromUserUnitsToPercentage(float value, SVGLengthMode mode, ExceptionState& es) const
184 float SVGLengthContext::convertValueFromPercentageToUserUnits(float value, SVGLengthMode mode, ExceptionState& es) const
223 float SVGLengthContext::convertValueFromUserUnitsToEMS(float value, ExceptionState& es) const
240 float SVGLengthContext::convertValueFromEMSToUserUnits(float value, ExceptionState& es) const
251 float SVGLengthContext::convertValueFromUserUnitsToEXS(float value, ExceptionState& es) const
270 float SVGLengthContext::convertValueFromEXSToUserUnits(float value, ExceptionState& es) const
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedStaticPropertyTearOff.h 27 class ExceptionState;
46 virtual void setBaseVal(const PropertyType& property, ExceptionState&)
SVGTransformListPropertyTearOff.h 23 #include "bindings/v8/ExceptionState.h"
42 PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionState& es)
52 PassRefPtr<SVGPropertyTearOff<SVGTransform> > consolidate(ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/core/workers/
DedicatedWorkerGlobalScope.cpp 34 #include "bindings/v8/ExceptionState.h"
65 void DedicatedWorkerGlobalScope::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& es)
74 void DedicatedWorkerGlobalScope::importScripts(const Vector<String>& urls, ExceptionState& es)
DefaultSharedWorkerRepository.h 47 class ExceptionState;
62 void connectToWorker(PassRefPtr<SharedWorker>, PassOwnPtr<MessagePortChannel>, const KURL&, const String& name, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
DocumentXPathEvaluator.cpp 29 #include "bindings/v8/ExceptionState.h"
57 const String& expression, XPathNSResolver* resolver, ExceptionState& es)
75 XPathResult* result, ExceptionState& es)
XPathExpression.cpp 30 #include "bindings/v8/ExceptionState.h"
43 PassRefPtr<XPathExpression> XPathExpression::createExpression(const String& expression, XPathNSResolver* resolver, ExceptionState& es)
60 PassRefPtr<XPathResult> XPathExpression::evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
CryptoOperation.h 46 class ExceptionState;
74 bool throwInitializationError(ExceptionState&);
SubtleCrypto.cpp 34 #include "bindings/v8/ExceptionState.h"
104 PassRefPtr<CryptoOperation> createCryptoOperation(const Dictionary& rawAlgorithm, Key* key, AlgorithmOperation operationType, ArrayBufferView* signature, ExceptionState& es)
171 PassRefPtr<CryptoOperation> SubtleCrypto::encrypt(const Dictionary& rawAlgorithm, Key* key, ExceptionState& es)
176 PassRefPtr<CryptoOperation> SubtleCrypto::decrypt(const Dictionary& rawAlgorithm, Key* key, ExceptionState& es)
181 PassRefPtr<CryptoOperation> SubtleCrypto::sign(const Dictionary& rawAlgorithm, Key* key, ExceptionState& es)
186 PassRefPtr<CryptoOperation> SubtleCrypto::verifySignature(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* signature, ExceptionState& es)
191 PassRefPtr<CryptoOperation> SubtleCrypto::digest(const Dictionary& rawAlgorithm, ExceptionState& es)
196 ScriptObject SubtleCrypto::generateKey(const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages, ExceptionState& es)
220 ScriptObject SubtleCrypto::importKey(const String& rawFormat, ArrayBufferView* keyData, const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.cpp 35 #include "bindings/v8/ExceptionState.h"
41 PassRefPtr<TextDecoder> TextDecoder::create(const String& label, const Dictionary& options, ExceptionState& es)
74 String TextDecoder::decode(ArrayBufferView* input, const Dictionary& options, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.cpp 29 #include "bindings/v8/ExceptionState.h"
40 PassRefPtr<MediaKeys> MediaKeys::create(const String& keySystem, ExceptionState& es)
87 PassRefPtr<MediaKeySession> MediaKeys::createSession(ScriptExecutionContext* context, const String& type, Uint8Array* initData, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamTrack.h 42 class ExceptionState;
62 static void getSources(ScriptExecutionContext*, PassRefPtr<MediaStreamTrackSourcesCallback>, ExceptionState&);
UserMediaRequest.h 46 class ExceptionState;
54 static PassRefPtr<UserMediaRequest> create(ScriptExecutionContext*, UserMediaController*, const Dictionary& options, PassRefPtr<NavigatorUserMediaSuccessCallback>, PassRefPtr<NavigatorUserMediaErrorCallback>, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBasicInspectorNode.cpp 54 void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& es)
64 void AudioBasicInspectorNode::disconnect(unsigned outputIndex, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransaction.h 44 class ExceptionState;
62 PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, ExceptionState&);
WorkerGlobalScopeWebDatabase.cpp 33 #include "bindings/v8/ExceptionState.h"
44 PassRefPtr<Database> WorkerGlobalScopeWebDatabase::openDatabase(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState& es)
61 PassRefPtr<DatabaseSync> WorkerGlobalScopeWebDatabase::openDatabaseSync(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSMatrix.h 36 class ExceptionState;
44 static PassRefPtr<CSSMatrix> create(const String& s, ExceptionState& es)
99 void setMatrixValue(const String&, ExceptionState&);
108 PassRefPtr<CSSMatrix> inverse(ExceptionState&) const;
154 CSSMatrix(const String&, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.cpp 30 #include "bindings/v8/ExceptionState.h"
65 PassRefPtr<IDBKeyRange> IDBKeyRange::only(PassRefPtr<IDBKey> prpKey, ExceptionState& es)
76 PassRefPtr<IDBKeyRange> IDBKeyRange::only(ScriptExecutionContext* context, const ScriptValue& keyValue, ExceptionState& es)
88 PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(ScriptExecutionContext* context, const ScriptValue& boundValue, bool open, ExceptionState& es)
100 PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(ScriptExecutionContext* context, const ScriptValue& boundValue, bool open, ExceptionState& es)
112 PassRefPtr<IDBKeyRange> IDBKeyRange::bound(ScriptExecutionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& es)
IDBRequest.h 47 class ExceptionState;
56 PassRefPtr<IDBAny> result(ExceptionState&) const;
57 PassRefPtr<DOMError> error(ExceptionState&) const;
  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
NavigatorContentUtils.cpp 32 #include "bindings/v8/ExceptionState.h"
72 static bool verifyCustomHandlerURL(const String& baseURL, const String& url, ExceptionState& es)
106 static bool verifyProtocolHandlerScheme(const String& scheme, ExceptionState& es)
135 void NavigatorContentUtils::registerProtocolHandler(Navigator* navigator, const String& scheme, const String& url, const String& title, ExceptionState& es)
175 String NavigatorContentUtils::isProtocolHandlerRegistered(Navigator* navigator, const String& scheme, const String& url, ExceptionState& es)
194 void NavigatorContentUtils::unregisterProtocolHandler(Navigator* navigator, const String& scheme, const String& url, ExceptionState& es)
  /external/chromium_org/third_party/WebKit/Source/web/
StorageAreaProxy.cpp 31 #include "bindings/v8/ExceptionState.h"
65 unsigned StorageAreaProxy::length(ExceptionState& es, Frame* frame)
74 String StorageAreaProxy::key(unsigned index, ExceptionState& es, Frame* frame)
83 String StorageAreaProxy::getItem(const String& key, ExceptionState& es, Frame* frame)
92 void StorageAreaProxy::setItem(const String& key, const String& value, ExceptionState& es, Frame* frame)
104 void StorageAreaProxy::removeItem(const String& key, ExceptionState& es, Frame* frame)
113 void StorageAreaProxy::clear(ExceptionState& es, Frame* frame)
122 bool StorageAreaProxy::contains(const String& key, ExceptionState& es, Frame* frame)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.h 49 class ExceptionState;
125 void setCurrentTime(double, ExceptionState&);
161 void webkitGenerateKeyRequest(const String& keySystem, PassRefPtr<Uint8Array> initData, ExceptionState&);
162 void webkitGenerateKeyRequest(const String& keySystem, ExceptionState&);
163 void webkitAddKey(const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState&);
164 void webkitAddKey(const String& keySystem, PassRefPtr<Uint8Array> key, ExceptionState&);
165 void webkitCancelKeyRequest(const String& keySystem, const String& sessionId, ExceptionState&);
181 void setVolume(double, ExceptionState&);
193 PassRefPtr<TextTrack> addTextTrack(const String& kind, const String& label, const String& language, ExceptionState&);
194 PassRefPtr<TextTrack> addTextTrack(const String& kind, const String& label, ExceptionState& es) { return addTextTrack(kind, label, emptyString(), es);
    [all...]
HTMLTextFormControlElement.h 32 class ExceptionState;
69 virtual void setRangeText(const String& replacement, ExceptionState&);
70 virtual void setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.h 36 class ExceptionState;
102 void removeCue(TextTrackCue*, ExceptionState&);
108 void removeRegion(TextTrackRegion*, ExceptionState&);

Completed in 1676 milliseconds

1 2 3 4 5 6 7 891011>>