Searched refs:ScriptState (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DConsoleBase.h33 #include "bindings/core/v8/ScriptState.h"
52 void debug(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
53 void error(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
54 void info(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
55 void log(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
56 void clear(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
57 void warn(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
58 void dir(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
59 void dirxml(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
60 void table(ScriptState*, PassRefPtrWillBeRawPt
[all...]
H A DConsoleBase.idl34 [CallWith=(ScriptArguments,ScriptState)] void debug();
35 [CallWith=(ScriptArguments,ScriptState)] void error();
36 [CallWith=(ScriptArguments,ScriptState)] void info();
37 [CallWith=(ScriptArguments,ScriptState)] void log();
38 [CallWith=(ScriptArguments,ScriptState)] void warn();
39 [CallWith=(ScriptArguments,ScriptState)] void dir();
40 [CallWith=(ScriptArguments,ScriptState)] void dirxml();
41 [CallWith=(ScriptArguments,ScriptState)] void table();
42 [CallWith=(ScriptArguments,ScriptState)] void trace();
43 [CallWith=(ScriptArguments,ScriptState), ImplementedA
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCache.h24 class ScriptState;
33 ScriptPromise match(ScriptState*, Request*, const QueryParams&);
34 ScriptPromise match(ScriptState*, const String&, const QueryParams&);
35 ScriptPromise matchAll(ScriptState*, Request*, const QueryParams&);
36 ScriptPromise matchAll(ScriptState*, const String&, const QueryParams&);
37 ScriptPromise add(ScriptState*, Request*);
38 ScriptPromise add(ScriptState*, const String&);
39 ScriptPromise addAll(ScriptState*, const Vector<ScriptValue>&);
40 ScriptPromise deleteFunction(ScriptState*, Request*, const QueryParams&);
41 ScriptPromise deleteFunction(ScriptState*, cons
[all...]
H A DServiceWorkerContainer.idl37 [CallWith=ScriptState] readonly attribute Promise ready;
39 [CallWith=ScriptState, ImplementedAs=registerServiceWorker] Promise register(ScalarValueString url, optional RegistrationOptionList options);
40 [CallWith=ScriptState] Promise getRegistration(optional ScalarValueString documentURL = "");
H A DExtendableEvent.idl36 [CallWith=ScriptState] void waitUntil(any value);
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBCursorWithValue.idl28 [CallWith=ScriptState, CachedAttribute=isValueDirty] readonly attribute any value;
H A DIDBFactory.idl29 [CallWith=ScriptState, ImplementedAs=getDatabaseNames, RaisesException] IDBRequest webkitGetDatabaseNames();
31 [CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
32 [CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
34 [CallWith=ScriptState, RaisesException] short cmp(any first, any second);
H A DIDBCursor.idl40 [CallWith=ScriptState, CachedAttribute=isKeyDirty] readonly attribute any key;
41 [CallWith=ScriptState, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey;
42 [CallWith=ScriptState] readonly attribute any source;
44 [CallWith=ScriptState, RaisesException] IDBRequest update(any value);
46 [CallWith=ScriptState, ImplementedAs=continueFunction, RaisesException] void continue([Default=Undefined] optional any key);
47 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] void continuePrimaryKey(any key, any primaryKey);
48 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete();
H A DIDBFactory.h53 IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
55 IDBOpenDBRequest* open(ScriptState*, const String& name, ExceptionState&);
56 IDBOpenDBRequest* open(ScriptState*, const String& name, unsigned long long version, ExceptionState&);
57 IDBOpenDBRequest* deleteDatabase(ScriptState*, const String& name, ExceptionState&);
59 short cmp(ScriptState*, const ScriptValue& first, const ScriptValue& second, ExceptionState&);
64 IDBOpenDBRequest* openInternal(ScriptState*, const String& name, int64_t version, ExceptionState&);
H A DIDBIndex.idl41 [CallWith=ScriptState] readonly attribute any keyPath;
45 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
46 [CallWith=ScriptState, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
49 [CallWith=ScriptState, RaisesException] IDBRequest getKey(any key);
50 [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
H A DIDBObjectStore.idl40 [CallWith=ScriptState] readonly attribute any keyPath;
45 [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=Undefined] optional any key);
46 [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=Undefined] optional any key);
47 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key);
48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
49 [CallWith=ScriptState, RaisesException] IDBRequest clear();
50 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = "next");
51 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
53 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional IDBIndexParameters options);
54 [CallWith=ScriptState, RaisesExceptio
[all...]
H A DIDBIndex.h59 ScriptValue keyPath(ScriptState*) const;
63 IDBRequest* openCursor(ScriptState*, const ScriptValue& key, const String& direction, ExceptionState&);
64 IDBRequest* openKeyCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&);
65 IDBRequest* count(ScriptState*, const ScriptValue& range, ExceptionState&);
66 IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&);
67 IDBRequest* getKey(ScriptState*, const ScriptValue& key, ExceptionState&);
73 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection);
80 IDBRequest* getInternal(ScriptState*, const ScriptValue& key, ExceptionState&, bool keyOnly);
/external/chromium_org/third_party/WebKit/Source/core/imagebitmap/
H A DWindowImageBitmapFactories.idl36 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLImageElement image);
37 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLImageElement image, long sx, long sy, long sw, long sh);
38 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLVideoElement video);
39 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLVideoElement video, long sx, long sy, long sw, long sh);
40 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(CanvasRenderingContext2D context);
41 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(CanvasRenderingContext2D context, long sx, long sy, long sw, long sh);
42 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLCanvasElement canvas);
43 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLCanvasElement canvas, long sx, long sy, long sw, long sh);
H A DImageBitmapFactories.idl51 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(Blob blob);
52 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(Blob blob, long sx, long sy, long sw, long sh);
53 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageData data);
54 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageData data, long sx, long sy, long sw, long sh);
55 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageBitmap bitmap);
56 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageBitmap bitmap, long sx, long sy, long sw, long sh);
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DMediaKeySession.idl38 [CallWith=ScriptState] readonly attribute Promise closed;
41 [CallWith=ScriptState] Promise generateRequest(DOMString initDataType, ArrayBuffer initData);
42 [CallWith=ScriptState] Promise generateRequest(DOMString initDataType, ArrayBufferView initData);
45 [CallWith=ScriptState] Promise update(ArrayBuffer response);
46 [CallWith=ScriptState] Promise update(ArrayBufferView response);
47 [CallWith=ScriptState] Promise release();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptState.cpp6 #include "bindings/core/v8/ScriptState.h"
14 PassRefPtr<ScriptState> ScriptState::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
16 RefPtr<ScriptState> scriptState = adoptRef(new ScriptState(context, world));
17 // This ref() is for keeping this ScriptState alive as long as the v8::Context is alive.
23 static void weakCallback(const v8::WeakCallbackData<v8::Context, ScriptState>& data)
30 ScriptState::ScriptState(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world) function in class:blink::ScriptState
42 ScriptState
[all...]
H A DPrivateScriptRunner.h15 class ScriptState;
20 static v8::Handle<v8::Value> runDOMAttributeGetter(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder);
21 static bool runDOMAttributeSetter(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder, v8::Handle<v8::Value> v8Value);
22 static v8::Handle<v8::Value> runDOMMethod(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* methodName, v8::Handle<v8::Value> holder, int argc, v8::Handle<v8::Value> argv[]);
/external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
H A DCredentialsContainer.h16 class ScriptState;
24 ScriptPromise request(ScriptState*, const Dictionary&);
25 ScriptPromise notifySignedIn(ScriptState*, Credential* = 0);
26 ScriptPromise notifyFailedSignIn(ScriptState*, Credential* = 0);
27 ScriptPromise notifySignedOut(ScriptState*);
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.h53 ScriptPromise encrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
54 ScriptPromise decrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
55 ScriptPromise sign(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
57 ScriptPromise verifySignature(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece& signature, const ArrayPiece& data);
58 ScriptPromise digest(ScriptState*, const Dictionary&, const ArrayPiece& data);
60 ScriptPromise generateKey(ScriptState*, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
61 ScriptPromise importKey(ScriptState*, const String&, const ArrayPiece&, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
62 ScriptPromise importKey(ScriptState*, const String&, const Dictionary&, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
63 ScriptPromise exportKey(ScriptState*, const String&, CryptoKey*);
65 ScriptPromise wrapKey(ScriptState*, cons
[all...]
H A DSubtleCrypto.idl43 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, CryptoKey key, ArrayBuffer data);
44 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, CryptoKey key, ArrayBufferView data);
46 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBuffer data);
47 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBufferView data);
49 [CallWith=ScriptState] Promise sign(Dictionary algorithm, CryptoKey key, ArrayBuffer data);
50 [CallWith=ScriptState] Promise sign(Dictionary algorithm, CryptoKey key, ArrayBufferView data);
53 [CallWith=ScriptState, Custom, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, CryptoKey key, object signature, object data);
55 [CallWith=ScriptState] Promise digest(Dictionary algorithm, ArrayBuffer data);
56 [CallWith=ScriptState] Promise digest(Dictionary algorithm, ArrayBufferView data);
58 [CallWith=ScriptState] Promis
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/v8/
H A DWebCoreTestSupport.cpp42 ScriptState* scriptState = ScriptState::from(context);
43 ScriptState::Scope scope(scriptState);
56 ScriptState* scriptState = ScriptState::from(context);
57 ScriptState::Scope scope(scriptState);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DIterator.h22 virtual ScriptValue next(ScriptState*, ExceptionState&) = 0;
23 virtual ScriptValue next(ScriptState*, ScriptValue /* value */, ExceptionState&) = 0;
24 Iterator* iterator(ScriptState*, ExceptionState&) { return this; }
/external/chromium_org/third_party/WebKit/Source/modules/geofencing/
H A DGeofencing.h17 class ScriptState;
27 ScriptPromise registerRegion(ScriptState*, GeofencingRegion*);
28 ScriptPromise unregisterRegion(ScriptState*, const String& regionId);
29 ScriptPromise getRegisteredRegions(ScriptState*) const;
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DStorageQuota.idl42 [CallWith=ScriptState] Promise queryInfo(StorageType type);
43 [CallWith=ScriptState] Promise requestPersistentQuota([Clamp] unsigned long long newQuota);
/external/chromium_org/third_party/WebKit/Source/core/streams/
H A DUnderlyingSource.h15 class ScriptState;
22 virtual ScriptPromise cancelSource(ScriptState*, ScriptValue reason) = 0;

Completed in 1426 milliseconds

1234567891011>>